Package org.eclipse.ui

Examples of org.eclipse.ui.IMarkerHelpRegistry


  private static boolean hasCorrections(IMarker marker) {
    if (marker == null || !marker.exists())
      return false;

    IMarkerHelpRegistry registry = IDE.getMarkerHelpRegistry();
    return registry != null && registry.hasResolutions(marker);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.IMarkerHelpRegistry

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.