Package dk.gtz.graphedit.viewmodel
Class SyntaxFactoryCollection
java.lang.Object
dk.gtz.graphedit.viewmodel.SyntaxFactoryCollection
- All Implemented Interfaces:
Map<String,
,ISyntaxFactory> javafx.beans.Observable
,javafx.collections.ObservableMap<String,
ISyntaxFactory>
public final class SyntaxFactoryCollection
extends Object
implements javafx.collections.ObservableMap<String,ISyntaxFactory>
Collection type of syntax factories.
-
Nested Class Summary
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
add
(ISyntaxFactory factory) Add a new syntax factory to the collectionvoid
add
(ISyntaxFactory... factories) Add a list of syntax factories to the collectionvoid
add
(Collection<ISyntaxFactory> factories) Add a collection of syntax factories to the collectionvoid
addChangeListener
(javafx.collections.MapChangeListener<? super String, ? super ISyntaxFactory> listener) Add a change listener to the collection.void
addListener
(javafx.beans.InvalidationListener listener) void
addListener
(javafx.collections.MapChangeListener<? super String, ? super ISyntaxFactory> listener) void
clear()
boolean
containsKey
(Object key) boolean
containsValue
(Object value) entrySet()
boolean
isEmpty()
keySet()
put
(String key, ISyntaxFactory value) void
putAll
(Map<? extends String, ? extends ISyntaxFactory> m) void
removeChangeListener
(javafx.collections.MapChangeListener<? super String, ? super ISyntaxFactory> listener) Remove a change listener from the collection.void
removeListener
(javafx.beans.InvalidationListener listener) void
removeListener
(javafx.collections.MapChangeListener<? super String, ? super ISyntaxFactory> listener) int
size()
values()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Constructor Details
-
SyntaxFactoryCollection
public SyntaxFactoryCollection()Construct a new instance with oneDemoSyntaxFactory
element
-
-
Method Details
-
add
Add a new syntax factory to the collection- Parameters:
factory
- The factory instance to add
-
add
Add a collection of syntax factories to the collection- Parameters:
factories
- A collection of factires to add
-
add
Add a list of syntax factories to the collection- Parameters:
factories
- Varargs list of factories to add
-
size
public int size()- Specified by:
size
in interfaceMap<String,
ISyntaxFactory>
-
isEmpty
public boolean isEmpty()- Specified by:
isEmpty
in interfaceMap<String,
ISyntaxFactory>
-
containsKey
- Specified by:
containsKey
in interfaceMap<String,
ISyntaxFactory>
-
containsValue
- Specified by:
containsValue
in interfaceMap<String,
ISyntaxFactory>
-
get
- Specified by:
get
in interfaceMap<String,
ISyntaxFactory>
-
put
- Specified by:
put
in interfaceMap<String,
ISyntaxFactory>
-
remove
- Specified by:
remove
in interfaceMap<String,
ISyntaxFactory>
-
putAll
- Specified by:
putAll
in interfaceMap<String,
ISyntaxFactory>
-
clear
public void clear()- Specified by:
clear
in interfaceMap<String,
ISyntaxFactory>
-
keySet
- Specified by:
keySet
in interfaceMap<String,
ISyntaxFactory>
-
values
- Specified by:
values
in interfaceMap<String,
ISyntaxFactory>
-
entrySet
- Specified by:
entrySet
in interfaceMap<String,
ISyntaxFactory>
-
addListener
public void addListener(javafx.beans.InvalidationListener listener) - Specified by:
addListener
in interfacejavafx.beans.Observable
-
removeListener
public void removeListener(javafx.beans.InvalidationListener listener) - Specified by:
removeListener
in interfacejavafx.beans.Observable
-
addListener
public void addListener(javafx.collections.MapChangeListener<? super String, ? super ISyntaxFactory> listener) - Specified by:
addListener
in interfacejavafx.collections.ObservableMap<String,
ISyntaxFactory>
-
removeListener
public void removeListener(javafx.collections.MapChangeListener<? super String, ? super ISyntaxFactory> listener) - Specified by:
removeListener
in interfacejavafx.collections.ObservableMap<String,
ISyntaxFactory>
-
addChangeListener
public void addChangeListener(javafx.collections.MapChangeListener<? super String, ? super ISyntaxFactory> listener) Add a change listener to the collection. This will be invoked when the collection changes.- Parameters:
listener
- The listener to add
-
removeChangeListener
public void removeChangeListener(javafx.collections.MapChangeListener<? super String, ? super ISyntaxFactory> listener) Remove a change listener from the collection.- Parameters:
listener
- The listener to remove
-