Package ch.tatool.core.display.swing.status

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

Related Classes of ch.tatool.core.display.swing.status.CorrectWrongStatusPanel

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.