| |
|
| org.apache.tools.ant.Task org.apache.tools.ant.taskdefs.MakeUrl
MakeUrl | public class MakeUrl extends Task (Code) | | This task takes file and turns them into a URL, which it then assigns
to a property. Use when for setting up RMI codebases.
nested filesets are supported; if present, these are turned into the
url with the given separator between them (default = " ").
|
ERROR_MISSING_FILE | final public static String ERROR_MISSING_FILE(Code) | | Missing file
|
ERROR_NO_FILES | final public static String ERROR_NO_FILES(Code) | | No files defined
|
ERROR_NO_PROPERTY | final public static String ERROR_NO_PROPERTY(Code) | | No property defined
|
addFileSet | public void addFileSet(FileSet fileset)(Code) | | a fileset of jar files to include in the URL, each
separated by the separator
Parameters: fileset - the fileset to be added. |
addPath | public void addPath(Path path)(Code) | | add a path to the URL. All elements in the path
will be converted to individual URL entries
Parameters: path - a path value. |
setFile | public void setFile(File file)(Code) | | the name of a file to be converted into a URL
Parameters: file - the file to be converted. |
setProperty | public void setProperty(String property)(Code) | | set the name of a property to fill with the URL
Parameters: property - the name of the property. |
setSeparator | public void setSeparator(String separator)(Code) | | set the separator for the multi-url option.
Parameters: separator - the separator to use. |
setValidate | public void setValidate(boolean validate)(Code) | | set this flag to trigger validation that every named file exists.
Optional: default=true
Parameters: validate - a boolean value. |
|
|
|