Java 类com.intellij.ui.ReorderableListController 实例源码

项目:intellij-ce-playground    文件:AnActionListEditor.java   
public void addAddAction(final Factory<T> newItemFactory) {
  ReorderableListController<T>.AddActionDescription description = myForm.getListActionsBuilder().addAddAction(
    AntBundle.message("add.action.name"), newItemFactory, true);
  description.addPostHandler(new ReorderableListController.ActionNotification<T>() {
    public void afterActionPerformed(T value) {
      myAdded.add(value);
    }
  });
  description.setShowText(true);
}
项目:tools-idea    文件:AnActionListEditor.java   
public void addAddAction(final Factory<T> newItemFactory) {
  ReorderableListController<T>.AddActionDescription description = myForm.getListActionsBuilder().addAddAction(
    AntBundle.message("add.action.name"), newItemFactory, true);
  description.addPostHandler(new ReorderableListController.ActionNotification<T>() {
    public void afterActionPerformed(T value) {
      myAdded.add(value);
    }
  });
  description.setShowText(true);
}
项目:consulo-apache-ant    文件:AnActionListEditor.java   
public void addAddAction(final Factory<T> newItemFactory) {
  ReorderableListController<T>.AddActionDescription description = myForm.getListActionsBuilder().addAddAction(
    AntBundle.message("add.action.name"), newItemFactory, true);
  description.addPostHandler(new ReorderableListController.ActionNotification<T>() {
    public void afterActionPerformed(T value) {
      myAdded.add(value);
    }
  });
  description.setShowText(true);
}
项目:intellij-ce-playground    文件:AnActionListEditor.java   
public ReorderableListController<T> getListActionsBuilder() {
  return myListController;
}
项目:tools-idea    文件:AnActionListEditor.java   
public ReorderableListController<T> getListActionsBuilder() {
  return myListController;
}
项目:consulo-apache-ant    文件:AnActionListEditor.java   
public ReorderableListController<T> getListActionsBuilder() {
  return myListController;
}