Java Code Examples for org.netbeans.modules.php.api.util.UiUtils#CUSTOMIZER_PATH

The following examples show how to use org.netbeans.modules.php.api.util.UiUtils#CUSTOMIZER_PATH . 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: CompositePanelProviderImpl.java    From netbeans with Apache License 2.0 5 votes vote down vote up
@ProjectCustomizer.CompositeCategoryProvider.Registration(
    projectType = UiUtils.CUSTOMIZER_PATH,
    position = 100
)
public static CompositePanelProviderImpl createSources() {
    return new CompositePanelProviderImpl(SOURCES);
}
 
Example 2
Source File: CompositePanelProviderImpl.java    From netbeans with Apache License 2.0 5 votes vote down vote up
@ProjectCustomizer.CompositeCategoryProvider.Registration(
    projectType = UiUtils.CUSTOMIZER_PATH,
    position = 150
)
public static CompositePanelProviderImpl createRunConfig() {
    return new CompositePanelProviderImpl(RUN);
}
 
Example 3
Source File: CompositePanelProviderImpl.java    From netbeans with Apache License 2.0 5 votes vote down vote up
@ProjectCustomizer.CompositeCategoryProvider.Registration(
    projectType = UiUtils.CUSTOMIZER_PATH,
    position = 180
)
public static CompositePanelProviderImpl createBrowser() {
    return new CompositePanelProviderImpl(BROWSER);
}
 
Example 4
Source File: CompositePanelProviderImpl.java    From netbeans with Apache License 2.0 5 votes vote down vote up
@ProjectCustomizer.CompositeCategoryProvider.Registration(
    projectType = UiUtils.CUSTOMIZER_PATH,
    position = 195
)
public static ProjectCustomizer.CompositeCategoryProvider createCssPreprocessors() {
    return CssPreprocessorsUI.getDefault().createCustomizer();
}
 
Example 5
Source File: CompositePanelProviderImpl.java    From netbeans with Apache License 2.0 5 votes vote down vote up
@ProjectCustomizer.CompositeCategoryProvider.Registration(
    projectType = UiUtils.CUSTOMIZER_PATH,
    position = 200
)
public static CompositePanelProviderImpl createPhpIncludePath() {
    return new CompositePanelProviderImpl(PHP_INCLUDE_PATH);
}
 
Example 6
Source File: CompositePanelProviderImpl.java    From netbeans with Apache License 2.0 5 votes vote down vote up
@ProjectCustomizer.CompositeCategoryProvider.Registration(
    projectType = UiUtils.CUSTOMIZER_PATH,
    position = 250
)
public static CompositePanelProviderImpl createIgnorePath() {
    return new CompositePanelProviderImpl(IGNORE_PATH);
}
 
Example 7
Source File: CompositePanelProviderImpl.java    From netbeans with Apache License 2.0 5 votes vote down vote up
@ProjectCustomizer.CompositeCategoryProvider.Registration(
    projectType = UiUtils.CUSTOMIZER_PATH,
    position = 300
)
public static CompositePanelProviderImpl createFrameworks() {
    return new CompositePanelProviderImpl(FRAMEWORKS);
}
 
Example 8
Source File: CompositePanelProviderImpl.java    From netbeans with Apache License 2.0 5 votes vote down vote up
@ProjectCustomizer.CompositeCategoryProvider.Registration(
    projectType = UiUtils.CUSTOMIZER_PATH,
    position = 350
)
public static CompositePanelProviderImpl createTesting() {
    return new CompositePanelProviderImpl(TESTING);
}
 
Example 9
Source File: CompositePanelProviderImpl.java    From netbeans with Apache License 2.0 5 votes vote down vote up
@ProjectCustomizer.CompositeCategoryProvider.Registration(
        projectType = UiUtils.CUSTOMIZER_PATH,
    position = 352
)
public static CompositePanelProviderImpl createSeleniumTesting() {
    return new CompositePanelProviderImpl(TESTING_SELENIUM);
}
 
Example 10
Source File: CompositePanelProviderImpl.java    From netbeans with Apache License 2.0 5 votes vote down vote up
@ProjectCustomizer.CompositeCategoryProvider.Registration(
    projectType = UiUtils.CUSTOMIZER_PATH,
    position = 900
)
public static CompositePanelProviderImpl createLicense() {
    return new CompositePanelProviderImpl(LICENSE);
}
 
Example 11
Source File: CompositePanelProviderImpl.java    From netbeans with Apache License 2.0 5 votes vote down vote up
@ProjectCustomizer.CompositeCategoryProvider.Registration(
    projectType = UiUtils.CUSTOMIZER_PATH,
    position = 1000
)
public static ProjectCustomizer.CompositeCategoryProvider createFormatting() {
    return Customizers.createFormattingCategoryProvider(Collections.singletonMap(
            "allowedMimeTypes", FileUtils.PHP_MIME_TYPE + ",text/html,text/css,text/javascript,text/x-json")); // NOI18N
}
 
Example 12
Source File: CompositePanelProviderImpl.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@ProjectCustomizer.CompositeCategoryProvider.Registration(
        projectType = UiUtils.CUSTOMIZER_PATH,
        position = 351)
public static ProjectCustomizer.CompositeCategoryProvider createJsTesting() {
    return JsTestingProviders.getDefault().createCustomizer();
}
 
Example 13
Source File: CompositePanelProviderImpl.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@ProjectCustomizer.CompositeCategoryProvider.Registration(
        projectType = UiUtils.CUSTOMIZER_PATH,
        position = 360)
public static ProjectCustomizer.CompositeCategoryProvider createPhpDocumentation() {
    return PhpDocumentations.createCustomizer();
}
 
Example 14
Source File: CompositePanelProviderImpl.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@ProjectCustomizer.CompositeCategoryProvider.Registration(
        projectType = UiUtils.CUSTOMIZER_PATH,
        position = 370)
public static ProjectCustomizer.CompositeCategoryProvider createAnnotations() {
    return new CompositePanelProviderImpl(ANNOTATIONS);
}