Package dk.gtz.graphedit.viewmodel
Class LintContainer
java.lang.Object
dk.gtz.graphedit.viewmodel.LintContainer
A container that holds
ViewModelLint
instances.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAdd a new lint to the collection.add
(String bufferKey, ViewModelLint lint) Add a new lint to the collection.javafx.beans.property.ListProperty<ViewModelLint>
Lookup a buffer key in the map.javafx.beans.property.MapProperty<String,
javafx.beans.property.ListProperty<ViewModelLint>> Get the internal map property of lints.replaceAll
(Collection<ModelLint> lints) Replace the collection with a new collection of lints.
-
Constructor Details
-
LintContainer
public LintContainer()Construct a new lint container.
-
-
Method Details
-
getProperty
public javafx.beans.property.MapProperty<String,javafx.beans.property.ListProperty<ViewModelLint>> getProperty()Get the internal map property of lints.- Returns:
- A subscibable map property with the lints within.
-
get
Lookup a buffer key in the map. Will create a new entry if it does not exist yet.- Parameters:
bufferKey
- The buffer key to look up.- Returns:
- A list property of lints, will create a new empty list property and return it if it does not exist.
-
add
Add a new lint to the collection.- Parameters:
bufferKey
- The key of the related buffer.lint
- The lint to add.- Returns:
- Builder-pattern style this.
-
add
Add a new lint to the collection.- Parameters:
lint
- The lint to add.- Returns:
- Builder-pattern style this.
-
replaceAll
Replace the collection with a new collection of lints.- Parameters:
lints
- The lints to replace with.- Returns:
- Builder-pattern style this.
-