Package net.sf.rej.gui.tab

Examples of net.sf.rej.gui.tab.Tabbable


        JOptionPane.showMessageDialog(this, message, "Error",
                JOptionPane.ERROR_MESSAGE);
    }

    public void setTab(Tab tab) {
      Tabbable tabbable = getTab(tab);
      ensureTabIsVisible(tabbable);
        this.tabbedPane.setSelectedComponent((Component)tabbable);   
    }
View Full Code Here


        sb.append(fieldName);
        return sb.toString();
    }

  public void addBreakPoint(Breakpoint breakpoint) {
    Tabbable debugTab = MainWindow.getInstance().getDebugTab();
    if (debugTab instanceof DebugTab) {
      this.breakpoints.add(breakpoint);
      ((DebugTab)debugTab).addBreakpoint(breakpoint);
    }
  }
View Full Code Here

      ((DebugTab)debugTab).addBreakpoint(breakpoint);
    }
  }

  public void removeBreakpoint(Breakpoint breakpoint) {
    Tabbable debugTab = MainWindow.getInstance().getDebugTab();
    if (debugTab instanceof DebugTab) {
      this.breakpoints.remove(breakpoint);
      ((DebugTab)debugTab).removeBreakpoint(breakpoint);
    }
  }
View Full Code Here

TOP

Related Classes of net.sf.rej.gui.tab.Tabbable

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.