mirror of
https://github.com/apache/ant.git
synced 2025-05-18 22:14:47 +00:00
PR: 32631 git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277320 13f79535-47bb-0310-9956-ffa450edef68
57 lines
1.6 KiB
HTML
Executable File
57 lines
1.6 KiB
HTML
Executable File
<html>
|
|
|
|
<head>
|
|
<meta http-equiv="Content-Language" content="en-us">
|
|
<title>Clone Task</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h2>Clone</h2>
|
|
<h3>Description</h3>
|
|
<p>Clone a project reference (presumably for augmentation).</p>
|
|
<h3>Parameters</h3>
|
|
<table border="1" cellpadding="2" cellspacing="0">
|
|
<tr>
|
|
<td valign="top"><b>Attribute</b></td>
|
|
<td valign="top"><b>Description</b></td>
|
|
<td align="center" valign="top"><b>Required</b></td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top">cloneref</td>
|
|
<td valign="top">What to clone, given as a
|
|
<a href="../using.html#references">reference</a> to an
|
|
object with a publicly accessible clone() implementation.
|
|
</td>
|
|
<td valign="top" align="center">Yes</td>
|
|
</tr>
|
|
</table>
|
|
<p>
|
|
Assuming the clone operation is successful, the clone invocation supports
|
|
any attributes and nested elements supported by the cloned type
|
|
(the obvious exception is the "cloneref" attribute).
|
|
<b>Please note that modifications to cloned objects may yield
|
|
unpredictable results depending on the internals of the cloned class.</b>
|
|
</p>
|
|
<h3>Examples</h3>
|
|
<p>
|
|
Given a fileset <i>foo</i>:
|
|
<pre> <clone id="foo.txt" cloneref="foo">
|
|
<filename name="**/*.txt" />
|
|
</clone>
|
|
<clone id="foo.nontxt" cloneref="foo">
|
|
<filename name="**/*.txt" negate="true" />
|
|
</clone>
|
|
</pre>
|
|
Creates filesets <i>foo.txt</i> and <i>foo.nontxt</i>, which could be
|
|
put to such uses as filtering some files and not others when copying.
|
|
</p>
|
|
<hr>
|
|
|
|
<p align="center">Copyright © 2005 The Apache Software Foundation. All rights
|
|
Reserved.</p>
|
|
|
|
</body>
|
|
</html>
|
|
|