Package org.eclipse.dltk.ui.editor

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

Related Classes of org.eclipse.dltk.ui.editor.IScriptAnnotation

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.