Package org.objectstyle.wolips.baseforplugins.util

Examples of org.objectstyle.wolips.baseforplugins.util.Throttle


  private ComponentEditorInteraction _editorInteraction;

  private Throttle _wodOutlineUpdateThrottle;

  public WodEditor() {
    _wodOutlineUpdateThrottle = new Throttle("WodOutline", 1000, new WodOutlineUpdater());
    _cursorPositionSupport = new CursorPositionSupport(this);
    setSourceViewerConfiguration(new WodSourceViewerConfiguration(this));
  }
View Full Code Here


  public SelectionThrottle(String name, IThrottledSelectionHandler selectionHandler) {
    _name = name;
    _selectionHandler = selectionHandler;
    _addedObjects = new LinkedList();
    _removedObjects = new LinkedList();
    _throttle = new Throttle(_name, 150, this);
  }
View Full Code Here

TOP

Related Classes of org.objectstyle.wolips.baseforplugins.util.Throttle

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.