Package org.eclipse.ui.internal.cheatsheets.views

Examples of org.eclipse.ui.internal.cheatsheets.views.ViewItem


    if (expandRestoreStates == null)
      expandRestoreStates = new ArrayList();

    // Assemble lists of expanded items and completed items.
    for (int i = 0; i < items.size(); i++) {
      ViewItem item = (ViewItem) items.get(i);
      if (item.isCompleted()) {
        completedList.add(Integer.toString(i));
      }
      if (item.isExpanded()) {
        expandedList.add(Integer.toString(i));
      }

      if (item instanceof CoreItem) {
        CoreItem withsubs = (CoreItem) item;
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.cheatsheets.views.ViewItem

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.