| org.eclipse.pde.internal.build.tasks.IdReplaceTask
IdReplaceTask | public class IdReplaceTask extends Task (Code) | | Internal task.
This task aims at replacing the generic ids used into a feature.xml by another value, and also replace the feature version number if necessary.
since: 3.0 |
Method Summary | |
public void | execute() | public void | setFeatureFilePath(String path) | public void | setFeatureIds(String values) Set the values to use when replacing a generic value used in a feature reference
Note that all the featureIds that have a generic number into the feature.xml must
be liste in values. | public void | setPluginIds(String values) Set the values to use when replacing a generic value used in a plugin reference. | public void | setSelfVersion(String version) The value with which the current version of the feature will be replaced. |
execute | public void execute()(Code) | | |
setFeatureFilePath | public void setFeatureFilePath(String path)(Code) | | The location of a feature.xml file
Parameters: path - |
setFeatureIds | public void setFeatureIds(String values)(Code) | | Set the values to use when replacing a generic value used in a feature reference
Note that all the featureIds that have a generic number into the feature.xml must
be liste in values.
Parameters: values - |
setPluginIds | public void setPluginIds(String values)(Code) | | Set the values to use when replacing a generic value used in a plugin reference.
Note all the pluginIds that have a generic number into the feature.xml must be
listed in values.
Parameters: values - a comma separated list alternating pluginId and versionNumber.For example: org.eclipse.pde.build,2.1.0,org.eclipse.core.resources,1.2.0 |
setSelfVersion | public void setSelfVersion(String version)(Code) | | The value with which the current version of the feature will be replaced.
Parameters: version - |
|
|