modules/controls/src/main/java/com/sun/javafx/scene/control/behavior/ListCellBehavior.java

Print this page
rev 9240 : 8076423: JEP 253: Prepare JavaFX UI Controls & CSS APIs for Modularization

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -28,22 +28,20 @@
 import javafx.scene.control.FocusModel;
 import javafx.scene.control.ListCell;
 import javafx.scene.control.ListView;
 import javafx.scene.control.MultipleSelectionModel;
 
-import java.util.Collections;
-
 public class ListCellBehavior<T> extends CellBehaviorBase<ListCell<T>> {
 
     /***************************************************************************
      *                                                                         *
      * Constructors                                                            *
      *                                                                         *
      **************************************************************************/
 
     public ListCellBehavior(ListCell<T> control) {
-        super(control, Collections.emptyList());
+        super(control);
     }
 
 
 
     /***************************************************************************

@@ -59,11 +57,11 @@
     @Override protected FocusModel<T> getFocusModel() {
         return getCellContainer().getFocusModel();
     }
 
     @Override protected ListView<T> getCellContainer() {
-        return getControl().getListView();
+        return getNode().getListView();
     }
 
     @Override protected void edit(ListCell<T> cell) {
         int index = cell == null ? -1 : cell.getIndex();
         getCellContainer().edit(index);