peterreilly 2005/01/28 05:38:20
Modified: src/main/org/apache/tools/ant/types DirSet.java
Log:
javadoc
Revision Changes Path
1.14 +9 -1 ant/src/main/org/apache/tools/ant/types/DirSet.java
Index: DirSet.java
===================================================================
RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/types/DirSet.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- DirSet.java 9 Feb 2004 21:05:36 -0000 1.13
+++ DirSet.java 28 Jan 2005 13:38:20 -0000 1.14
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2004 The Apache Software Foundation
+ * Copyright 2002-2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -25,10 +25,17 @@
*/
public class DirSet extends AbstractFileSet {
+ /**
+ * Constructor for DirSet.
+ */
public DirSet() {
super();
}
+ /**
+ * Constructor for DirSet, with DirSet to shallowly clone.
+ * @param dirset the dirset to clone.
+ */
protected DirSet(DirSet dirset) {
super(dirset);
}
@@ -36,6 +43,7 @@
/**
* Return a DirSet that has the same basedir and same patternsets
* as this one.
+ * @return the cloned dirset.
*/
public Object clone() {
if (isReference()) {
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org
|