| java.lang.Object com.jgraph.codecplugin.JGraphpadCodecPlugin
JGraphpadCodecPlugin | public class JGraphpadCodecPlugin implements JGraphEditorPlugin(Code) | | Plugin for exporting JGraphpad files to various formats, namely HTML image
maps, GXL and Graphviz.
|
Field Summary | |
public static String | PATH_UICONFIG Defines the path to the UI configuration to be merged into the existing
UI configuration. |
Method Summary | |
public void | initialize(JGraphEditor editor, Node configuration) Initializes the plugin by registering all factory methods and action
bundles and merging the UI configuration into the main configuration. | public static boolean | isVertex(JGraph graph, Object cell) Utilitiy method used by some of the codecs to determine whether a cell is
a vertex. |
PATH_UICONFIG | public static String PATH_UICONFIG(Code) | | Defines the path to the UI configuration to be merged into the existing
UI configuration.
|
initialize | public void initialize(JGraphEditor editor, Node configuration) throws ParserConfigurationException, SAXException, IOException(Code) | | Initializes the plugin by registering all factory methods and action
bundles and merging the UI configuration into the main configuration.
Parameters: editor - The enclosing editor for the plugin. Parameters: configuration - The object to configure the plugin with. |
isVertex | public static boolean isVertex(JGraph graph, Object cell)(Code) | | Utilitiy method used by some of the codecs to determine whether a cell is
a vertex. This implementation takes into account the current collapsed
state.
Parameters: graph - The graph that contains the cell. Parameters: cell - The cell to be checked. Returns true if cell is a vertex. |
|
|