Examples of ProblemAnnotationHoverProcessor


Examples of org.eclipse.wst.sse.ui.internal.taginfo.ProblemAnnotationHoverProcessor

    int i = 0;
    while (i < hoverDescs.length && textHover == null) {
      if (hoverDescs[i].isEnabled() && computeStateMask(hoverDescs[i].getModifierString()) == stateMask) {
        String hoverType = hoverDescs[i].getId();
        if (TextHoverManager.PROBLEM_HOVER.equalsIgnoreCase(hoverType))
          textHover = new ProblemAnnotationHoverProcessor();
        else if (TextHoverManager.ANNOTATION_HOVER.equalsIgnoreCase(hoverType))
          textHover = new AnnotationHoverProcessor();
        else if (TextHoverManager.COMBINATION_HOVER.equalsIgnoreCase(hoverType))
          textHover = new BestMatchHover(createDocumentationHovers(contentType));
        else if (TextHoverManager.DOCUMENTATION_HOVER.equalsIgnoreCase(hoverType)) {
View Full Code Here

Examples of org.eclipse.wst.sse.ui.internal.taginfo.ProblemAnnotationHoverProcessor

    int i = 0;
    while (i < hoverDescs.length && textHover == null) {
      if (hoverDescs[i].isEnabled() && computeStateMask(hoverDescs[i].getModifierString()) == stateMask) {
        String hoverType = hoverDescs[i].getId();
        if (TextHoverManager.PROBLEM_HOVER.equalsIgnoreCase(hoverType))
          textHover = new ProblemAnnotationHoverProcessor();
        else if (TextHoverManager.ANNOTATION_HOVER.equalsIgnoreCase(hoverType))
          textHover = new AnnotationHoverProcessor();
        else if (TextHoverManager.COMBINATION_HOVER.equalsIgnoreCase(hoverType))
          textHover = new BestMatchHover(contentType);
        else if (TextHoverManager.DOCUMENTATION_HOVER.equalsIgnoreCase(hoverType)) {
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.