Package jmt.gui.common.panels

Examples of jmt.gui.common.panels.BlockingRegionParameterPanel


    warning.addCheckVector(sd.getStationKeysNoSourceSink());
    stationPanel.add(warning);
    add(stationPanel);

    // Creates blocking region panel
    blockingPanel = new BlockingRegionParameterPanel(cd, bd, regionKey);
    // Hides unneeded global properties (specified by table)
    blockingPanel.setGlobalVisible(false);
    add(blockingPanel);
  }
View Full Code Here


      }
    }
    // Blocking region editing
    else if ((cell != null) && (cell instanceof BlockingRegion)) {
      Object regionKey = ((BlockingRegion) cell).getKey();
      dialogFactory.getDialog(new BlockingRegionParameterPanel(model, model, regionKey), "Editing " + model.getRegionName(regionKey)
          + " Properties...");
    }
  }
View Full Code Here

TOP

Related Classes of jmt.gui.common.panels.BlockingRegionParameterPanel

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.