peterreilly 2005/03/14 08:49:55 Modified: src/main/org/apache/tools/ant/types FilterSetCollection.java Log: javadoc Revision Changes Path 1.16 +13 -1 ant/src/main/org/apache/tools/ant/types/FilterSetCollection.java Index: FilterSetCollection.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/types/FilterSetCollection.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- FilterSetCollection.java 9 Mar 2004 16:48:41 -0000 1.15 +++ FilterSetCollection.java 14 Mar 2005 16:49:55 -0000 1.16 @@ -1,5 +1,5 @@ /* - * Copyright 2001-2002,2004 The Apache Software Foundation + * Copyright 2001-2002,2004-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. @@ -39,14 +39,26 @@ private Vector filterSets = new Vector(); + /** + * Constructor for a FilterSetCollection. + */ public FilterSetCollection() { } + /** + * Constructor for a FilterSetCollection. + * @param filterSet a filterset to start the collection with + */ public FilterSetCollection(FilterSet filterSet) { addFilterSet(filterSet); } + /** + * Add a filterset to the collection. + * + * @param filterSet a <code>FilterSet</code> value + */ public void addFilterSet(FilterSet filterSet) { filterSets.addElement(filterSet); }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]