Package org.shiftone.jrat.ui.util

Examples of org.shiftone.jrat.ui.util.NSplitPane


   */
  public NGraphPanel(int graphCount) {

    this.graphComponents = new GraphComponent[graphCount];
    this.scrollPanes = new JScrollPane[graphCount];
    this.splitPane = new NSplitPane(NSplitPane.VERTICAL_SPLIT);
    this.scrollBar = new JScrollBar(JScrollBar.HORIZONTAL);
    scrollBar.setUnitIncrement(SCROLL_UNIT_INCREMENT);
    scrollBar.setBlockIncrement(SCROLL_BLOCK_INCREMENT);
    for (int i = 0; i < graphCount; i++) {
      graphComponents[i] = new GraphComponent();
View Full Code Here

TOP

Related Classes of org.shiftone.jrat.ui.util.NSplitPane

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.