Examples of IScriptAnnotation


Examples of org.eclipse.dltk.ui.editor.IScriptAnnotation

        && !annotation.isMarkedDeleted();
  }

  public static boolean hasCorrections(Annotation annotation) {
    if (annotation instanceof IScriptAnnotation) {
      IScriptAnnotation javaAnnotation = (IScriptAnnotation) annotation;
      if (javaAnnotation.getId() != null) {
        ISourceModule cu = javaAnnotation.getSourceModule();
        return hasCorrections(cu, javaAnnotation.getId(),
            javaAnnotation.getMarkerType());
      }

    }
    if (annotation instanceof SimpleMarkerAnnotation) {
      return hasCorrections(((SimpleMarkerAnnotation) annotation)
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.