Package edu.wpi.cs.wpisuitetng.modules.defecttracker.tabs

Examples of edu.wpi.cs.wpisuitetng.modules.defecttracker.tabs.DummyTab


   * @param tab    The Tab holding this DefectView (can be null)
   */
  public DefectView(Defect defect, Mode editMode, Tab tab) {
    containingTab = tab;
    if(containingTab == null) {
      containingTab = new DummyTab();
    }
   
    // Instantiate the button panel
    buttonGroup = new ToolbarGroupView("Create Defect");
   
View Full Code Here

TOP

Related Classes of edu.wpi.cs.wpisuitetng.modules.defecttracker.tabs.DummyTab

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.