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 **** /* ! * Copyright (c) 2010, 2014, 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 --- 1,7 ---- /* ! * 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,49 **** 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()); } /*************************************************************************** --- 28,47 ---- import javafx.scene.control.FocusModel; import javafx.scene.control.ListCell; import javafx.scene.control.ListView; import javafx.scene.control.MultipleSelectionModel; public class ListCellBehavior<T> extends CellBehaviorBase<ListCell<T>> { /*************************************************************************** * * * Constructors * * * **************************************************************************/ public ListCellBehavior(ListCell<T> control) { ! super(control); } /***************************************************************************
*** 59,69 **** @Override protected FocusModel<T> getFocusModel() { return getCellContainer().getFocusModel(); } @Override protected ListView<T> getCellContainer() { ! return getControl().getListView(); } @Override protected void edit(ListCell<T> cell) { int index = cell == null ? -1 : cell.getIndex(); getCellContainer().edit(index); --- 57,67 ---- @Override protected FocusModel<T> getFocusModel() { return getCellContainer().getFocusModel(); } @Override protected ListView<T> getCellContainer() { ! return getNode().getListView(); } @Override protected void edit(ListCell<T> cell) { int index = cell == null ? -1 : cell.getIndex(); getCellContainer().edit(index);