Package | Description |
---|---|
org.netbeans.spi.project.support.ant |
Principal package for implementing typical Ant-based projects.
|
Modifier and Type | Class and Description |
---|---|
class |
FilterPropertyProvider
Property provider that delegates to another source.
|
Modifier and Type | Method and Description |
---|---|
static PropertyProvider |
PropertyUtils.fixedPropertyProvider(Map<String,String> defs)
Create a trivial property producer using only a fixed list of property definitions.
|
PropertyProvider |
AntProjectHelper.getProjectLibrariesPropertyProvider()
Creates a property provider which can load definitions of project libraries.
|
PropertyProvider |
AntProjectHelper.getPropertyProvider(String path)
Get a property provider that works with loadable project properties.
|
PropertyProvider |
AntProjectHelper.getStockPropertyPreprovider()
Get a property provider which defines
basedir according to
the project directory and also copies all system properties in the current VM. |
static PropertyProvider |
PropertyUtils.globalPropertyProvider()
Create a property evaluator based on
PropertyUtils.getGlobalProperties()
and PropertyUtils.putGlobalProperties(org.netbeans.spi.project.support.ant.EditableProperties) . |
static PropertyProvider |
PropertyUtils.propertiesFilePropertyProvider(File propertiesFile)
Create a property provider based on a properties file.
|
static PropertyProvider |
PropertyUtils.userPropertiesProvider(PropertyEvaluator findUserPropertiesFile,
String propertyName,
File basedir)
Creates a property provider similar to
PropertyUtils.globalPropertyProvider()
but which can use a different global properties file. |
Modifier and Type | Method and Description |
---|---|
static PropertyEvaluator |
PropertyUtils.sequentialPropertyEvaluator(PropertyProvider preprovider,
PropertyProvider... providers)
Create a property evaluator based on a series of definitions.
|
static PropertyEvaluator |
PropertyUtils.sequentialPropertyEvaluator(PropertyProvider preprovider,
PropertyProvider... providers)
Create a property evaluator based on a series of definitions.
|
protected void |
FilterPropertyProvider.setDelegate(PropertyProvider delegate)
Change the current delegate (firing changes as well).
|
Constructor and Description |
---|
FilterPropertyProvider(PropertyProvider delegate)
Initialize the proxy.
|