View Javadoc

1   /*
2    * Copyright (c) 2005, The K-Wf Grid Consortium
3    * Fraunhofer Institute for Computer Architecture and Software Technology
4    * See http://www.kwfgrid.eu and http://www.first.fraunhofer.de for more details.
5    */
6   package net.kwfgrid.gwui.graphview;
7   
8   /***
9      Interface for all elements of the WorkflowGraph.
10  */
11  public interface WorkflowGraphElement {
12      /***
13         Get the object of the workflow structure visualized by this graph element.
14       */
15      Object getStructureObject();
16  }