Interface ISyntaxFactory

All Known Implementing Classes:
DemoSyntaxFactory

public interface ISyntaxFactory
Interface class for graph-syntax factories
  • Method Details

    • getSyntaxName

      String getSyntaxName()
      Get the name of the syntax that this factory generates.
      Returns:
      The name-string of the syntax
    • getLegacyNames

      List<String> getLegacyNames()
      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.
      Returns:
      An unmodifiable list of names
    • getSyntaxDescription

      String getSyntaxDescription()
      Get the long-form description of the syntax.
      Returns:
      A possibly multiline string with a description of the syntax
    • createVertexView

      javafx.scene.Node createVertexView(String bufferKey, UUID vertexKey, ViewModelVertex vertexValue, ViewModelGraph graph, javafx.scene.transform.Affine viewportTransform)
      Create a new javafx vertex representation
      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
    • createVertexViewModel

      ViewModelVertex createVertexViewModel(UUID vertexKey, ModelVertex vertexValue)
      Create a new viewmodel vertex representation
      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.
    • createEdgeView

      javafx.scene.Node createEdgeView(String bufferKey, UUID edgeKey, ViewModelEdge edgeValue, ViewModelGraph graph, javafx.scene.transform.Affine viewportTransform)
      Create a new javafx edge representation
      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
    • createEdgeViewModel

      ViewModelEdge createEdgeViewModel(UUID edgeKey, ModelEdge edgeValue)
      Create a new viewmodel edge representation
      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

      Optional<ISyntaxMigrater> getMigrater()
      Get the associated syntax version migrater.
      Returns:
      empty if this syntax does not support version migration. Otherwise an instance of the appropriate migrater for this syntax.
    • getSyntaxTools

      Optional<IToolbox> getSyntaxTools()
      Get a IToolbox with all the appropriate ITool instances used to create syntax elements with.
      Returns:
      empty if no additional tools are required or available