Package org.eclipse.jface.window

Examples of org.eclipse.jface.window.DefaultToolTip.activate()


    private void attachToolTip(NatTable natTable) {
        DefaultToolTip toolTip = new ExampleNatTableToolTip(natTable);
        toolTip.setBackgroundColor(natTable.getDisplay().getSystemColor(
                SWT.COLOR_RED));
        toolTip.setPopupDelay(500);
        toolTip.activate();
        toolTip.setShift(new Point(10, 10));
    }

    private class ExampleNatTableToolTip extends DefaultToolTip {
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.