private class GoForward extends AnAction {
public GoForward() {
- super(AllIcons.Actions.Forward);
+ super("Forward", "Forward", AllIcons.Actions.Forward);
}
@Override
private class GoBackward extends AnAction {
public GoBackward() {
- super(AllIcons.Actions.Back);
+ super("Back", "Back", AllIcons.Actions.Back);
}
@Override
private class AddHint extends AnAction {
public AddHint() {
- super(AllIcons.General.Add);
+ super("Add New Hint", "Add New Hint", AllIcons.General.Add);
}
@Override
private class RemoveHint extends AnAction {
public RemoveHint() {
- super(AllIcons.General.Remove);
+ super("Remove Hint", "Remove Hint", AllIcons.General.Remove);
}
@Override