java.lang.Object
org.graffiti.plugin.algorithm.ThreadSafeAlgorithm
de.ipk_gatersleben.ag_nw.graffiti.plugins.layouters.pattern_springembedder_no_cache.PatternSpringembedder
All Implemented Interfaces:
Algorithm

public class PatternSpringembedder
extends ThreadSafeAlgorithm
Spring Embedder Algorithm. Example #3.
Author:
Christian Klukas
  • Constructor Details

    • PatternSpringembedder

      public PatternSpringembedder()
  • Method Details

    • getName

      public String getName()
      Sets Menu Command Title
      Returns:
      Menu command title
    • getActionEvent

      public ActionEvent getActionEvent()
    • setActionEvent

      public void setActionEvent​(ActionEvent a)
    • toString

      public String toString()
      DOCUMENT ME!
      Overrides:
      toString in class Object
      Returns:
      DOCUMENT ME!
    • check

      public void check()
      Error Checking
      Throws:
      PreconditionException - DOCUMENT ME!
    • execute

      public void execute()
      Layout Algorithm
    • getParameters

      public Parameter[] getParameters()
      DOCUMENT ME!
      Returns:
      DOCUMENT ME!
    • readPatternConnections

      public void readPatternConnections​(ThreadSafeOptions options)
      DOCUMENT ME!
      Parameters:
      options - DOCUMENT ME!
    • setParameters

      public void setParameters​(Parameter[] params)
      DOCUMENT ME!
      Parameters:
      params - DOCUMENT ME!
    • setControlInterface

      public boolean setControlInterface​(ThreadSafeOptions options, JComponent jc)
      Description copied from class: ThreadSafeAlgorithm
      DOCUMENT ME!
      Specified by:
      setControlInterface in class ThreadSafeAlgorithm
      Returns:
      true, if an GUI was set, false if no interface is needed
    • resetDataCache

      public void resetDataCache​(ThreadSafeOptions options)
      DOCUMENT ME!
      Specified by:
      resetDataCache in class ThreadSafeAlgorithm
      Parameters:
      options - DOCUMENT ME!
    • executeThreadSafe

      public void executeThreadSafe​(ThreadSafeOptions options)
      Specified by:
      executeThreadSafe in class ThreadSafeAlgorithm
    • attach

      public void attach​(Graph g)
    • reset

      public void reset()
      Description copied from interface: Algorithm
      Resets the internal state of the algorithm.
    • attach

      public void attach​(Graph g, Selection selection)
      Description copied from interface: Algorithm
      Attaches the given graph to this algorithm. A ttaches the given Selection information to the algorithm.
      Parameters:
      g - the graph to attach.
      selection - the selection to attach.
    • getCategory

      public String getCategory()
      Description copied from interface: Algorithm
      Returns the category an algorithm should assigned to. Return NULL if the algorithm should be sorted directly in the plugin menu.
      Returns:
      The category an algorithm should assigned to.
    • getSetCategory

      public Set<Category> getSetCategory()
      Description copied from interface: Algorithm
      Returns a set of categories to classify this algorithm . e.g. return new HashSet(Arrays.asList( Category.GRAPH, Category.NODE )); is an algorithm, working on graphs and more specific on nodes
      Returns:
      Set of Category Enums that classify this algorithm.
    • getMenuCategory

      public String getMenuCategory()
      Description copied from interface: Algorithm
      Returns a path to a menu category. This is s '.' separated string which reflects the position of this Algorithm in the Menu Hierarchy e.g. "Network.Layout" would put this algorithm in the menu 'Network' and its submenu 'Layout' If this menu is not existent it will be created If this method returns 'null' the algorithm will not appear in the menu
      Returns:
    • isLayoutAlgorithm

      public boolean isLayoutAlgorithm()
      Description copied from interface: Algorithm
      A LayoutAlgorithm should return true. All other types of algorithms should return false.
      Returns:
    • getDescription

      public String getDescription()