Package org.eclipse.jdt.internal.ui.text.java.hover

Examples of org.eclipse.jdt.internal.ui.text.java.hover.JavadocBrowserInformationControlInput


        IJavaElement[].class,
        ITypeRoot.class,
        IRegion.class,
        JavadocBrowserInformationControlInput.class);
    getHoverInfo.setAccessible(true);
    JavadocBrowserInformationControlInput info =
      (JavadocBrowserInformationControlInput)
      getHoverInfo.invoke(null, elements, null, null, null);
    if (info == null){
      return null;
    }

    ArrayList<HashMap<String,String>> links =
      new ArrayList<HashMap<String,String>>();
    Matcher matcher = LINKS.matcher(info.getHtml());
    StringBuffer buffer = new StringBuffer();
    int index = 0;
    while (matcher.find()){
      String href = matcher.group(2);
      String text = matcher.group(3);
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.ui.text.java.hover.JavadocBrowserInformationControlInput

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.