Package org.eclipse.jface.menus

Examples of org.eclipse.jface.menus.IWidget.dispose()


     */
    public void dock(int newSide) {
      // out with the old...
      for (Iterator iter = widgets.iterator(); iter.hasNext();) {
        IWidget widget = (IWidget) iter.next();
        widget.dispose();
       
        cacheEntry.removeWidget(widget);
      }

      // ...in with the new
View Full Code Here


     * disposes the group's 'proxy' control
     */
    public void dispose() {
      for (Iterator iter = widgets.iterator(); iter.hasNext();) {
        IWidget widget = (IWidget) iter.next();
        widget.dispose();

        // Remove the IWidget from the entry's cache
        cacheEntry.removeWidget(widget);
      }

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.