Class DemoSyntaxFactory

java.lang.Object
dk.gtz.graphedit.internal.DemoSyntaxFactory
All Implemented Interfaces:
ISyntaxFactory

public class DemoSyntaxFactory extends Object implements ISyntaxFactory
Syntax factory implementation for the default basic demonstration syntax
  • Constructor Details

    • DemoSyntaxFactory

      public DemoSyntaxFactory()
      Constructs a new instance of the demo syntaxfactory
  • Method Details

    • getSyntaxName

      public String getSyntaxName()
      Description copied from interface: ISyntaxFactory
      Get the name of the syntax that this factory generates.
      Specified by:
      getSyntaxName in interface ISyntaxFactory
      Returns:
      The name-string of the syntax
    • getLegacyNames

      public List<String> getLegacyNames()
      Description copied from interface: ISyntaxFactory
      Get a list of names that this syntax has been previously known as. This is useful if you want to rename your syntax because of name clashes.
      Specified by:
      getLegacyNames in interface ISyntaxFactory
      Returns:
      An unmodifiable list of names
    • getSyntaxDescription

      public String getSyntaxDescription()
      Description copied from interface: ISyntaxFactory
      Get the long-form description of the syntax.
      Specified by:
      getSyntaxDescription in interface ISyntaxFactory
      Returns:
      A possibly multiline string with a description of the syntax
    • createVertexView

      public javafx.scene.Node createVertexView(String bufferKey, UUID vertexKey, ViewModelVertex vertexValue, ViewModelGraph graph, javafx.scene.transform.Affine viewportTransform)
      Description copied from interface: ISyntaxFactory
      Create a new javafx vertex representation
      Specified by:
      createVertexView in interface ISyntaxFactory
      Parameters:
      bufferKey - The key of the buffer that contains the graph that contains this view
      vertexKey - The primary key of the new vertex representation
      vertexValue - The viewmodel value of the new vertex representation
      graph - The parent syntax graph
      viewportTransform - The translational, rotational and scale transform of the related viewport
      Returns:
      The new vertex javafx representation
    • createEdgeView

      public javafx.scene.Node createEdgeView(String bufferKey, UUID edgeKey, ViewModelEdge edgeValue, ViewModelGraph graph, javafx.scene.transform.Affine viewportTransform)
      Description copied from interface: ISyntaxFactory
      Create a new javafx edge representation
      Specified by:
      createEdgeView in interface ISyntaxFactory
      Parameters:
      bufferKey - The key of the buffer that contains the graph that contains this view
      edgeKey - The primary key of the new edge representation
      edgeValue - The viewmodel value of the new edge representation
      graph - The parent syntax graph
      viewportTransform - The translational, rotational and scale transform of the related viewport
      Returns:
      The new edge javafx representation
    • createVertexViewModel

      public ViewModelVertex createVertexViewModel(UUID vertexKey, ModelVertex vertexValue)
      Description copied from interface: ISyntaxFactory
      Create a new viewmodel vertex representation
      Specified by:
      createVertexViewModel in interface ISyntaxFactory
      Parameters:
      vertexKey - The primary key of the new vertex representation
      vertexValue - The model vertex to base on
      Returns:
      A new instance of a viewmodel vertex representation specific to this syntax.
    • createEdgeViewModel

      public ViewModelEdge createEdgeViewModel(UUID edgeKey, ModelEdge edgeValue)
      Description copied from interface: ISyntaxFactory
      Create a new viewmodel edge representation
      Specified by:
      createEdgeViewModel in interface ISyntaxFactory
      Parameters:
      edgeKey - The primary key of the new edge representation
      edgeValue - The model edge to base on
      Returns:
      A new instance of a viewmodel edge representation specific to this syntax.
    • getMigrater

      public Optional<ISyntaxMigrater> getMigrater()
      Description copied from interface: ISyntaxFactory
      Get the associated syntax version migrater.
      Specified by:
      getMigrater in interface ISyntaxFactory
      Returns:
      empty if this syntax does not support version migration. Otherwise an instance of the appropriate migrater for this syntax.
    • getSyntaxTools

      public Optional<IToolbox> getSyntaxTools()
      Description copied from interface: ISyntaxFactory
      Get a IToolbox with all the appropriate ITool instances used to create syntax elements with.
      Specified by:
      getSyntaxTools in interface ISyntaxFactory
      Returns:
      empty if no additional tools are required or available