Package org.eclipse.ui.internal.cheatsheets.composite.model

Examples of org.eclipse.ui.internal.cheatsheets.composite.model.TaskGroup$CompletionStrategy


  }

  private AbstractTask createTask(String nodeKind, CompositeCheatSheetModel model, String kind, String id, String name) {
    AbstractTask task;
    if (ICompositeCheatsheetTags.TASK_GROUP.equals(nodeKind)) {
      task = new TaskGroup(model, id, name, kind);
    } else {
      task = new EditableTask(model, id, name, kind);
    }
    task.setCompletionMessage(Messages.COMPLETED_TASK);
    return task;
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.cheatsheets.composite.model.TaskGroup$CompletionStrategy

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.