Package org.eclipse.draw2d

Examples of org.eclipse.draw2d.ChangeEvent


    public void fireChangeEvent( final Object element, final String key,
            final boolean refresh )
    {
        // TODO make sure this key gets selected in the view
        ChangeEvent ce = new ChangeEvent( element, key );
        for ( ChangeListener listener : listeners )
        {
            listener.handleStateChanged( ce );
        }
        if ( refresh )
View Full Code Here

TOP

Related Classes of org.eclipse.draw2d.ChangeEvent

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.