Examples of CorrectWrongStatusPanel


Examples of ch.tatool.core.display.swing.status.CorrectWrongStatusPanel

  /**
   * Updates the status panel with either true or false value.
   */
  private void updateStatusPanel(ExecutionContext event, boolean success) {
    // get the status panel if available
    CorrectWrongStatusPanel panel = (CorrectWrongStatusPanel) StatusRegionUtil.getStatusPanel(statusPanelId);
    if (panel != null) {
      panel.setProperty(StatusPanel.PROPERTY_VALUE, success);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.