Package edu.hawaii.ics.csdl.jupiter.model.reviewissue

Examples of edu.hawaii.ics.csdl.jupiter.model.reviewissue.ReviewIssueModel.clear()


    int kind = delta.getKind();
    if (resource instanceof IProject && ((flag & IResourceDelta.OPEN) != 0)) {
      if (!((IProject) resource).isOpen()) {
        log.debug("project was closed: " + ((IProject) resource).getName());
        ReviewIssueModel model = ReviewIssueModelManager.getInstance().getCurrentModel();
        model.clear();
        model.notifyListeners(ReviewIssueModelEvent.CLEAR);
        Display.getDefault().asyncExec(new Runnable() {
          public void run() {
            ReviewTableViewAction.NOTIFY_EDITOR.run();
          }
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.