< prev index next >

modules/javafx.base/src/main/java/javafx/collections/transformation/TransformationList.java

Print this page
rev 10443 : 8177341: Fix typos in FX API docs
Reviewed-by:

*** 1,7 **** /* ! * Copyright (c) 2010, 2016, 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, 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
*** 30,41 **** import javafx.collections.ObservableList; import javafx.collections.ObservableListBase; import javafx.collections.WeakListChangeListener; /** ! * A base class for all lists that wraps other lists in a way that changes the list's ! * elements, order, size or generally it's structure. * * If the source list is observable, a listener is automatically added to it * and the events are delegated to {@link #sourceChanged(javafx.collections.ListChangeListener.Change)} * * @param <E> the type parameter of this list --- 30,41 ---- import javafx.collections.ObservableList; import javafx.collections.ObservableListBase; import javafx.collections.WeakListChangeListener; /** ! * A base class for all lists that wrap another list in a way that changes ! * (transforms) the wrapped list's elements, order, size, or structure. * * If the source list is observable, a listener is automatically added to it * and the events are delegated to {@link #sourceChanged(javafx.collections.ListChangeListener.Change)} * * @param <E> the type parameter of this list
< prev index next >