From b9421dc80af485591a9c50cc8921f912e0def11e Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:05:40 -0700 Subject: Removing sources to replace with download links instead. Change-Id: Ie28789a725051aec0d1b04dd291b7690a7898668 Signed-off-by: Ashlee Young --- .../apache-ant-1.9.6/manual/Tasks/tempfile.html | 229 --------------------- 1 file changed, 229 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Tasks/tempfile.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/tempfile.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/tempfile.html b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/tempfile.html deleted file mode 100644 index 1be00d07..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/tempfile.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - Tempfile Task - - - - - - - - - - - - - - - - - -
- - - -
- Tempfile Task -
This task sets a property to the name of a temporary file. -
- - - Apache Ant - -
-
- - - - - - - - - - -
 
- - - Description -
- - This task sets a property to the name of a temporary file. - Unlike java.io.File.createTempFile, - this task does not actually create the temporary file, but it does guarantee that the - file did not exist when the task was executed. - -

Examples: - -

<tempfile property="temp.file"/>
- - create a temporary file - -
<tempfile property="temp.file" suffix=".xml"/>
- - create a temporary file with the .xml suffix - -
<tempfile property="temp.file" destDir="build"/>
- - create a temporary file in the build subdirectory - -
- - - - - - - - - - - - -
 
- - - Parameters -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Attribute - - Description - - Type - - Requirement -
- property - - Sets the property you wish to assign the temporary file to. - - String - - Required -
- destdir - - Sets the destination directory. If not set, the basedir directory is used instead. - - File - - Optional -
- prefix - - Sets the optional prefix string for the temp file. - - String -
- suffix - - Sets the optional suffix string for the temp file. - - String -
- deleteonexit - - Whether the temp file will be marked for deletion on normal exit of the Java Virtual Machine (even though the file may never be created); default false. Since Apache Ant 1.7 - - boolean -
- createfile - - Whether the temp file should be created by this task; default false.Since Ant 1.8 - - boolean -
-
- - - - - - - - - - -
 
- - - Parameters as nested elements -
- -
- - - -
- - - -- cgit 1.2.3-korg