List of usage examples for com.intellij.openapi.actionSystem IdeActions GROUP_NEW
String GROUP_NEW
To view the source code for com.intellij.openapi.actionSystem IdeActions GROUP_NEW.
Click Source Link
From source file:com.intellij.ide.actions.WeighingNewActionGroup.java
License:Apache License
@Override protected ActionGroup getDelegate() { if (myDelegate == null) { myDelegate = (ActionGroup) ActionManager.getInstance().getAction(IdeActions.GROUP_NEW); getTemplatePresentation().setText(myDelegate.getTemplatePresentation().getText()); setPopup(myDelegate.isPopup());//from w w w .ja va 2 s . c o m } return myDelegate; }