// { //$NON-NLS-1$
return new IInformationControlCreator() {
public IInformationControl createInformationControl(Shell parent) {
- return new DefaultInformationControl(parent, SWT.NONE,
- new HTMLTextPresenter(true), PHPDebugUiMessages
- .getString("JavaDebugHover.16")); //$NON-NLS-1$
+//incastrix
+ // return new DefaultInformationControl(parent, SWT.NONE,
+// new HTMLTextPresenter(true), PHPDebugUiMessages
+// .getString("JavaDebugHover.16")); //$NON-NLS-1$
+ return new DefaultInformationControl(parent, PHPDebugUiMessages.getString("JavaDebugHover.16"),
+ new HTMLTextPresenter(true));
}
};
// }
PreferenceConstants.EDITOR_SHOW_TEXT_HOVER_AFFORDANCE)) { //$NON-NLS-1$
return new IInformationControlCreator() {
public IInformationControl createInformationControl(Shell parent) {
- return new DefaultInformationControl(parent, SWT.NONE,
- new HTMLTextPresenter(true), PHPDebugUiMessages
- .getString("PHPDebugHover.16")); //$NON-NLS-1$
+//incastrix
+ // return new DefaultInformationControl(parent, SWT.NONE,
+// new HTMLTextPresenter(true), PHPDebugUiMessages
+// .getString("PHPDebugHover.16")); //$NON-NLS-1$
+ return new DefaultInformationControl(parent, PHPDebugUiMessages.getString("JavaDebugHover.16"),
+ new HTMLTextPresenter(true));
}
};
}
public IInformationControlCreator getHoverControlCreator() {
return new IInformationControlCreator() {
public IInformationControl createInformationControl(Shell parent) {
- return new DefaultInformationControl(parent, SWT.NONE,
- new HTMLTextPresenter(true),
- getTooltipAffordanceString());
+ //incastrix
+ // return new DefaultInformationControl(parent, SWT.NONE,
+// new HTMLTextPresenter(true),
+// getTooltipAffordanceString());
+ return new DefaultInformationControl(parent, getTooltipAffordanceString(),
+ new HTMLTextPresenter(true));
}
};
}
import java.util.Vector;
import net.sourceforge.phpdt.core.JavaCore;
+//import net.sourceforge.phpdt.internal.debug.ui.PHPDebugUiMessages;
import net.sourceforge.phpdt.internal.ui.text.AbstractJavaScanner;
import net.sourceforge.phpdt.internal.ui.text.ContentAssistPreference;
import net.sourceforge.phpdt.internal.ui.text.HTMLTextPresenter;
ISourceViewer sourceViewer) {
return new IInformationControlCreator() {
public IInformationControl createInformationControl(Shell parent) {
- return new DefaultInformationControl(parent, SWT.NONE,
+//incastrix
+ // return new DefaultInformationControl(parent, SWT.NONE,
+// new HTMLTextPresenter(true));
+ return new DefaultInformationControl(parent,
new HTMLTextPresenter(true));
// return new HoverBrowserControl(parent);
}