Package org.pentaho.reporting.tools.configeditor.model

Examples of org.pentaho.reporting.tools.configeditor.model.ConfigTreeSectionNode


      return super.getTreeCellRendererComponent(tree, "<Root>", //$NON-NLS-1$
          sel, expanded, leaf, row, hasFocus);
    }
    else if (value instanceof ConfigTreeSectionNode)
    {
      final ConfigTreeSectionNode node = (ConfigTreeSectionNode) value;
      return super.getTreeCellRendererComponent(tree, node.getName(),
          sel, expanded, leaf, row, hasFocus);
    }
    else if (value instanceof ConfigTreeModuleNode)
    {
      final ConfigTreeModuleNode node = (ConfigTreeModuleNode) value;
      final StringBuffer text = new StringBuffer(100);
      text.append(node.getModule().getName());
//      text.append(" - "); //$NON-NLS-1$
//      text.append(node.getModule().getMajorVersion());
//      text.append('.');
//      text.append(node.getModule().getMinorVersion());
//      text.append('-');
View Full Code Here


      return super.getTreeCellRendererComponent(tree, "<Root>", //$NON-NLS-1$
          sel, expanded, leaf, row, hasFocus);
    }
    else if (value instanceof ConfigTreeSectionNode)
    {
      final ConfigTreeSectionNode node = (ConfigTreeSectionNode) value;
      return super.getTreeCellRendererComponent(tree, node.getName(),
          sel, expanded, leaf, row, hasFocus);
    }
    else if (value instanceof ConfigTreeModuleNode)
    {
      final ConfigTreeModuleNode node = (ConfigTreeModuleNode) value;
      final StringBuilder text = new StringBuilder(100);
      text.append(node.getModule().getName());
//      text.append(" - "); //$NON-NLS-1$
//      text.append(node.getModule().getMajorVersion());
//      text.append('.');
//      text.append(node.getModule().getMinorVersion());
//      text.append('-');
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.tools.configeditor.model.ConfigTreeSectionNode

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.