Browse Source

License police on documentation files:

(1) Make sure all years in which a file has been modified are
listed.

(2) Make sure the format is consistent, i.e. separate consecutive
years with a dash, not a comma.

Also: the initial checkin into this CVS module was in 2000, not 1999.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270657 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 23 years ago
parent
commit
3fddc0bcfd
55 changed files with 56 additions and 56 deletions
  1. +1
    -1
      LICENSE
  2. +1
    -1
      build.xml
  3. +1
    -1
      docs/antnews.html
  4. +1
    -1
      docs/external.html
  5. +1
    -1
      docs/faq.html
  6. +1
    -1
      docs/index.html
  7. +1
    -1
      docs/logos.html
  8. +1
    -1
      docs/manual/LICENSE
  9. +1
    -1
      docs/problems.html
  10. +1
    -1
      docs/resources.html
  11. +1
    -1
      src/etc/log.xsl
  12. +1
    -1
      src/main/org/apache/tools/ant/AntClassLoader.java
  13. +1
    -1
      src/main/org/apache/tools/ant/BuildEvent.java
  14. +1
    -1
      src/main/org/apache/tools/ant/BuildException.java
  15. +1
    -1
      src/main/org/apache/tools/ant/BuildListener.java
  16. +1
    -1
      src/main/org/apache/tools/ant/BuildLogger.java
  17. +1
    -1
      src/main/org/apache/tools/ant/DefaultLogger.java
  18. +1
    -1
      src/main/org/apache/tools/ant/DemuxOutputStream.java
  19. +1
    -1
      src/main/org/apache/tools/ant/DirectoryScanner.java
  20. +1
    -1
      src/main/org/apache/tools/ant/FileScanner.java
  21. +1
    -1
      src/main/org/apache/tools/ant/IntrospectionHelper.java
  22. +1
    -1
      src/main/org/apache/tools/ant/Location.java
  23. +1
    -1
      src/main/org/apache/tools/ant/Main.java
  24. +1
    -1
      src/main/org/apache/tools/ant/NoBannerLogger.java
  25. +2
    -2
      src/main/org/apache/tools/ant/PathTokenizer.java
  26. +1
    -1
      src/main/org/apache/tools/ant/Project.java
  27. +1
    -1
      src/main/org/apache/tools/ant/ProjectHelper.java
  28. +1
    -1
      src/main/org/apache/tools/ant/RuntimeConfigurable.java
  29. +1
    -1
      src/main/org/apache/tools/ant/Target.java
  30. +1
    -1
      src/main/org/apache/tools/ant/Task.java
  31. +1
    -1
      src/main/org/apache/tools/ant/TaskAdapter.java
  32. +1
    -1
      src/main/org/apache/tools/ant/UnknownElement.java
  33. +1
    -1
      src/main/org/apache/tools/ant/XmlLogger.java
  34. +1
    -1
      src/main/org/apache/tools/ant/types/Commandline.java
  35. +1
    -1
      src/main/org/apache/tools/ant/types/CommandlineJava.java
  36. +1
    -1
      src/main/org/apache/tools/ant/types/DataType.java
  37. +1
    -1
      src/main/org/apache/tools/ant/types/Description.java
  38. +1
    -1
      src/main/org/apache/tools/ant/types/EnumeratedAttribute.java
  39. +1
    -1
      src/main/org/apache/tools/ant/types/FileSet.java
  40. +1
    -1
      src/main/org/apache/tools/ant/types/FilterSet.java
  41. +1
    -1
      src/main/org/apache/tools/ant/types/FilterSetCollection.java
  42. +1
    -1
      src/main/org/apache/tools/ant/types/Mapper.java
  43. +1
    -1
      src/main/org/apache/tools/ant/types/Path.java
  44. +1
    -1
      src/main/org/apache/tools/ant/types/PatternSet.java
  45. +1
    -1
      src/main/org/apache/tools/ant/types/Reference.java
  46. +1
    -1
      src/main/org/apache/tools/ant/types/ZipFileSet.java
  47. +1
    -1
      src/main/org/apache/tools/ant/types/ZipScanner.java
  48. +1
    -1
      src/main/org/apache/tools/ant/util/DOMElementWriter.java
  49. +1
    -1
      src/main/org/apache/tools/ant/util/PackageNameMapper.java
  50. +1
    -1
      src/main/org/apache/tools/ant/util/SourceFileScanner.java
  51. +1
    -1
      src/main/org/apache/tools/ant/util/regexp/JakartaOroMatcher.java
  52. +1
    -1
      src/main/org/apache/tools/ant/util/regexp/JakartaRegexpMatcher.java
  53. +1
    -1
      src/main/org/apache/tools/ant/util/regexp/RegexpMatcher.java
  54. +1
    -1
      src/main/org/apache/tools/ant/util/regexp/RegexpMatcherFactory.java
  55. +1
    -1
      xdocs/stylesheets/templates.vm

+ 1
- 1
LICENSE View File

@@ -3,7 +3,7 @@
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* ============================================================================ * ============================================================================
* *
* Copyright (C) 1999-2002 The Apache Software Foundation. All
* Copyright (C) 2000-2002 The Apache Software Foundation. All
* rights reserved. * rights reserved.
* *
* Redistribution and use in source and binary forms, with or without modifica- * Redistribution and use in source and binary forms, with or without modifica-


+ 1
- 1
build.xml View File

@@ -772,7 +772,7 @@
<group title="Core Tasks" packages="org.apache.tools.ant.taskdefs*" /> <group title="Core Tasks" packages="org.apache.tools.ant.taskdefs*" />
<group title="Optional Tasks" packages="org.apache.tools.ant.taskdefs.optional*" /> <group title="Optional Tasks" packages="org.apache.tools.ant.taskdefs.optional*" />


<bottom>Copyright &#169; 1999-${year} Apache Software Foundation. All Rights Reserved.</bottom>
<bottom>Copyright &#169; 2000-${year} Apache Software Foundation. All Rights Reserved.</bottom>
</javadoc> </javadoc>
</target> </target>




+ 1
- 1
docs/antnews.html View File

@@ -261,7 +261,7 @@
</td></tr> </td></tr>
<tr><td colspan="2"> <tr><td colspan="2">
<div align="center"><font color="#525D76" size="-1"><em> <div align="center"><font color="#525D76" size="-1"><em>
Copyright &#169; 1999-2002, Apache Software Foundation
Copyright &#169; 2000-2002, Apache Software Foundation
</em></font></div> </em></font></div>
</td></tr> </td></tr>
</table> </table>


+ 1
- 1
docs/external.html View File

@@ -2136,7 +2136,7 @@
</td></tr> </td></tr>
<tr><td colspan="2"> <tr><td colspan="2">
<div align="center"><font color="#525D76" size="-1"><em> <div align="center"><font color="#525D76" size="-1"><em>
Copyright &#169; 1999-2002, Apache Software Foundation
Copyright &#169; 2000-2002, Apache Software Foundation
</em></font></div> </em></font></div>
</td></tr> </td></tr>
</table> </table>


+ 1
- 1
docs/faq.html View File

@@ -1727,7 +1727,7 @@ mv /tmp/foo $ANT_HOME/bin/antRun
</td></tr> </td></tr>
<tr><td colspan="2"> <tr><td colspan="2">
<div align="center"><font color="#525D76" size="-1"><em> <div align="center"><font color="#525D76" size="-1"><em>
Copyright &#169; 1999-2002, Apache Software Foundation
Copyright &#169; 2000-2002, Apache Software Foundation
</em></font></div> </em></font></div>
</td></tr> </td></tr>
</table> </table>


+ 1
- 1
docs/index.html View File

@@ -247,7 +247,7 @@ Comprehensive documentation is included in the source and binary distributions.
</td></tr> </td></tr>
<tr><td colspan="2"> <tr><td colspan="2">
<div align="center"><font color="#525D76" size="-1"><em> <div align="center"><font color="#525D76" size="-1"><em>
Copyright &#169; 1999-2002, Apache Software Foundation
Copyright &#169; 2000-2002, Apache Software Foundation
</em></font></div> </em></font></div>
</td></tr> </td></tr>
</table> </table>


+ 1
- 1
docs/logos.html View File

@@ -1332,7 +1332,7 @@
</td></tr> </td></tr>
<tr><td colspan="2"> <tr><td colspan="2">
<div align="center"><font color="#525D76" size="-1"><em> <div align="center"><font color="#525D76" size="-1"><em>
Copyright &#169; 1999-2002, Apache Software Foundation
Copyright &#169; 2000-2002, Apache Software Foundation
</em></font></div> </em></font></div>
</td></tr> </td></tr>
</table> </table>


+ 1
- 1
docs/manual/LICENSE View File

@@ -3,7 +3,7 @@
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* ============================================================================ * ============================================================================
* *
* Copyright (C) 1999-2002 The Apache Software Foundation. All
* Copyright (C) 2000-2002 The Apache Software Foundation. All
* rights reserved. * rights reserved.
* *
* Redistribution and use in source and binary forms, with or without modifica- * Redistribution and use in source and binary forms, with or without modifica-


+ 1
- 1
docs/problems.html View File

@@ -357,7 +357,7 @@ check_for_optional_packages:
</td></tr> </td></tr>
<tr><td colspan="2"> <tr><td colspan="2">
<div align="center"><font color="#525D76" size="-1"><em> <div align="center"><font color="#525D76" size="-1"><em>
Copyright &#169; 1999-2002, Apache Software Foundation
Copyright &#169; 2000-2002, Apache Software Foundation
</em></font></div> </em></font></div>
</td></tr> </td></tr>
</table> </table>


+ 1
- 1
docs/resources.html View File

@@ -904,7 +904,7 @@
</td></tr> </td></tr>
<tr><td colspan="2"> <tr><td colspan="2">
<div align="center"><font color="#525D76" size="-1"><em> <div align="center"><font color="#525D76" size="-1"><em>
Copyright &#169; 1999-2002, Apache Software Foundation
Copyright &#169; 2000-2002, Apache Software Foundation
</em></font></div> </em></font></div>
</td></tr> </td></tr>
</table> </table>


+ 1
- 1
src/etc/log.xsl View File

@@ -165,7 +165,7 @@
<tr><td><hr noshade="yes" size="1"/></td></tr> <tr><td><hr noshade="yes" size="1"/></td></tr>
<tr><td> <tr><td>
<div align="center"><font color="#525D76" size="-1"><em> <div align="center"><font color="#525D76" size="-1"><em>
Copyright &#169; 1999-2002, Apache Software Foundation
Copyright &#169; 2000-2002, Apache Software Foundation
</em></font></div> </em></font></div>
</td></tr> </td></tr>
</table> </table>


+ 1
- 1
src/main/org/apache/tools/ant/AntClassLoader.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/BuildEvent.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2000 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/BuildException.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/BuildListener.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2000 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/BuildLogger.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/DefaultLogger.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/DemuxOutputStream.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/DirectoryScanner.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/FileScanner.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/IntrospectionHelper.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/Location.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2000 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/Main.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999, 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/NoBannerLogger.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 2
- 2
src/main/org/apache/tools/ant/PathTokenizer.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2000 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@@ -127,4 +127,4 @@ public class PathTokenizer {
return token; return token;
} }
} }

+ 1
- 1
src/main/org/apache/tools/ant/Project.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/ProjectHelper.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999, 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/RuntimeConfigurable.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/Target.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999, 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/Task.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/TaskAdapter.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/UnknownElement.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/XmlLogger.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/types/Commandline.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/types/CommandlineJava.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/types/DataType.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/types/Description.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/types/EnumeratedAttribute.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/types/FileSet.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/types/FilterSet.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/types/FilterSetCollection.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/types/Mapper.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/types/Path.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/types/PatternSet.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/types/Reference.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/types/ZipFileSet.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/types/ZipScanner.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 1999 The Apache Software Foundation. All rights
* Copyright (c) 2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/DOMElementWriter.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/PackageNameMapper.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/SourceFileScanner.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/regexp/JakartaOroMatcher.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/regexp/JakartaRegexpMatcher.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/regexp/RegexpMatcher.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/regexp/RegexpMatcherFactory.java View File

@@ -1,7 +1,7 @@
/* /*
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without


+ 1
- 1
xdocs/stylesheets/templates.vm View File

@@ -187,7 +187,7 @@
</td></tr> </td></tr>
<tr><td colspan="2"> <tr><td colspan="2">
<div align="center"><font color="$bodylink" size="-1"><em> <div align="center"><font color="$bodylink" size="-1"><em>
Copyright &#169; 1999-2002, Apache Software Foundation
Copyright &#169; 2000-2002, Apache Software Foundation
</em></font></div> </em></font></div>
</td></tr> </td></tr>
</table> </table>


Loading…
Cancel
Save