Package org.eclipse.core.internal.utils

Examples of org.eclipse.core.internal.utils.Queue


  }

  protected void initializeQueue() {
    //initialize the queue
    if (queue == null)
      queue = new Queue(100, false);
    else
      queue.reset();
    //initialize the free nodes list
    if (freeNodes == null)
      freeNodes = new ArrayList(100);
View Full Code Here

TOP

Related Classes of org.eclipse.core.internal.utils.Queue

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.