Package org.eclipse.core.runtime

Examples of org.eclipse.core.runtime.ListenerList


    this.outlineStrokeMap = new TreeMap();
    this.outlinePaintMap = new TreeMap();
    this.shapeMap = new TreeMap();
    this.itemLabelPaintMap = new TreeMap();

    this.listenerList = new ListenerList();
  }
View Full Code Here


    this.labelAnchor = RectangleAnchor.TOP_LEFT;
    this.labelOffset = new RectangleInsets(3, 3, 3, 3);
    this.labelOffsetType = LengthAdjustmentType.CONTRACT;
    this.labelTextAnchor = TextAnchor.CENTER;

    this.listenerList = new ListenerList();
  }
View Full Code Here

    this.tickMarkInsideLength = DEFAULT_TICK_MARK_INSIDE_LENGTH;
    this.tickMarkOutsideLength = DEFAULT_TICK_MARK_OUTSIDE_LENGTH;

    this.plot = null;

    this.listenerList = new ListenerList();
  }
View Full Code Here

  /**
   * Create a new SimpleSelectionProvider
   */
  public SimpleSelectionProvider() {
   
    fSelectionChangedListeners= new ListenerList();
  }
View Full Code Here

      throw new NullPointerException(
          "Cannot add a null execution listener"); //$NON-NLS-1$
    }

    if (executionListeners == null) {
      executionListeners = new ListenerList(ListenerList.IDENTITY);

      // Add an execution listener to every command.
      executionListener = new ExecutionListener();
      final Iterator commandItr = handleObjectsById.values().iterator();
      while (commandItr.hasNext()) {
View Full Code Here

      throw new NullPointerException(
          "Cannot add a null execution listener"); //$NON-NLS-1$
    }

    if (executionListeners == null) {
      executionListeners = new ListenerList(ListenerList.IDENTITY);
    }

    executionListeners.add(executionListener);
  }
View Full Code Here

                    handleContendChanged();
                }
            });
        }
        this.control = viewer.getTable();
        listeners = new ListenerList();
        viewer.setContentProvider(this);
    }
View Full Code Here

    }
  }

  final void addActionSetsListener(final IActionSetsListener listener) {
    if (actionSetListeners == null) {
      actionSetListeners = new ListenerList();
    }

    actionSetListeners.add(listener);
  }
View Full Code Here

  }

  @Override
  public void createPartControl(Composite parent) {

    logEventListeners = new ListenerList();

    Composite top = new Composite(parent, SWT.NONE);
    GridLayout layout = new GridLayout();
    layout.marginHeight = 0;
    layout.marginWidth = 0;
View Full Code Here

  private static ExportUtils instance;

  private XStream xstream;

  private ExportUtils() {
    saveListeners = new ListenerList();
    xstream = new XStream();
    xstream.alias("logentry", Entry.class);
    xstream.alias("sequence", SequenceStoreObject.class);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.core.runtime.ListenerList

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.