< prev index next >

modules/javafx.controls/src/main/java/javafx/scene/control/TableView.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2011, 2017, 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) 2011, 2018, 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
*** 34,43 **** --- 34,44 ---- import java.util.LinkedHashSet; import java.util.List; import java.util.Set; import java.util.WeakHashMap; + import com.sun.javafx.logging.PlatformLogger.Level; import com.sun.javafx.scene.control.Logging; import com.sun.javafx.scene.control.Properties; import com.sun.javafx.scene.control.SelectedCellsMap; import com.sun.javafx.scene.control.SelectedItemsReadOnlyObservableList; import com.sun.javafx.scene.control.behavior.TableCellBehavior;
*** 454,464 **** isEqualTo(table.comparatorProperty()).get(); if (! comparatorsBound) { // this isn't a good situation to be in, so lets log it // out in case the developer is unaware ! if (Logging.getControlsLogger().isEnabled()) { String s = "TableView items list is a SortedList, but the SortedList " + "comparator should be bound to the TableView comparator for " + "sorting to be enabled (e.g. " + "sortedList.comparatorProperty().bind(tableView.comparatorProperty());)."; Logging.getControlsLogger().info(s); --- 455,465 ---- isEqualTo(table.comparatorProperty()).get(); if (! comparatorsBound) { // this isn't a good situation to be in, so lets log it // out in case the developer is unaware ! if (Logging.getControlsLogger().isLoggable(Level.INFO)) { String s = "TableView items list is a SortedList, but the SortedList " + "comparator should be bound to the TableView comparator for " + "sorting to be enabled (e.g. " + "sortedList.comparatorProperty().bind(tableView.comparatorProperty());)."; Logging.getControlsLogger().info(s);
< prev index next >