Package com.jgraph.editor

Examples of com.jgraph.editor.JGraphEditorFactory


   * @param editor
   *            The editor for which to create an editor factory.
   * @return Returns a configured editor factory for the specified editor.
   */
  protected JGraphEditorFactory createFactory(final JGraphEditor editor) {
    JGraphEditorFactory factory = new JGraphEditorFactoryEx(editor.getKit()) {
      public JGraph createGraph(GraphLayoutCache graphLayoutCache) {
        return jgraphpad.createGraph(editor, graphLayoutCache);
      }
    };
    configureFactory(editor, factory);
View Full Code Here

TOP

Related Classes of com.jgraph.editor.JGraphEditorFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.