File tree Expand file tree Collapse file tree
src/org/netbeans/modules/php/wordpress Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4848import org .netbeans .modules .php .spi .framework .PhpModuleActionsExtender ;
4949import org .netbeans .modules .php .spi .framework .actions .RunCommandAction ;
5050import org .netbeans .modules .php .wordpress .commands .WordPressCli ;
51- import org .netbeans .modules .php .wordpress .ui .actions .CodeCompletionRefreshAction ;
51+ import org .netbeans .modules .php .wordpress .ui .actions .RefreshCodeCompletionAction ;
5252import org .netbeans .modules .php .wordpress .ui .actions .CreatePluginAction ;
5353import org .netbeans .modules .php .wordpress .ui .actions .CreateThemeAction ;
5454import org .netbeans .modules .php .wordpress .ui .actions .WordPressRunCommandAction ;
@@ -86,7 +86,7 @@ public List<? extends Action> getActions() {
8686 List <Action > actions = new ArrayList <Action >();
8787 actions .add (CreateThemeAction .getInstance ());
8888 actions .add (CreatePluginAction .getInstance ());
89- actions .add (new CodeCompletionRefreshAction ());
89+ actions .add (new RefreshCodeCompletionAction ());
9090 return actions ;
9191 }
9292}
Original file line number Diff line number Diff line change 5656 *
5757 * @author junichi11
5858 */
59- public class CodeCompletionRefreshAction extends BaseAction {
59+ public class RefreshCodeCompletionAction extends BaseAction {
6060
6161 private static final long serialVersionUID = -1446444622440007833L ;
6262
@@ -69,7 +69,7 @@ protected String getFullName() {
6969 return Bundle .LBL_WordPressAction (getPureName ());
7070 }
7171
72- @ NbBundle .Messages ("LBL_ActionName=Code Completion Refresh " )
72+ @ NbBundle .Messages ("LBL_ActionName=Refresh Code Completion" )
7373 @ Override
7474 protected String getPureName () {
7575 return Bundle .LBL_ActionName ();
You can’t perform that action at this time.
0 commit comments