Java Code Examples for org.netbeans.spi.project.ui.support.CommonProjectActions#forType()
The following examples show how to use
org.netbeans.spi.project.ui.support.CommonProjectActions#forType() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MavenProjectNode.java From netbeans with Apache License 2.0 | 4 votes |
public @Override Action[] getActions(boolean param) { return CommonProjectActions.forType("org-netbeans-modules-maven"); // NOI18N }
Example 2
Source File: LogicalViewProviders.java From netbeans with Apache License 2.0 | 4 votes |
@Override public Action[] getActions( boolean context ) { return CommonProjectActions.forType(projectType); }
Example 3
Source File: View.java From netbeans with Apache License 2.0 | 4 votes |
@Override public Action[] getActions(boolean context) { return CommonProjectActions.forType("org-netbeans-modules-ant-freeform"); // NOI18N }
Example 4
Source File: LogicalViewProviderImpl.java From netbeans with Apache License 2.0 | 4 votes |
@Override public Action[] getActions(boolean context) { return CommonProjectActions.forType(JDKProject.PROJECT_KEY); }
Example 5
Source File: SuiteActions.java From netbeans with Apache License 2.0 | 4 votes |
static Action[] getProjectActions(SuiteProject project) { return CommonProjectActions.forType(SUITE_ACTIONS_TYPE); }
Example 6
Source File: ModuleActions.java From netbeans with Apache License 2.0 | 4 votes |
static Action[] getProjectActions(NbModuleProject project) { return CommonProjectActions.forType(MODULE_ACTIONS_TYPE); }
Example 7
Source File: GradleProjectNode.java From netbeans with Apache License 2.0 | 4 votes |
@Override public Action[] getActions(boolean param) { return CommonProjectActions.forType(NbGradleProject.GRADLE_PROJECT_TYPE); }
Example 8
Source File: AbstractLogicalViewProvider.java From netbeans with Apache License 2.0 | 4 votes |
@Override public Action[] getActions( boolean context ) { return CommonProjectActions.forType(actionsFolderLayer); // NOI18N }