Uses of Interface
ca.odell.glazedlists.ObservableElementList.Connector
-
Packages that use ObservableElementList.Connector Package Description ca.odell.glazedlists -
-
Uses of ObservableElementList.Connector in ca.odell.glazedlists
Methods in ca.odell.glazedlists that return ObservableElementList.Connector Modifier and Type Method Description static <E> ObservableElementList.Connector<E>GlazedLists. beanConnector(java.lang.Class<E> beanClass)Create a new Connector for theObservableElementListthat works with JavaBeans'PropertyChangeListener.static <E> ObservableElementList.Connector<E>GlazedLists. beanConnector(java.lang.Class<E> beanClass, boolean matchPropertyNames, java.lang.String... propertyNames)Create a new Connector for theObservableElementListthat works with JavaBeans'PropertyChangeListener.static <E> ObservableElementList.Connector<E>GlazedLists. beanConnector(java.lang.Class<E> beanClass, Matcher<java.beans.PropertyChangeEvent> eventMatcher)Create a new Connector for theObservableElementListthat works with JavaBeans'PropertyChangeListener.static <E> ObservableElementList.Connector<E>GlazedLists. beanConnector(java.lang.Class<E> beanClass, java.lang.String addListener, java.lang.String removeListener)Create a new Connector for theObservableElementListthat works with JavaBeans'PropertyChangeListener.static <E> ObservableElementList.Connector<E>GlazedLists. beanConnector(java.lang.Class<E> beanClass, java.lang.String addListener, java.lang.String removeListener, Matcher<java.beans.PropertyChangeEvent> eventMatcher)Create a new Connector for theObservableElementListthat works with JavaBeans'PropertyChangeListener.static <E extends java.util.Observable>
ObservableElementList.Connector<E>GlazedLists. observableConnector()Create a new Connector for theObservableElementListthat works with subclasses of the archaicObservablebase class.Constructors in ca.odell.glazedlists with parameters of type ObservableElementList.Connector Constructor Description ObservableElementList(EventList<E> source, ObservableElementList.Connector<? super E> elementConnector)Constructs anObservableElementListwhich wraps the givensourceand uses the givenelementConnectorto register/unregister change listeners on elements of thesource.
-