Examples of ReviewEvent


Examples of edu.hawaii.ics.csdl.jupiter.event.ReviewEvent

   * @param kind the kind of the type.
   */
  public void notifyListeners(int type, int kind) {
    log.debug("review event type: " + type);
    log.debug("review event kind: " + kind);
    ReviewEvent event = new ReviewEvent(type, kind);
    Object[] listeners = listenerList.getListeners();
    for (int i = 0; i < listeners.length; i++) {
      ((IReviewListener) listeners[i]).reviewInvoked(event);
    }
  }
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.