Skip to content

Commit

Permalink
rename StartF1Action and StopF1Action
Browse files Browse the repository at this point in the history
  • Loading branch information
koentsje committed Feb 10, 2014
1 parent 6a2e71c commit ba1eb5e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
import org.jboss.tools.forge.ui.ForgeUIPlugin;
import org.jboss.tools.forge.ui.util.ForgeHelper;

public class StartF1Action extends Action {
public class StartAction extends Action {

public StartF1Action() {
public StartAction() {
super();
setImageDescriptor(createImageDescriptor());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
import org.jboss.tools.forge.ui.ForgeUIPlugin;
import org.jboss.tools.forge.ui.util.ForgeHelper;

public class StopF1Action extends Action {
public class StopAction extends Action {

public StopF1Action() {
public StopAction() {
super();
setImageDescriptor(createImageDescriptor());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
import org.jboss.tools.forge.core.process.ForgeRuntime;
import org.jboss.tools.forge.ui.actions.f1.GoToAction;
import org.jboss.tools.forge.ui.actions.f1.LinkAction;
import org.jboss.tools.forge.ui.actions.f1.StartF1Action;
import org.jboss.tools.forge.ui.actions.f1.StopF1Action;
import org.jboss.tools.forge.ui.actions.f1.StartAction;
import org.jboss.tools.forge.ui.actions.f1.StopAction;
import org.jboss.tools.forge.ui.console.ForgeConsole;
import org.jboss.tools.forge.ui.document.ForgeDocument;
import org.jboss.tools.forge.ui.part.ForgeTextViewer;
Expand All @@ -39,8 +39,8 @@ public Control createControl(Composite parent) {
@Override
public IAction[] createActions() {
return new IAction[] {
new StartF1Action(),
new StopF1Action(),
new StartAction(),
new StopAction(),
new GoToAction(),
new LinkAction()
};
Expand Down

0 comments on commit ba1eb5e

Please sign in to comment.