Package org.pentaho.reporting.tools.configeditor.editor

Examples of org.pentaho.reporting.tools.configeditor.editor.ConfigEditorPanel


  private PackageManager packageManager;

  public ConfigEditorPane(final PackageManager packageManager, final boolean includeGlobals)
  {
    this.packageManager = packageManager;
    detailEditorPane = new ConfigEditorPanel();

    setLayout(new BorderLayout());
    final JSplitPane splitPane = new JSplitPane
        (JSplitPane.HORIZONTAL_SPLIT, createEntryTree(includeGlobals), detailEditorPane);
    splitPane.setDividerLocation(250);
View Full Code Here


      final TreePath path = e.getPath();
      final Object lastPathElement = path.getLastPathComponent();
      if (lastPathElement instanceof ConfigTreeModuleNode)
      {
        final ConfigTreeModuleNode node = (ConfigTreeModuleNode) lastPathElement;
        final ConfigEditorPanel detailEditorPane = getDetailEditorPane();
        detailEditorPane.store();
        detailEditorPane.editModule(node.getModule(), configuration, node.getAssignedKeys());
      }
    }
View Full Code Here

  private AbstractBoot packageManager;

  public ConfigEditorPane(final AbstractBoot packageManager, final boolean includeGlobals)
  {
    this.packageManager = packageManager;
    detailEditorPane = new ConfigEditorPanel();

    setLayout(new BorderLayout());
    final JSplitPane splitPane = new JSplitPane
        (JSplitPane.HORIZONTAL_SPLIT, createEntryTree(includeGlobals), detailEditorPane);
    splitPane.setDividerLocation(250);
View Full Code Here

      final TreePath path = e.getPath();
      final Object lastPathElement = path.getLastPathComponent();
      if (lastPathElement instanceof ConfigTreeModuleNode)
      {
        final ConfigTreeModuleNode node = (ConfigTreeModuleNode) lastPathElement;
        final ConfigEditorPanel detailEditorPane = getDetailEditorPane();
        detailEditorPane.store();
        detailEditorPane.editModule(node.getModule(), configuration, node.getAssignedKeys());
      }
    }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.tools.configeditor.editor.ConfigEditorPanel

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.