Subversion Repositories bacoAlunos

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1777 jmachado 1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<!--NewPage-->
3
<HTML>
4
<HEAD>
5
<!-- Generated by javadoc (build 1.5.0_09) on Thu Nov 02 11:46:43 EST 2006 -->
6
<TITLE>
7
Variable (Ant Contrib)
8
</TITLE>
9
 
10
<META NAME="keywords" CONTENT="net.sf.antcontrib.property.Variable class">
11
 
12
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
13
 
14
<SCRIPT type="text/javascript">
15
function windowTitle()
16
{
17
    parent.document.title="Variable (Ant Contrib)";
18
}
19
</SCRIPT>
20
<NOSCRIPT>
21
</NOSCRIPT>
22
 
23
</HEAD>
24
 
25
<BODY BGCOLOR="white" onload="windowTitle();">
26
 
27
 
28
<!-- ========= START OF TOP NAVBAR ======= -->
29
<A NAME="navbar_top"><!-- --></A>
30
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
31
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
32
<TR>
33
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
34
<A NAME="navbar_top_firstrow"><!-- --></A>
35
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
36
  <TR ALIGN="center" VALIGN="top">
37
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
38
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
39
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
40
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
41
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
42
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
43
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
44
  </TR>
45
</TABLE>
46
</TD>
47
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
48
</EM>
49
</TD>
50
</TR>
51
 
52
<TR>
53
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
54
&nbsp;<A HREF="../../../../net/sf/antcontrib/property/URLEncodeTask.html" title="class in net.sf.antcontrib.property"><B>PREV CLASS</B></A>&nbsp;
55
&nbsp;NEXT CLASS</FONT></TD>
56
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
57
  <A HREF="../../../../index.html?net/sf/antcontrib/property/Variable.html" target="_top"><B>FRAMES</B></A>  &nbsp;
58
&nbsp;<A HREF="Variable.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
59
&nbsp;<SCRIPT type="text/javascript">
60
  <!--
61
  if(window==top) {
62
    document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
63
  }
64
  //-->
65
</SCRIPT>
66
<NOSCRIPT>
67
  <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
68
</NOSCRIPT>
69
 
70
 
71
</FONT></TD>
72
</TR>
73
<TR>
74
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
75
  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_org.apache.tools.ant.Task">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
76
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
77
DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
78
</TR>
79
</TABLE>
80
<A NAME="skip-navbar_top"></A>
81
<!-- ========= END OF TOP NAVBAR ========= -->
82
 
83
<HR>
84
<!-- ======== START OF CLASS DATA ======== -->
85
<H2>
86
<FONT SIZE="-1">
87
net.sf.antcontrib.property</FONT>
88
<BR>
89
Class Variable</H2>
90
<PRE>
91
java.lang.Object
92
  <IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">org.apache.tools.ant.ProjectComponent
93
      <IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">org.apache.tools.ant.Task
94
          <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>net.sf.antcontrib.property.Variable</B>
95
</PRE>
96
<HR>
97
<DL>
98
<DT><PRE>public class <B>Variable</B><DT>extends org.apache.tools.ant.Task</DL>
99
</PRE>
100
 
101
<P>
102
Similar to Property, but this property is mutable. In fact, much of the code
103
 in this class is copy and paste from Property. In general, the standard Ant
104
 property should be used, but occasionally it is useful to use a mutable
105
 property.
106
 <p>
107
 This used to be a nice little task that took advantage of what is probably
108
 a flaw in the Ant Project API -- setting a "user" property programatically
109
 causes the project to overwrite a previously set property. Now this task
110
 has become more violent and employs a technique known as "object rape" to
111
 directly access the Project's private property hashtable.
112
 <p>Developed for use with Antelope, migrated to ant-contrib Oct 2003.
113
<P>
114
 
115
<P>
116
<DL>
117
<DT><B>Since:</B></DT>
118
  <DD>Ant 1.5</DD>
119
<DT><B>Version:</B></DT>
120
  <DD>$Revision: 1.6 $</DD>
121
<DT><B>Author:</B></DT>
122
  <DD>Dale Anson, danson@germane-software.com</DD>
123
</DL>
124
<HR>
125
 
126
<P>
127
<!-- =========== FIELD SUMMARY =========== -->
128
 
129
<A NAME="field_summary"><!-- --></A>
130
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
131
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
132
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
133
<B>Field Summary</B></FONT></TH>
134
</TR>
135
</TABLE>
136
&nbsp;<A NAME="fields_inherited_from_class_org.apache.tools.ant.Task"><!-- --></A>
137
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
138
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
139
<TH ALIGN="left"><B>Fields inherited from class org.apache.tools.ant.Task</B></TH>
140
</TR>
141
<TR BGCOLOR="white" CLASS="TableRowColor">
142
<TD><CODE>description, location, target, taskName, taskType, wrapper</CODE></TD>
143
</TR>
144
</TABLE>
145
&nbsp;<A NAME="fields_inherited_from_class_org.apache.tools.ant.ProjectComponent"><!-- --></A>
146
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
147
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
148
<TH ALIGN="left"><B>Fields inherited from class org.apache.tools.ant.ProjectComponent</B></TH>
149
</TR>
150
<TR BGCOLOR="white" CLASS="TableRowColor">
151
<TD><CODE>project</CODE></TD>
152
</TR>
153
</TABLE>
154
&nbsp;
155
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
156
 
157
<A NAME="constructor_summary"><!-- --></A>
158
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
159
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
160
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
161
<B>Constructor Summary</B></FONT></TH>
162
</TR>
163
<TR BGCOLOR="white" CLASS="TableRowColor">
164
<TD><CODE><B><A HREF="../../../../net/sf/antcontrib/property/Variable.html#Variable()">Variable</A></B>()</CODE>
165
 
166
<BR>
167
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
168
</TR>
169
</TABLE>
170
&nbsp;
171
<!-- ========== METHOD SUMMARY =========== -->
172
 
173
<A NAME="method_summary"><!-- --></A>
174
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
175
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
176
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
177
<B>Method Summary</B></FONT></TH>
178
</TR>
179
<TR BGCOLOR="white" CLASS="TableRowColor">
180
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
181
<CODE>protected &nbsp;void</CODE></FONT></TD>
182
<TD><CODE><B><A HREF="../../../../net/sf/antcontrib/property/Variable.html#addProperties(java.util.Properties)">addProperties</A></B>(java.util.Properties&nbsp;props)</CODE>
183
 
184
<BR>
185
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;iterate through a set of properties, resolve them, then assign them</TD>
186
</TR>
187
<TR BGCOLOR="white" CLASS="TableRowColor">
188
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
189
<CODE>&nbsp;void</CODE></FONT></TD>
190
<TD><CODE><B><A HREF="../../../../net/sf/antcontrib/property/Variable.html#execute()">execute</A></B>()</CODE>
191
 
192
<BR>
193
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Execute this task.</TD>
194
</TR>
195
<TR BGCOLOR="white" CLASS="TableRowColor">
196
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
197
<CODE>&nbsp;void</CODE></FONT></TD>
198
<TD><CODE><B><A HREF="../../../../net/sf/antcontrib/property/Variable.html#setFile(java.io.File)">setFile</A></B>(java.io.File&nbsp;file)</CODE>
199
 
200
<BR>
201
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the name of a file to read properties from.</TD>
202
</TR>
203
<TR BGCOLOR="white" CLASS="TableRowColor">
204
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
205
<CODE>&nbsp;void</CODE></FONT></TD>
206
<TD><CODE><B><A HREF="../../../../net/sf/antcontrib/property/Variable.html#setName(java.lang.String)">setName</A></B>(java.lang.String&nbsp;name)</CODE>
207
 
208
<BR>
209
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the name of the property.</TD>
210
</TR>
211
<TR BGCOLOR="white" CLASS="TableRowColor">
212
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
213
<CODE>&nbsp;void</CODE></FONT></TD>
214
<TD><CODE><B><A HREF="../../../../net/sf/antcontrib/property/Variable.html#setUnset(boolean)">setUnset</A></B>(boolean&nbsp;b)</CODE>
215
 
216
<BR>
217
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Determines whether the property should be removed from the project.</TD>
218
</TR>
219
<TR BGCOLOR="white" CLASS="TableRowColor">
220
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
221
<CODE>&nbsp;void</CODE></FONT></TD>
222
<TD><CODE><B><A HREF="../../../../net/sf/antcontrib/property/Variable.html#setValue(java.lang.String)">setValue</A></B>(java.lang.String&nbsp;value)</CODE>
223
 
224
<BR>
225
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set the value of the property.</TD>
226
</TR>
227
</TABLE>
228
&nbsp;<A NAME="methods_inherited_from_class_org.apache.tools.ant.Task"><!-- --></A>
229
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
230
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
231
<TH ALIGN="left"><B>Methods inherited from class org.apache.tools.ant.Task</B></TH>
232
</TR>
233
<TR BGCOLOR="white" CLASS="TableRowColor">
234
<TD><CODE>getDescription, getLocation, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, maybeConfigure, perform, reconfigure, setDescription, setLocation, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType</CODE></TD>
235
</TR>
236
</TABLE>
237
&nbsp;<A NAME="methods_inherited_from_class_org.apache.tools.ant.ProjectComponent"><!-- --></A>
238
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
239
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
240
<TH ALIGN="left"><B>Methods inherited from class org.apache.tools.ant.ProjectComponent</B></TH>
241
</TR>
242
<TR BGCOLOR="white" CLASS="TableRowColor">
243
<TD><CODE>getProject, setProject</CODE></TD>
244
</TR>
245
</TABLE>
246
&nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
247
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
248
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
249
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
250
</TR>
251
<TR BGCOLOR="white" CLASS="TableRowColor">
252
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
253
</TR>
254
</TABLE>
255
&nbsp;
256
<P>
257
 
258
<!-- ========= CONSTRUCTOR DETAIL ======== -->
259
 
260
<A NAME="constructor_detail"><!-- --></A>
261
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
262
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
263
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
264
<B>Constructor Detail</B></FONT></TH>
265
</TR>
266
</TABLE>
267
 
268
<A NAME="Variable()"><!-- --></A><H3>
269
Variable</H3>
270
<PRE>
271
public <B>Variable</B>()</PRE>
272
<DL>
273
</DL>
274
 
275
<!-- ============ METHOD DETAIL ========== -->
276
 
277
<A NAME="method_detail"><!-- --></A>
278
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
279
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
280
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
281
<B>Method Detail</B></FONT></TH>
282
</TR>
283
</TABLE>
284
 
285
<A NAME="setName(java.lang.String)"><!-- --></A><H3>
286
setName</H3>
287
<PRE>
288
public void <B>setName</B>(java.lang.String&nbsp;name)</PRE>
289
<DL>
290
<DD>Set the name of the property. Required unless 'file' is used.
291
<P>
292
<DD><DL>
293
<DT><B>Parameters:</B><DD><CODE>name</CODE> - the name of the property.</DL>
294
</DD>
295
</DL>
296
<HR>
297
 
298
<A NAME="setValue(java.lang.String)"><!-- --></A><H3>
299
setValue</H3>
300
<PRE>
301
public void <B>setValue</B>(java.lang.String&nbsp;value)</PRE>
302
<DL>
303
<DD>Set the value of the property. Optional, defaults to "".
304
<P>
305
<DD><DL>
306
<DT><B>Parameters:</B><DD><CODE>value</CODE> - the value of the property.</DL>
307
</DD>
308
</DL>
309
<HR>
310
 
311
<A NAME="setFile(java.io.File)"><!-- --></A><H3>
312
setFile</H3>
313
<PRE>
314
public void <B>setFile</B>(java.io.File&nbsp;file)</PRE>
315
<DL>
316
<DD>Set the name of a file to read properties from. Optional.
317
<P>
318
<DD><DL>
319
<DT><B>Parameters:</B><DD><CODE>file</CODE> - the file to read properties from.</DL>
320
</DD>
321
</DL>
322
<HR>
323
 
324
<A NAME="setUnset(boolean)"><!-- --></A><H3>
325
setUnset</H3>
326
<PRE>
327
public void <B>setUnset</B>(boolean&nbsp;b)</PRE>
328
<DL>
329
<DD>Determines whether the property should be removed from the project.
330
 Default is false. Once  removed, conditions that check for property
331
 existence will find this property does not exist.
332
<P>
333
<DD><DL>
334
<DT><B>Parameters:</B><DD><CODE>b</CODE> - set to true to remove the property from the project.</DL>
335
</DD>
336
</DL>
337
<HR>
338
 
339
<A NAME="execute()"><!-- --></A><H3>
340
execute</H3>
341
<PRE>
342
public void <B>execute</B>()
343
             throws org.apache.tools.ant.BuildException</PRE>
344
<DL>
345
<DD>Execute this task.
346
<P>
347
<DD><DL>
348
<DT><B>Overrides:</B><DD><CODE>execute</CODE> in class <CODE>org.apache.tools.ant.Task</CODE></DL>
349
</DD>
350
<DD><DL>
351
 
352
<DT><B>Throws:</B>
353
<DD><CODE>org.apache.tools.ant.BuildException</CODE> - Description of the Exception</DL>
354
</DD>
355
</DL>
356
<HR>
357
 
358
<A NAME="addProperties(java.util.Properties)"><!-- --></A><H3>
359
addProperties</H3>
360
<PRE>
361
protected void <B>addProperties</B>(java.util.Properties&nbsp;props)</PRE>
362
<DL>
363
<DD>iterate through a set of properties, resolve them, then assign them
364
<P>
365
<DD><DL>
366
<DT><B>Parameters:</B><DD><CODE>props</CODE> - The feature to be added to the Properties attribute</DL>
367
</DD>
368
</DL>
369
<!-- ========= END OF CLASS DATA ========= -->
370
<HR>
371
 
372
 
373
<!-- ======= START OF BOTTOM NAVBAR ====== -->
374
<A NAME="navbar_bottom"><!-- --></A>
375
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
376
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
377
<TR>
378
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
379
<A NAME="navbar_bottom_firstrow"><!-- --></A>
380
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
381
  <TR ALIGN="center" VALIGN="top">
382
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
383
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
384
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
385
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
386
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
387
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
388
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
389
  </TR>
390
</TABLE>
391
</TD>
392
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
393
</EM>
394
</TD>
395
</TR>
396
 
397
<TR>
398
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
399
&nbsp;<A HREF="../../../../net/sf/antcontrib/property/URLEncodeTask.html" title="class in net.sf.antcontrib.property"><B>PREV CLASS</B></A>&nbsp;
400
&nbsp;NEXT CLASS</FONT></TD>
401
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
402
  <A HREF="../../../../index.html?net/sf/antcontrib/property/Variable.html" target="_top"><B>FRAMES</B></A>  &nbsp;
403
&nbsp;<A HREF="Variable.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
404
&nbsp;<SCRIPT type="text/javascript">
405
  <!--
406
  if(window==top) {
407
    document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
408
  }
409
  //-->
410
</SCRIPT>
411
<NOSCRIPT>
412
  <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
413
</NOSCRIPT>
414
 
415
 
416
</FONT></TD>
417
</TR>
418
<TR>
419
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
420
  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_org.apache.tools.ant.Task">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
421
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
422
DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
423
</TR>
424
</TABLE>
425
<A NAME="skip-navbar_bottom"></A>
426
<!-- ======== END OF BOTTOM NAVBAR ======= -->
427
 
428
<HR>
429
 
430
</BODY>
431
</HTML>