Class ViewModelProjectResource

java.lang.Object
dk.gtz.graphedit.viewmodel.ViewModelProjectResource
All Implemented Interfaces:
IFocusable, javafx.beans.Observable, javafx.beans.property.Property<ViewModelProjectResource>, javafx.beans.property.ReadOnlyProperty<ViewModelProjectResource>, javafx.beans.value.ObservableValue<ViewModelProjectResource>, javafx.beans.value.WritableValue<ViewModelProjectResource>

public class ViewModelProjectResource extends Object implements IFocusable, javafx.beans.property.Property<ViewModelProjectResource>
View model representation of ModelProjectResource. Full file-on-disk model. Will include everything a graphedit project file needs
  • Constructor Details

    • ViewModelProjectResource

      public ViewModelProjectResource(ModelProjectResource projectResource, ISyntaxFactory syntaxFactory)
      Constructs a new view model project resource based on the provided model project resource
      Parameters:
      projectResource - The model project resource to base on
      syntaxFactory - The associated syntax factory
    • ViewModelProjectResource

      public ViewModelProjectResource(javafx.beans.property.MapProperty<String,String> metadata, ViewModelGraph syntax)
      Constructs a new view model project resource based on provided metadata and view model graph
      Parameters:
      metadata - A map of metadata, useful for storing properties that aren't necessarily part of the specification
      syntax - The graph containing the model
  • Method Details

    • getUndoSystem

      public IObservableUndoSystem getUndoSystem()
      Get the associated undo system
      Returns:
      An undo system
    • toModel

      public ModelProjectResource toModel()
      Constructs a new model project resource instance based on the current view model values
      Returns:
      a new model project resource instance
    • addFocusListener

      public void addFocusListener(Runnable focusEventHandler)
      Description copied from interface: IFocusable
      Add an event listener for when the focus is stolen
      Specified by:
      addFocusListener in interface IFocusable
      Parameters:
      focusEventHandler - the handler to call
    • focus

      public void focus()
      Description copied from interface: IFocusable
      Steal the focus
      Specified by:
      focus in interface IFocusable
    • metadata

      public javafx.beans.property.MapProperty<String,String> metadata()
      Get the metadata map property
      Returns:
      a mapping of strings to strings
    • getSyntaxName

      public Optional<String> getSyntaxName()
      Get the syntax name metadata field if it exists.
      Returns:
      optionally a string with the name of the syntax. empty if is not present in the metadata field
    • syntax

      public ViewModelGraph syntax()
      Get the syntax graph
      Returns:
      a view model graph
    • addView

      public void addView(IProjectResourceView viewer)
      Add a new view that displays this project resource.
      Parameters:
      viewer - the tab that is currently viewing this project resource
    • removeView

      public void removeView(IProjectResourceView viewer)
      Remove a view that displays this project resource. If the provided view is not present, the list remains unchanged.
      Parameters:
      viewer - the tab that is currently viewing this project resource
    • getViews

      public List<IProjectResourceView> getViews()
      Get the full list of views that are viewing this project resource
      Returns:
      a list of tabs.
    • getBean

      public Object getBean()
      Specified by:
      getBean in interface javafx.beans.property.ReadOnlyProperty<ViewModelProjectResource>
    • getName

      public String getName()
      Specified by:
      getName in interface javafx.beans.property.ReadOnlyProperty<ViewModelProjectResource>
    • addListener

      public void addListener(javafx.beans.value.ChangeListener<? super ViewModelProjectResource> listener)
      Specified by:
      addListener in interface javafx.beans.value.ObservableValue<ViewModelProjectResource>
    • removeListener

      public void removeListener(javafx.beans.value.ChangeListener<? super ViewModelProjectResource> listener)
      Specified by:
      removeListener in interface javafx.beans.value.ObservableValue<ViewModelProjectResource>
    • getValue

      public ViewModelProjectResource getValue()
      Specified by:
      getValue in interface javafx.beans.value.ObservableValue<ViewModelProjectResource>
      Specified by:
      getValue in interface javafx.beans.value.WritableValue<ViewModelProjectResource>
    • addListener

      public void addListener(javafx.beans.InvalidationListener listener)
      Specified by:
      addListener in interface javafx.beans.Observable
    • removeListener

      public void removeListener(javafx.beans.InvalidationListener listener)
      Specified by:
      removeListener in interface javafx.beans.Observable
    • setValue

      public void setValue(ViewModelProjectResource value)
      Specified by:
      setValue in interface javafx.beans.value.WritableValue<ViewModelProjectResource>
    • bind

      public void bind(javafx.beans.value.ObservableValue<? extends ViewModelProjectResource> observable)
      Specified by:
      bind in interface javafx.beans.property.Property<ViewModelProjectResource>
    • unbind

      public void unbind()
      Specified by:
      unbind in interface javafx.beans.property.Property<ViewModelProjectResource>
    • isBound

      public boolean isBound()
      Specified by:
      isBound in interface javafx.beans.property.Property<ViewModelProjectResource>
    • bindBidirectional

      public void bindBidirectional(javafx.beans.property.Property<ViewModelProjectResource> other)
      Specified by:
      bindBidirectional in interface javafx.beans.property.Property<ViewModelProjectResource>
    • unbindBidirectional

      public void unbindBidirectional(javafx.beans.property.Property<ViewModelProjectResource> other)
      Specified by:
      unbindBidirectional in interface javafx.beans.property.Property<ViewModelProjectResource>