Examples of TodoTask


Examples of org.eclipse.php.internal.ui.preferences.TodoTaskConfigurationBlock.TodoTask

  public TodoTaskInputDialog(Shell parent, TodoTask task, List existingEntries) {
    super(parent);

    fExistingNames = new ArrayList(existingEntries.size());
    for (int i = 0; i < existingEntries.size(); i++) {
      TodoTask curr = (TodoTask) existingEntries.get(i);
      if (!curr.equals(task)) {
        fExistingNames.add(curr.name);
      }
    }

    if (task == null) {
View Full Code Here

Examples of org.eclipse.php.internal.ui.preferences.TodoTaskConfigurationBlock.TodoTask

      fPriorityDialogField.selectItem(1);
    }
  }

  public TodoTask getResult() {
    TodoTask task = new TodoTask();
    task.name = fNameDialogField.getText().trim();
    switch (fPriorityDialogField.getSelectionIndex()) {
    case 0:
      task.priority = PHPCoreConstants.TASK_PRIORITY_HIGH;
      break;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.