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

The following examples show how to use org.netbeans.modules.php.api.util.UiUtils#FRAMEWORKS_AND_TOOLS_OPTIONS_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: ZendScript.java    From netbeans with Apache License 2.0 4 votes vote down vote up
/**
 * @return full IDE options Zend path
 */
public static String getOptionsPath() {
    return UiUtils.FRAMEWORKS_AND_TOOLS_OPTIONS_PATH + "/" + getOptionsSubPath(); // NOI18N
}
 
Example 2
Source File: SymfonyScript.java    From netbeans with Apache License 2.0 4 votes vote down vote up
/**
 * @return full IDE options Symfony path
 */
public static String getOptionsPath() {
    return UiUtils.FRAMEWORKS_AND_TOOLS_OPTIONS_PATH + "/" + getOptionsSubPath(); // NOI18N
}
 
Example 3
Source File: Cake3Script.java    From cakephp3-netbeans with Apache License 2.0 4 votes vote down vote up
private static String getOptionsPath() {
    return UiUtils.FRAMEWORKS_AND_TOOLS_OPTIONS_PATH;
}
 
Example 4
Source File: CakePHP3FrameworkCommandSupport.java    From cakephp3-netbeans with Apache License 2.0 4 votes vote down vote up
@Override
protected String getOptionsPath() {
    return UiUtils.FRAMEWORKS_AND_TOOLS_OPTIONS_PATH;
}