Java 类com.intellij.lang.ant.config.execution.AntBuildMessageView 实例源码

项目:intellij-ce-playground    文件:StopAction.java   
public StopAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("stop.ant.action.name"),null, AllIcons.Actions.Suspend);
  myAntBuildMessageView = antBuildMessageView;
}
项目:intellij-ce-playground    文件:ChangeViewAction.java   
public ChangeViewAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("ant.view.toggle.tree.text.action.name"),null, AntIcons.ChangeView);
  myAntBuildMessageView = antBuildMessageView;
}
项目:intellij-ce-playground    文件:RunAction.java   
public RunAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("rerun.ant.action.name"), null, AllIcons.Actions.Rerun);
  myAntBuildMessageView = antBuildMessageView;
}
项目:intellij-ce-playground    文件:VerboseAction.java   
public VerboseAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("ant.verbose.show.all.messages.action.name"),
        AntBundle.message("ant.verbose.show.all.messages.action.description"), AntIcons.Verbose);
  myAntBuildMessageView = antBuildMessageView;
}
项目:intellij-ce-playground    文件:PauseOutputAction.java   
public PauseOutputAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("ant.view.pause.output.action.name"),null, AllIcons.Actions.Pause);
  myAntBuildMessageView = antBuildMessageView;
}
项目:tools-idea    文件:StopAction.java   
public StopAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("stop.ant.action.name"),null, AllIcons.Actions.Suspend);
  myAntBuildMessageView = antBuildMessageView;
}
项目:tools-idea    文件:ChangeViewAction.java   
public ChangeViewAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("ant.view.toggle.tree.text.action.name"),null, AllIcons.Ant.ChangeView);
  myAntBuildMessageView = antBuildMessageView;
}
项目:tools-idea    文件:RunAction.java   
public RunAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("rerun.ant.action.name"), null, AllIcons.Actions.Rerun);
  myAntBuildMessageView = antBuildMessageView;
}
项目:tools-idea    文件:VerboseAction.java   
public VerboseAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("ant.verbose.show.all.messages.action.name"),
        AntBundle.message("ant.verbose.show.all.messages.action.description"), AllIcons.Ant.Verbose);
  myAntBuildMessageView = antBuildMessageView;
}
项目:tools-idea    文件:PauseOutputAction.java   
public PauseOutputAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("ant.view.pause.output.action.name"),null, AllIcons.Actions.Pause);
  myAntBuildMessageView = antBuildMessageView;
}
项目:consulo-apache-ant    文件:StopAction.java   
public StopAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("stop.ant.action.name"),null, AllIcons.Actions.Suspend);
  myAntBuildMessageView = antBuildMessageView;
}
项目:consulo-apache-ant    文件:ChangeViewAction.java   
public ChangeViewAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("ant.view.toggle.tree.text.action.name"),null, ApacheAntIcons.ChangeView);
  myAntBuildMessageView = antBuildMessageView;
}
项目:consulo-apache-ant    文件:RunAction.java   
public RunAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("rerun.ant.action.name"), null, AllIcons.Actions.Rerun);
  myAntBuildMessageView = antBuildMessageView;
}
项目:consulo-apache-ant    文件:VerboseAction.java   
public VerboseAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("ant.verbose.show.all.messages.action.name"),
        AntBundle.message("ant.verbose.show.all.messages.action.description"), ApacheAntIcons.Verbose);
  myAntBuildMessageView = antBuildMessageView;
}
项目:consulo-apache-ant    文件:PauseOutputAction.java   
public PauseOutputAction(AntBuildMessageView antBuildMessageView) {
  super(AntBundle.message("ant.view.pause.output.action.name"),null, AllIcons.Actions.Pause);
  myAntBuildMessageView = antBuildMessageView;
}