Examples of DoneImage


Examples of org.cast.isi.component.DoneImage

   * @param id wicket id
   * @param completed true if the section has been completed, false otherwise.
   * @return the appropriate image component for the 'completed' parameter
   */
  public Component getCompletedImage(String id, boolean isComplete) {
    Component image = new DoneImage(id);
    image.setVisible(isComplete);
    return image;
  }
View Full Code Here

Examples of org.cast.isi.component.DoneImage

    super.onBeforeRender();
  }

  protected Icon getImage() {
    if (isComplete())
      return new DoneImage("doneImg");
    else return new NotDoneImage("doneImg");
  }
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.