Package jmt.gui.common.definitions

Examples of jmt.gui.common.definitions.BlockingRegionDefinition


          setText(sd.getStationName(key));
          setIcon(JMTImageLoader.loadImage(sd.getStationType(key) + "Combo"));
        }
        // This is a region
        if (sd instanceof BlockingRegionDefinition) {
          BlockingRegionDefinition bd = (BlockingRegionDefinition) sd;
          if (bd.getRegionName(key) != null && !bd.getRegionName(key).equals("")) {
            setText(bd.getRegionName(key));
            setIcon(JMTImageLoader.loadImage("BlockingCombo"));
          }
        }
        if (key == null) {
          // Null component
View Full Code Here

TOP

Related Classes of jmt.gui.common.definitions.BlockingRegionDefinition

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.