Examples of BrowserInput


Examples of org.eclipse.jface.internal.text.html.BrowserInput

    public void update() {
      BrowserInformationControlInput current = fInfoControl.getInput();

      if (current != null && current.getPrevious() != null) {
        BrowserInput previous = current.getPrevious();
        setToolTipText(Messages.format(
            PHPHoverMessages.JavadocHover_back_toElement_toolTip,
            BasicElementLabels.getJavaElementName(previous
                .getInputName())));
        setEnabled(true);
      } else {
        setToolTipText(PHPHoverMessages.JavadocHover_back);
        setEnabled(false);
View Full Code Here

Examples of org.erlide.ui.util.eclipse.text.BrowserInput

        public void update() {
            final BrowserInformationControlInput current = fInfoControl.getInput();

            if (current != null && current.getPrevious() != null) {
                final BrowserInput previous = current.getPrevious();
                setToolTipText(String.format("Go back to %s", previous.getInputName()));
                setEnabled(true);
            } else {
                setToolTipText("");
                setEnabled(false);
            }
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.