Package lupos.gui.operatorgraph.visualeditor.ruleeditor.util

Examples of lupos.gui.operatorgraph.visualeditor.ruleeditor.util.ScrollPane


    topComp.add(this.moveRulePanel, gbc);
    gbc.gridy++;
    gbc.weighty = 1.0;
    gbc.insets = new Insets(0, 0, 0, 0);

    topComp.add(new ScrollPane(this.tree_rulePackages), gbc);

    return topComp;
  }
View Full Code Here


    bottomComp.add(new JLabel("not associated rules"), gbc);
    gbc.gridy++;
    gbc.weighty = 1.0;
    gbc.insets = new Insets(0, 0, 0, 0);

    bottomComp.add(new ScrollPane(this.tree_unassigned), gbc);

    return bottomComp;
  }
View Full Code Here

  // --- visual representation - begin ---
  private JPanel getVisualRepresentationTab(JSONObject loadObject) {
    this.editorPane = new RuleEditorPane(this.editor.getStatusBar());

    JPanel leftPanel = new JPanel(new BorderLayout());
    leftPanel.add(new ScrollPane(this.editorPane.getVisualGraphs().get(0)));

    JPanel rightPanel = new JPanel(new BorderLayout());
    rightPanel.add(new ScrollPane(this.editorPane.getVisualGraphs().get(1)));

    JSplitPane splitPane = new JSplitPane();
    splitPane.setContinuousLayout(true);
    splitPane.setOneTouchExpandable(true);
    splitPane.setResizeWeight(0.5);
View Full Code Here

    this.documentationPanel.rebuild(this.editor.getRules(), this.editor.getRulePackages());

    JPanel panel = new JPanel(new BorderLayout());
    panel.add(this.documentationPanel, BorderLayout.CENTER);

    return new ScrollPane(panel);
  }
View Full Code Here

    JPanel tmpPanel = new JPanel(new FlowLayout(FlowLayout.LEFT));
    tmpPanel.add(this.assotiationsPanel);

    JPanel panel = new JPanel(new BorderLayout(5, 5));
    panel.add(new JLabel("Associated rule packages:"), BorderLayout.NORTH);
    panel.add(new ScrollPane(tmpPanel), BorderLayout.CENTER);

    return panel;
  }
View Full Code Here

    JPanel tmpPanel = new JPanel(new FlowLayout(FlowLayout.LEFT));
    tmpPanel.add(this.assotiationsPanel);

    JPanel panel = new JPanel(new BorderLayout(5, 5));
    panel.add(new JLabel("Associated rules:"), BorderLayout.NORTH);
    panel.add(new ScrollPane(tmpPanel), BorderLayout.CENTER);

    return panel;
  }
View Full Code Here

    this.documentationPanel.rebuild(this.editor.getRules(), this.editor.getRulePackages());

    JPanel panel = new JPanel(new BorderLayout());
    panel.add(this.documentationPanel, BorderLayout.CENTER);

    return new ScrollPane(panel);
  }
View Full Code Here

TOP

Related Classes of lupos.gui.operatorgraph.visualeditor.ruleeditor.util.ScrollPane

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.