Class LintContainer

java.lang.Object
dk.gtz.graphedit.viewmodel.LintContainer

public class LintContainer extends Object
A container that holds ViewModelLint instances.
  • 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

      public javafx.beans.property.ListProperty<ViewModelLint> get(String bufferKey)
      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

      public LintContainer add(String bufferKey, ViewModelLint lint)
      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

      public LintContainer add(ModelLint lint)
      Add a new lint to the collection.
      Parameters:
      lint - The lint to add.
      Returns:
      Builder-pattern style this.
    • replaceAll

      public LintContainer replaceAll(Collection<ModelLint> lints)
      Replace the collection with a new collection of lints.
      Parameters:
      lints - The lints to replace with.
      Returns:
      Builder-pattern style this.