Merge

Thu, 08 Jan 2009 16:34:58 -0800

author
bpatel
date
Thu, 08 Jan 2009 16:34:58 -0800
changeset 183
dbe9e82f9d25
parent 182
47a62d8d98b4
parent 181
7a595d92e252
child 184
905e151a185a

Merge

test/com/sun/javadoc/AuthorDD/AuthorDD.java file | annotate | diff | comparison | revisions
     1.1 --- a/.hgtags	Thu Jan 08 16:26:59 2009 -0800
     1.2 +++ b/.hgtags	Thu Jan 08 16:34:58 2009 -0800
     1.3 @@ -16,3 +16,4 @@
     1.4  3fb51e47622bb771571680bc6a7b64c6172b482d jdk7-b39
     1.5  32e30988324601d08b87989f0821d99aa8534511 jdk7-b40
     1.6  ded6b40f558e8d19b3c17715b3d67ee001606645 jdk7-b41
     1.7 +5e5567c2db56a931cf07768218c20903d9828b5f jdk7-b42
     2.1 --- a/src/share/classes/com/sun/tools/doclets/formats/html/HtmlDoclet.java	Thu Jan 08 16:26:59 2009 -0800
     2.2 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/HtmlDoclet.java	Thu Jan 08 16:34:58 2009 -0800
     2.3 @@ -1,5 +1,5 @@
     2.4  /*
     2.5 - * Copyright 1997-2003 Sun Microsystems, Inc.  All Rights Reserved.
     2.6 + * Copyright 1997-2008 Sun Microsystems, Inc.  All Rights Reserved.
     2.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     2.8   *
     2.9   * This code is free software; you can redistribute it and/or modify it
     3.1 --- a/src/share/classes/com/sun/tools/doclets/formats/html/WriterFactoryImpl.java	Thu Jan 08 16:26:59 2009 -0800
     3.2 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/WriterFactoryImpl.java	Thu Jan 08 16:34:58 2009 -0800
     3.3 @@ -1,5 +1,5 @@
     3.4  /*
     3.5 - * Copyright 2003 Sun Microsystems, Inc.  All Rights Reserved.
     3.6 + * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
     3.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3.8   *
     3.9   * This code is free software; you can redistribute it and/or modify it
     4.1 --- a/src/share/classes/com/sun/tools/doclets/internal/toolkit/AbstractDoclet.java	Thu Jan 08 16:26:59 2009 -0800
     4.2 +++ b/src/share/classes/com/sun/tools/doclets/internal/toolkit/AbstractDoclet.java	Thu Jan 08 16:34:58 2009 -0800
     4.3 @@ -1,5 +1,5 @@
     4.4  /*
     4.5 - * Copyright 2003-2004 Sun Microsystems, Inc.  All Rights Reserved.
     4.6 + * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
     4.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4.8   *
     4.9   * This code is free software; you can redistribute it and/or modify it
     5.1 --- a/src/share/classes/com/sun/tools/javac/comp/Todo.java	Thu Jan 08 16:26:59 2009 -0800
     5.2 +++ b/src/share/classes/com/sun/tools/javac/comp/Todo.java	Thu Jan 08 16:34:58 2009 -0800
     5.3 @@ -1,5 +1,5 @@
     5.4  /*
     5.5 - * Copyright 2001-2005 Sun Microsystems, Inc.  All Rights Reserved.
     5.6 + * Copyright 2001-2008 Sun Microsystems, Inc.  All Rights Reserved.
     5.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     5.8   *
     5.9   * This code is free software; you can redistribute it and/or modify it
     6.1 --- a/src/share/classes/com/sun/tools/javac/tree/TreeScanner.java	Thu Jan 08 16:26:59 2009 -0800
     6.2 +++ b/src/share/classes/com/sun/tools/javac/tree/TreeScanner.java	Thu Jan 08 16:34:58 2009 -0800
     6.3 @@ -86,6 +86,7 @@
     6.4          scan(tree.typarams);
     6.5          scan(tree.params);
     6.6          scan(tree.thrown);
     6.7 +        scan(tree.defaultValue);
     6.8          scan(tree.body);
     6.9      }
    6.10  
     7.1 --- a/src/share/classes/com/sun/tools/javac/util/JavacMessages.java	Thu Jan 08 16:26:59 2009 -0800
     7.2 +++ b/src/share/classes/com/sun/tools/javac/util/JavacMessages.java	Thu Jan 08 16:34:58 2009 -0800
     7.3 @@ -1,5 +1,5 @@
     7.4  /*
     7.5 - * Copyright 2005 Sun Microsystems, Inc.  All Rights Reserved.
     7.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
     7.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     7.8   *
     7.9   * This code is free software; you can redistribute it and/or modify it
     8.1 --- a/src/share/classes/com/sun/tools/javac/util/LayoutCharacters.java	Thu Jan 08 16:26:59 2009 -0800
     8.2 +++ b/src/share/classes/com/sun/tools/javac/util/LayoutCharacters.java	Thu Jan 08 16:34:58 2009 -0800
     8.3 @@ -1,5 +1,5 @@
     8.4  /*
     8.5 - * Copyright 1999-2005 Sun Microsystems, Inc.  All Rights Reserved.
     8.6 + * Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
     8.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     8.8   *
     8.9   * This code is free software; you can redistribute it and/or modify it
     9.1 --- a/src/share/classes/com/sun/tools/javac/util/MandatoryWarningHandler.java	Thu Jan 08 16:26:59 2009 -0800
     9.2 +++ b/src/share/classes/com/sun/tools/javac/util/MandatoryWarningHandler.java	Thu Jan 08 16:34:58 2009 -0800
     9.3 @@ -1,5 +1,5 @@
     9.4  /*
     9.5 - * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
     9.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
     9.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     9.8   *
     9.9   * This code is free software; you can redistribute it and/or modify it
    10.1 --- a/src/share/classes/com/sun/tools/javadoc/JavadocTodo.java	Thu Jan 08 16:26:59 2009 -0800
    10.2 +++ b/src/share/classes/com/sun/tools/javadoc/JavadocTodo.java	Thu Jan 08 16:34:58 2009 -0800
    10.3 @@ -1,5 +1,5 @@
    10.4  /*
    10.5 - * Copyright 2003 Sun Microsystems, Inc.  All Rights Reserved.
    10.6 + * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
    10.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    10.8   *
    10.9   * This code is free software; you can redistribute it and/or modify it
    11.1 --- a/src/share/classes/com/sun/tools/javadoc/Main.java	Thu Jan 08 16:26:59 2009 -0800
    11.2 +++ b/src/share/classes/com/sun/tools/javadoc/Main.java	Thu Jan 08 16:34:58 2009 -0800
    11.3 @@ -1,5 +1,5 @@
    11.4  /*
    11.5 - * Copyright 2000-2006 Sun Microsystems, Inc.  All Rights Reserved.
    11.6 + * Copyright 2000-2008 Sun Microsystems, Inc.  All Rights Reserved.
    11.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    11.8   *
    11.9   * This code is free software; you can redistribute it and/or modify it
    12.1 --- a/src/share/classes/com/sun/tools/javadoc/Start.java	Thu Jan 08 16:26:59 2009 -0800
    12.2 +++ b/src/share/classes/com/sun/tools/javadoc/Start.java	Thu Jan 08 16:34:58 2009 -0800
    12.3 @@ -1,5 +1,5 @@
    12.4  /*
    12.5 - * Copyright 1997-2006 Sun Microsystems, Inc.  All Rights Reserved.
    12.6 + * Copyright 1997-2008 Sun Microsystems, Inc.  All Rights Reserved.
    12.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    12.8   *
    12.9   * This code is free software; you can redistribute it and/or modify it
    13.1 --- a/src/share/classes/javax/tools/FileObject.java	Thu Jan 08 16:26:59 2009 -0800
    13.2 +++ b/src/share/classes/javax/tools/FileObject.java	Thu Jan 08 16:34:58 2009 -0800
    13.3 @@ -1,5 +1,5 @@
    13.4  /*
    13.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
    13.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
    13.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    13.8   *
    13.9   * This code is free software; you can redistribute it and/or modify it
    14.1 --- a/test/com/sun/javadoc/AuthorDD/AuthorDD.java	Thu Jan 08 16:26:59 2009 -0800
    14.2 +++ b/test/com/sun/javadoc/AuthorDD/AuthorDD.java	Thu Jan 08 16:34:58 2009 -0800
    14.3 @@ -1,5 +1,5 @@
    14.4  /*
    14.5 - * Copyright 2002-2003 Sun Microsystems, Inc.  All Rights Reserved.
    14.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    14.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    14.8   *
    14.9   * This code is free software; you can redistribute it and/or modify it
    15.1 --- a/test/com/sun/javadoc/lib/JavadocTester.java	Thu Jan 08 16:26:59 2009 -0800
    15.2 +++ b/test/com/sun/javadoc/lib/JavadocTester.java	Thu Jan 08 16:34:58 2009 -0800
    15.3 @@ -1,5 +1,5 @@
    15.4  /*
    15.5 - * Copyright 2002-2004 Sun Microsystems, Inc.  All Rights Reserved.
    15.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    15.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    15.8   *
    15.9   * This code is free software; you can redistribute it and/or modify it
    16.1 --- a/test/com/sun/javadoc/testSupplementary/TestSupplementary.java	Thu Jan 08 16:26:59 2009 -0800
    16.2 +++ b/test/com/sun/javadoc/testSupplementary/TestSupplementary.java	Thu Jan 08 16:34:58 2009 -0800
    16.3 @@ -1,5 +1,5 @@
    16.4  /*
    16.5 - * Copyright 2003 Sun Microsystems, Inc.  All Rights Reserved.
    16.6 + * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
    16.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    16.8   *
    16.9   * This code is free software; you can redistribute it and/or modify it
    17.1 --- a/test/tools/apt/Basics/print.sh	Thu Jan 08 16:26:59 2009 -0800
    17.2 +++ b/test/tools/apt/Basics/print.sh	Thu Jan 08 16:34:58 2009 -0800
    17.3 @@ -1,7 +1,7 @@
    17.4  #!/bin/sh
    17.5  
    17.6  #
    17.7 -# Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    17.8 +# Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    17.9  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   17.10  #
   17.11  # This code is free software; you can redistribute it and/or modify it
    18.1 --- a/test/tools/apt/Compile/compile.sh	Thu Jan 08 16:26:59 2009 -0800
    18.2 +++ b/test/tools/apt/Compile/compile.sh	Thu Jan 08 16:34:58 2009 -0800
    18.3 @@ -1,7 +1,7 @@
    18.4  #!/bin/sh
    18.5  
    18.6  #
    18.7 -# Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    18.8 +# Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    18.9  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   18.10  #
   18.11  # This code is free software; you can redistribute it and/or modify it
    19.1 --- a/test/tools/apt/Discovery/discovery.sh	Thu Jan 08 16:26:59 2009 -0800
    19.2 +++ b/test/tools/apt/Discovery/discovery.sh	Thu Jan 08 16:34:58 2009 -0800
    19.3 @@ -1,7 +1,7 @@
    19.4  #!/bin/sh
    19.5  
    19.6  #
    19.7 -# Copyright 1999-2002 Sun Microsystems, Inc.  All Rights Reserved.
    19.8 +# Copyright 1999-2008 Sun Microsystems, Inc.  All Rights Reserved.
    19.9  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   19.10  #
   19.11  # This code is free software; you can redistribute it and/or modify it
    20.1 --- a/test/tools/apt/mirror/declaration/AnnoMirror.java	Thu Jan 08 16:26:59 2009 -0800
    20.2 +++ b/test/tools/apt/mirror/declaration/AnnoMirror.java	Thu Jan 08 16:34:58 2009 -0800
    20.3 @@ -1,5 +1,5 @@
    20.4  /*
    20.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    20.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    20.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    20.8   *
    20.9   * This code is free software; you can redistribute it and/or modify it
    21.1 --- a/test/tools/apt/mirror/declaration/AnnoTypeDecl.java	Thu Jan 08 16:26:59 2009 -0800
    21.2 +++ b/test/tools/apt/mirror/declaration/AnnoTypeDecl.java	Thu Jan 08 16:34:58 2009 -0800
    21.3 @@ -1,5 +1,5 @@
    21.4  /*
    21.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    21.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    21.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    21.8   *
    21.9   * This code is free software; you can redistribute it and/or modify it
    22.1 --- a/test/tools/apt/mirror/declaration/AnnoTypeElemDecl.java	Thu Jan 08 16:26:59 2009 -0800
    22.2 +++ b/test/tools/apt/mirror/declaration/AnnoTypeElemDecl.java	Thu Jan 08 16:34:58 2009 -0800
    22.3 @@ -1,5 +1,5 @@
    22.4  /*
    22.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    22.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    22.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    22.8   *
    22.9   * This code is free software; you can redistribute it and/or modify it
    23.1 --- a/test/tools/apt/mirror/declaration/AnnoVal.java	Thu Jan 08 16:26:59 2009 -0800
    23.2 +++ b/test/tools/apt/mirror/declaration/AnnoVal.java	Thu Jan 08 16:34:58 2009 -0800
    23.3 @@ -1,5 +1,5 @@
    23.4  /*
    23.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    23.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    23.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    23.8   *
    23.9   * This code is free software; you can redistribute it and/or modify it
    24.1 --- a/test/tools/apt/mirror/declaration/ClassDecl.java	Thu Jan 08 16:26:59 2009 -0800
    24.2 +++ b/test/tools/apt/mirror/declaration/ClassDecl.java	Thu Jan 08 16:34:58 2009 -0800
    24.3 @@ -1,5 +1,5 @@
    24.4  /*
    24.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    24.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    24.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    24.8   *
    24.9   * This code is free software; you can redistribute it and/or modify it
    25.1 --- a/test/tools/apt/mirror/declaration/ConstExpr.java	Thu Jan 08 16:26:59 2009 -0800
    25.2 +++ b/test/tools/apt/mirror/declaration/ConstExpr.java	Thu Jan 08 16:34:58 2009 -0800
    25.3 @@ -1,5 +1,5 @@
    25.4  /*
    25.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    25.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    25.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    25.8   *
    25.9   * This code is free software; you can redistribute it and/or modify it
    26.1 --- a/test/tools/apt/mirror/declaration/ConstructorDecl.java	Thu Jan 08 16:26:59 2009 -0800
    26.2 +++ b/test/tools/apt/mirror/declaration/ConstructorDecl.java	Thu Jan 08 16:34:58 2009 -0800
    26.3 @@ -1,5 +1,5 @@
    26.4  /*
    26.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    26.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    26.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    26.8   *
    26.9   * This code is free software; you can redistribute it and/or modify it
    27.1 --- a/test/tools/apt/mirror/declaration/EnumDecl.java	Thu Jan 08 16:26:59 2009 -0800
    27.2 +++ b/test/tools/apt/mirror/declaration/EnumDecl.java	Thu Jan 08 16:34:58 2009 -0800
    27.3 @@ -1,5 +1,5 @@
    27.4  /*
    27.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    27.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    27.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    27.8   *
    27.9   * This code is free software; you can redistribute it and/or modify it
    28.1 --- a/test/tools/apt/mirror/declaration/FieldDecl.java	Thu Jan 08 16:26:59 2009 -0800
    28.2 +++ b/test/tools/apt/mirror/declaration/FieldDecl.java	Thu Jan 08 16:34:58 2009 -0800
    28.3 @@ -1,5 +1,5 @@
    28.4  /*
    28.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    28.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    28.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    28.8   *
    28.9   * This code is free software; you can redistribute it and/or modify it
    29.1 --- a/test/tools/apt/mirror/declaration/GetAnno.java	Thu Jan 08 16:26:59 2009 -0800
    29.2 +++ b/test/tools/apt/mirror/declaration/GetAnno.java	Thu Jan 08 16:34:58 2009 -0800
    29.3 @@ -1,5 +1,5 @@
    29.4  /*
    29.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    29.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    29.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    29.8   *
    29.9   * This code is free software; you can redistribute it and/or modify it
    30.1 --- a/test/tools/apt/mirror/declaration/InterfaceDecl.java	Thu Jan 08 16:26:59 2009 -0800
    30.2 +++ b/test/tools/apt/mirror/declaration/InterfaceDecl.java	Thu Jan 08 16:34:58 2009 -0800
    30.3 @@ -1,5 +1,5 @@
    30.4  /*
    30.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    30.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    30.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    30.8   *
    30.9   * This code is free software; you can redistribute it and/or modify it
    31.1 --- a/test/tools/apt/mirror/declaration/MethodDecl.java	Thu Jan 08 16:26:59 2009 -0800
    31.2 +++ b/test/tools/apt/mirror/declaration/MethodDecl.java	Thu Jan 08 16:34:58 2009 -0800
    31.3 @@ -1,5 +1,5 @@
    31.4  /*
    31.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    31.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    31.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    31.8   *
    31.9   * This code is free software; you can redistribute it and/or modify it
    32.1 --- a/test/tools/apt/mirror/declaration/PackageDecl.java	Thu Jan 08 16:26:59 2009 -0800
    32.2 +++ b/test/tools/apt/mirror/declaration/PackageDecl.java	Thu Jan 08 16:34:58 2009 -0800
    32.3 @@ -1,5 +1,5 @@
    32.4  /*
    32.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    32.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    32.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    32.8   *
    32.9   * This code is free software; you can redistribute it and/or modify it
    33.1 --- a/test/tools/apt/mirror/declaration/ParameterDecl.java	Thu Jan 08 16:26:59 2009 -0800
    33.2 +++ b/test/tools/apt/mirror/declaration/ParameterDecl.java	Thu Jan 08 16:34:58 2009 -0800
    33.3 @@ -1,5 +1,5 @@
    33.4  /*
    33.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    33.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    33.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    33.8   *
    33.9   * This code is free software; you can redistribute it and/or modify it
    34.1 --- a/test/tools/apt/mirror/type/AnnoTyp.java	Thu Jan 08 16:26:59 2009 -0800
    34.2 +++ b/test/tools/apt/mirror/type/AnnoTyp.java	Thu Jan 08 16:34:58 2009 -0800
    34.3 @@ -1,5 +1,5 @@
    34.4  /*
    34.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    34.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    34.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    34.8   *
    34.9   * This code is free software; you can redistribute it and/or modify it
    35.1 --- a/test/tools/apt/mirror/type/ArrayTyp.java	Thu Jan 08 16:26:59 2009 -0800
    35.2 +++ b/test/tools/apt/mirror/type/ArrayTyp.java	Thu Jan 08 16:34:58 2009 -0800
    35.3 @@ -1,5 +1,5 @@
    35.4  /*
    35.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    35.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    35.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    35.8   *
    35.9   * This code is free software; you can redistribute it and/or modify it
    36.1 --- a/test/tools/apt/mirror/type/ClassTyp.java	Thu Jan 08 16:26:59 2009 -0800
    36.2 +++ b/test/tools/apt/mirror/type/ClassTyp.java	Thu Jan 08 16:34:58 2009 -0800
    36.3 @@ -1,5 +1,5 @@
    36.4  /*
    36.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    36.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    36.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    36.8   *
    36.9   * This code is free software; you can redistribute it and/or modify it
    37.1 --- a/test/tools/apt/mirror/type/EnumTyp.java	Thu Jan 08 16:26:59 2009 -0800
    37.2 +++ b/test/tools/apt/mirror/type/EnumTyp.java	Thu Jan 08 16:34:58 2009 -0800
    37.3 @@ -1,5 +1,5 @@
    37.4  /*
    37.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    37.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    37.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    37.8   *
    37.9   * This code is free software; you can redistribute it and/or modify it
    38.1 --- a/test/tools/apt/mirror/type/InterfaceTyp.java	Thu Jan 08 16:26:59 2009 -0800
    38.2 +++ b/test/tools/apt/mirror/type/InterfaceTyp.java	Thu Jan 08 16:34:58 2009 -0800
    38.3 @@ -1,5 +1,5 @@
    38.4  /*
    38.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    38.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    38.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    38.8   *
    38.9   * This code is free software; you can redistribute it and/or modify it
    39.1 --- a/test/tools/apt/mirror/type/PrimitiveTyp.java	Thu Jan 08 16:26:59 2009 -0800
    39.2 +++ b/test/tools/apt/mirror/type/PrimitiveTyp.java	Thu Jan 08 16:34:58 2009 -0800
    39.3 @@ -1,5 +1,5 @@
    39.4  /*
    39.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    39.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    39.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    39.8   *
    39.9   * This code is free software; you can redistribute it and/or modify it
    40.1 --- a/test/tools/apt/mirror/type/TypeVar.java	Thu Jan 08 16:26:59 2009 -0800
    40.2 +++ b/test/tools/apt/mirror/type/TypeVar.java	Thu Jan 08 16:34:58 2009 -0800
    40.3 @@ -1,5 +1,5 @@
    40.4  /*
    40.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    40.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    40.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    40.8   *
    40.9   * This code is free software; you can redistribute it and/or modify it
    41.1 --- a/test/tools/apt/mirror/type/WildcardTyp.java	Thu Jan 08 16:26:59 2009 -0800
    41.2 +++ b/test/tools/apt/mirror/type/WildcardTyp.java	Thu Jan 08 16:34:58 2009 -0800
    41.3 @@ -1,5 +1,5 @@
    41.4  /*
    41.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    41.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    41.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    41.8   *
    41.9   * This code is free software; you can redistribute it and/or modify it
    42.1 --- a/test/tools/apt/mirror/util/Overrides.java	Thu Jan 08 16:26:59 2009 -0800
    42.2 +++ b/test/tools/apt/mirror/util/Overrides.java	Thu Jan 08 16:34:58 2009 -0800
    42.3 @@ -1,5 +1,5 @@
    42.4  /*
    42.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    42.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    42.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    42.8   *
    42.9   * This code is free software; you can redistribute it and/or modify it
    43.1 --- a/test/tools/apt/mirror/util/TypeCreation.java	Thu Jan 08 16:26:59 2009 -0800
    43.2 +++ b/test/tools/apt/mirror/util/TypeCreation.java	Thu Jan 08 16:34:58 2009 -0800
    43.3 @@ -1,5 +1,5 @@
    43.4  /*
    43.5 - * Copyright 2004-2007 Sun Microsystems, Inc.  All Rights Reserved.
    43.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    43.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    43.8   *
    43.9   * This code is free software; you can redistribute it and/or modify it
    44.1 --- a/test/tools/javac/6457284/T6457284.java	Thu Jan 08 16:26:59 2009 -0800
    44.2 +++ b/test/tools/javac/6457284/T6457284.java	Thu Jan 08 16:34:58 2009 -0800
    44.3 @@ -1,5 +1,5 @@
    44.4  /*
    44.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
    44.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
    44.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    44.8   *
    44.9   * This code is free software; you can redistribute it and/or modify it
    45.1 --- a/test/tools/javac/links/T.java	Thu Jan 08 16:26:59 2009 -0800
    45.2 +++ b/test/tools/javac/links/T.java	Thu Jan 08 16:34:58 2009 -0800
    45.3 @@ -1,5 +1,5 @@
    45.4  /*
    45.5 - * Copyright 2001 Sun Microsystems, Inc.  All Rights Reserved.
    45.6 + * Copyright 2001-2008 Sun Microsystems, Inc.  All Rights Reserved.
    45.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    45.8   *
    45.9   * This code is free software; you can redistribute it and/or modify it
    46.1 --- a/test/tools/javac/links/links.sh	Thu Jan 08 16:26:59 2009 -0800
    46.2 +++ b/test/tools/javac/links/links.sh	Thu Jan 08 16:34:58 2009 -0800
    46.3 @@ -1,7 +1,7 @@
    46.4  #!/bin/sh
    46.5  
    46.6  #
    46.7 -# Copyright 2001-2002 Sun Microsystems, Inc.  All Rights Reserved.
    46.8 +# Copyright 2001-2008 Sun Microsystems, Inc.  All Rights Reserved.
    46.9  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   46.10  #
   46.11  # This code is free software; you can redistribute it and/or modify it
    47.1 --- a/test/tools/javac/policy/test1/A.java	Thu Jan 08 16:26:59 2009 -0800
    47.2 +++ b/test/tools/javac/policy/test1/A.java	Thu Jan 08 16:34:58 2009 -0800
    47.3 @@ -1,5 +1,5 @@
    47.4  /*
    47.5 - * Copyright 2005 Sun Microsystems, Inc.  All Rights Reserved.
    47.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
    47.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    47.8   *
    47.9   * This code is free software; you can redistribute it and/or modify it
    48.1 --- a/test/tools/javac/policy/test1/D.java	Thu Jan 08 16:26:59 2009 -0800
    48.2 +++ b/test/tools/javac/policy/test1/D.java	Thu Jan 08 16:34:58 2009 -0800
    48.3 @@ -1,5 +1,5 @@
    48.4  /*
    48.5 - * Copyright 2005 Sun Microsystems, Inc.  All Rights Reserved.
    48.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
    48.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    48.8   *
    48.9   * This code is free software; you can redistribute it and/or modify it
    49.1 --- a/test/tools/javac/policy/test1/Test1a.java	Thu Jan 08 16:26:59 2009 -0800
    49.2 +++ b/test/tools/javac/policy/test1/Test1a.java	Thu Jan 08 16:34:58 2009 -0800
    49.3 @@ -1,5 +1,5 @@
    49.4  /*
    49.5 - * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
    49.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
    49.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    49.8   *
    49.9   * This code is free software; you can redistribute it and/or modify it
    50.1 --- a/test/tools/javac/processing/6348193/T6348193.java	Thu Jan 08 16:26:59 2009 -0800
    50.2 +++ b/test/tools/javac/processing/6348193/T6348193.java	Thu Jan 08 16:34:58 2009 -0800
    50.3 @@ -1,5 +1,5 @@
    50.4  /*
    50.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
    50.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
    50.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    50.8   *
    50.9   * This code is free software; you can redistribute it and/or modify it
    51.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    51.2 +++ b/test/tools/javac/processing/6512707/T6512707.java	Thu Jan 08 16:34:58 2009 -0800
    51.3 @@ -0,0 +1,56 @@
    51.4 +/*
    51.5 + * Copyright 2008 Sun Microsystems, Inc.  All Rights Reserved.
    51.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    51.7 + *
    51.8 + * This code is free software; you can redistribute it and/or modify it
    51.9 + * under the terms of the GNU General Public License version 2 only, as
   51.10 + * published by the Free Software Foundation.
   51.11 + *
   51.12 + * This code is distributed in the hope that it will be useful, but WITHOUT
   51.13 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   51.14 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
   51.15 + * version 2 for more details (a copy is included in the LICENSE file that
   51.16 + * accompanied this code).
   51.17 + *
   51.18 + * You should have received a copy of the GNU General Public License version
   51.19 + * 2 along with this work; if not, write to the Free Software Foundation,
   51.20 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
   51.21 + *
   51.22 + * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
   51.23 + * CA 95054 USA or visit www.sun.com if you need additional information or
   51.24 + * have any questions.
   51.25 + */
   51.26 +
   51.27 +/*
   51.28 + * @test
   51.29 + * @bug 6512707
   51.30 + * @summary "incompatible types" after (unrelated) annotation processing
   51.31 + * @author  Peter Runge
   51.32 + * @compile T6512707.java
   51.33 + *
   51.34 + * @compile -processor T6512707 TestAnnotation.java
   51.35 + */
   51.36 +
   51.37 +import java.util.Set;
   51.38 +import javax.annotation.processing.*;
   51.39 +import javax.lang.model.SourceVersion;
   51.40 +import javax.lang.model.element.*;
   51.41 +import javax.lang.model.util.*;
   51.42 +
   51.43 +/**
   51.44 + * Dummy processor to force bug 6512707 to show - it does not matter what
   51.45 + * the annotation processor does for this bug.
   51.46 + */
   51.47 +@SupportedAnnotationTypes("*")
   51.48 +public class T6512707 extends AbstractProcessor {
   51.49 +
   51.50 +    public boolean process(Set<? extends TypeElement> annotations,
   51.51 +                           RoundEnvironment roundEnv) {
   51.52 +        return(false);
   51.53 +    }
   51.54 +
   51.55 +    @Override
   51.56 +    public SourceVersion getSupportedSourceVersion() {
   51.57 +        return SourceVersion.latest();
   51.58 +    }
   51.59 +}
    52.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    52.2 +++ b/test/tools/javac/processing/6512707/TestAnnotation.java	Thu Jan 08 16:34:58 2009 -0800
    52.3 @@ -0,0 +1,35 @@
    52.4 +/*
    52.5 + * Copyright 2008 Sun Microsystems, Inc.  All Rights Reserved.
    52.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    52.7 + *
    52.8 + * This code is free software; you can redistribute it and/or modify it
    52.9 + * under the terms of the GNU General Public License version 2 only, as
   52.10 + * published by the Free Software Foundation.
   52.11 + *
   52.12 + * This code is distributed in the hope that it will be useful, but WITHOUT
   52.13 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   52.14 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
   52.15 + * version 2 for more details (a copy is included in the LICENSE file that
   52.16 + * accompanied this code).
   52.17 + *
   52.18 + * You should have received a copy of the GNU General Public License version
   52.19 + * 2 along with this work; if not, write to the Free Software Foundation,
   52.20 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
   52.21 + *
   52.22 + * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
   52.23 + * CA 95054 USA or visit www.sun.com if you need additional information or
   52.24 + * have any questions.
   52.25 + */
   52.26 +
   52.27 +import java.lang.annotation.ElementType;
   52.28 +import java.lang.annotation.Retention;
   52.29 +import java.lang.annotation.RetentionPolicy;
   52.30 +import java.lang.annotation.Target;
   52.31 +
   52.32 +@Retention(RetentionPolicy.RUNTIME)
   52.33 +@Target(ElementType.TYPE)
   52.34 +public @interface TestAnnotation
   52.35 +{
   52.36 +    public TestEnum value() default TestEnum.TWO;
   52.37 +}
   52.38 +
    53.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    53.2 +++ b/test/tools/javac/processing/6512707/TestEnum.java	Thu Jan 08 16:34:58 2009 -0800
    53.3 @@ -0,0 +1,29 @@
    53.4 +/*
    53.5 + * Copyright 2008 Sun Microsystems, Inc.  All Rights Reserved.
    53.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    53.7 + *
    53.8 + * This code is free software; you can redistribute it and/or modify it
    53.9 + * under the terms of the GNU General Public License version 2 only, as
   53.10 + * published by the Free Software Foundation.
   53.11 + *
   53.12 + * This code is distributed in the hope that it will be useful, but WITHOUT
   53.13 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   53.14 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
   53.15 + * version 2 for more details (a copy is included in the LICENSE file that
   53.16 + * accompanied this code).
   53.17 + *
   53.18 + * You should have received a copy of the GNU General Public License version
   53.19 + * 2 along with this work; if not, write to the Free Software Foundation,
   53.20 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
   53.21 + *
   53.22 + * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
   53.23 + * CA 95054 USA or visit www.sun.com if you need additional information or
   53.24 + * have any questions.
   53.25 + */
   53.26 +
   53.27 +public enum TestEnum
   53.28 +{
   53.29 +    ONE,
   53.30 +    TWO
   53.31 +}
   53.32 +
    54.1 --- a/test/tools/javadoc/BooleanConst.java	Thu Jan 08 16:26:59 2009 -0800
    54.2 +++ b/test/tools/javadoc/BooleanConst.java	Thu Jan 08 16:34:58 2009 -0800
    54.3 @@ -1,5 +1,5 @@
    54.4  /*
    54.5 - * Copyright 2002 Sun Microsystems, Inc.  All Rights Reserved.
    54.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    54.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    54.8   *
    54.9   * This code is free software; you can redistribute it and/or modify it
    55.1 --- a/test/tools/javadoc/BreakIteratorWarning.java	Thu Jan 08 16:26:59 2009 -0800
    55.2 +++ b/test/tools/javadoc/BreakIteratorWarning.java	Thu Jan 08 16:34:58 2009 -0800
    55.3 @@ -1,5 +1,5 @@
    55.4  /*
    55.5 - * Copyright 2003 Sun Microsystems, Inc.  All Rights Reserved.
    55.6 + * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
    55.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    55.8   *
    55.9   * This code is free software; you can redistribute it and/or modify it
    56.1 --- a/test/tools/javadoc/FlagsTooEarly.java	Thu Jan 08 16:26:59 2009 -0800
    56.2 +++ b/test/tools/javadoc/FlagsTooEarly.java	Thu Jan 08 16:34:58 2009 -0800
    56.3 @@ -1,5 +1,5 @@
    56.4  /*
    56.5 - * Copyright 2003 Sun Microsystems, Inc.  All Rights Reserved.
    56.6 + * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
    56.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    56.8   *
    56.9   * This code is free software; you can redistribute it and/or modify it
    57.1 --- a/test/tools/javadoc/InlineTagsWithBraces.java	Thu Jan 08 16:26:59 2009 -0800
    57.2 +++ b/test/tools/javadoc/InlineTagsWithBraces.java	Thu Jan 08 16:34:58 2009 -0800
    57.3 @@ -1,5 +1,5 @@
    57.4  /*
    57.5 - * Copyright 2003 Sun Microsystems, Inc.  All Rights Reserved.
    57.6 + * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
    57.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    57.8   *
    57.9   * This code is free software; you can redistribute it and/or modify it
    58.1 --- a/test/tools/javadoc/LangVers.java	Thu Jan 08 16:26:59 2009 -0800
    58.2 +++ b/test/tools/javadoc/LangVers.java	Thu Jan 08 16:34:58 2009 -0800
    58.3 @@ -1,5 +1,5 @@
    58.4  /*
    58.5 - * Copyright 2003 Sun Microsystems, Inc.  All Rights Reserved.
    58.6 + * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
    58.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    58.8   *
    58.9   * This code is free software; you can redistribute it and/or modify it
    59.1 --- a/test/tools/javadoc/MethodLinks.java	Thu Jan 08 16:26:59 2009 -0800
    59.2 +++ b/test/tools/javadoc/MethodLinks.java	Thu Jan 08 16:34:58 2009 -0800
    59.3 @@ -1,5 +1,5 @@
    59.4  /*
    59.5 - * Copyright 2002 Sun Microsystems, Inc.  All Rights Reserved.
    59.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    59.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    59.8   *
    59.9   * This code is free software; you can redistribute it and/or modify it
    60.1 --- a/test/tools/javadoc/NoStar.java	Thu Jan 08 16:26:59 2009 -0800
    60.2 +++ b/test/tools/javadoc/NoStar.java	Thu Jan 08 16:34:58 2009 -0800
    60.3 @@ -1,5 +1,5 @@
    60.4  /*
    60.5 - * Copyright 2002 Sun Microsystems, Inc.  All Rights Reserved.
    60.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    60.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    60.8   *
    60.9   * This code is free software; you can redistribute it and/or modify it
    61.1 --- a/test/tools/javadoc/T4994049/T4994049.java	Thu Jan 08 16:26:59 2009 -0800
    61.2 +++ b/test/tools/javadoc/T4994049/T4994049.java	Thu Jan 08 16:34:58 2009 -0800
    61.3 @@ -1,5 +1,5 @@
    61.4  /*
    61.5 - * Copyright 2005-2007 Sun Microsystems, Inc.  All Rights Reserved.
    61.6 + * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
    61.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    61.8   *
    61.9   * This code is free software; you can redistribute it and/or modify it
    62.1 --- a/test/tools/javadoc/XWerror.java	Thu Jan 08 16:26:59 2009 -0800
    62.2 +++ b/test/tools/javadoc/XWerror.java	Thu Jan 08 16:34:58 2009 -0800
    62.3 @@ -1,5 +1,5 @@
    62.4  /*
    62.5 - * Copyright 2002 Sun Microsystems, Inc.  All Rights Reserved.
    62.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    62.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    62.8   *
    62.9   * This code is free software; you can redistribute it and/or modify it
    63.1 --- a/test/tools/javadoc/completionFailure/CompletionFailure.java	Thu Jan 08 16:26:59 2009 -0800
    63.2 +++ b/test/tools/javadoc/completionFailure/CompletionFailure.java	Thu Jan 08 16:34:58 2009 -0800
    63.3 @@ -1,5 +1,5 @@
    63.4  /*
    63.5 - * Copyright 2002-2005 Sun Microsystems, Inc.  All Rights Reserved.
    63.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    63.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    63.8   *
    63.9   * This code is free software; you can redistribute it and/or modify it
    64.1 --- a/test/tools/javadoc/dupOk/DupOk.java	Thu Jan 08 16:26:59 2009 -0800
    64.2 +++ b/test/tools/javadoc/dupOk/DupOk.java	Thu Jan 08 16:34:58 2009 -0800
    64.3 @@ -1,5 +1,5 @@
    64.4  /*
    64.5 - * Copyright 2002 Sun Microsystems, Inc.  All Rights Reserved.
    64.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    64.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    64.8   *
    64.9   * This code is free software; you can redistribute it and/or modify it
    65.1 --- a/test/tools/javadoc/imports/MissingImport.java	Thu Jan 08 16:26:59 2009 -0800
    65.2 +++ b/test/tools/javadoc/imports/MissingImport.java	Thu Jan 08 16:34:58 2009 -0800
    65.3 @@ -1,5 +1,5 @@
    65.4  /*
    65.5 - * Copyright 2004 Sun Microsystems, Inc.  All Rights Reserved.
    65.6 + * Copyright 2004-2008 Sun Microsystems, Inc.  All Rights Reserved.
    65.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    65.8   *
    65.9   * This code is free software; you can redistribute it and/or modify it
    66.1 --- a/test/tools/javadoc/lib/Tester.java	Thu Jan 08 16:26:59 2009 -0800
    66.2 +++ b/test/tools/javadoc/lib/Tester.java	Thu Jan 08 16:34:58 2009 -0800
    66.3 @@ -1,5 +1,5 @@
    66.4  /*
    66.5 - * Copyright 2003-2004 Sun Microsystems, Inc.  All Rights Reserved.
    66.6 + * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
    66.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    66.8   *
    66.9   * This code is free software; you can redistribute it and/or modify it
    67.1 --- a/test/tools/javadoc/nestedClass/NestedClass.java	Thu Jan 08 16:26:59 2009 -0800
    67.2 +++ b/test/tools/javadoc/nestedClass/NestedClass.java	Thu Jan 08 16:34:58 2009 -0800
    67.3 @@ -1,5 +1,5 @@
    67.4  /*
    67.5 - * Copyright 2002 Sun Microsystems, Inc.  All Rights Reserved.
    67.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    67.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    67.8   *
    67.9   * This code is free software; you can redistribute it and/or modify it
    68.1 --- a/test/tools/javadoc/sourceOnly/p/SourceOnly.java	Thu Jan 08 16:26:59 2009 -0800
    68.2 +++ b/test/tools/javadoc/sourceOnly/p/SourceOnly.java	Thu Jan 08 16:34:58 2009 -0800
    68.3 @@ -1,5 +1,5 @@
    68.4  /*
    68.5 - * Copyright 2002 Sun Microsystems, Inc.  All Rights Reserved.
    68.6 + * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
    68.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    68.8   *
    68.9   * This code is free software; you can redistribute it and/or modify it
    69.1 --- a/test/tools/javadoc/sourceOption/SourceOption.java	Thu Jan 08 16:26:59 2009 -0800
    69.2 +++ b/test/tools/javadoc/sourceOption/SourceOption.java	Thu Jan 08 16:34:58 2009 -0800
    69.3 @@ -1,5 +1,5 @@
    69.4  /*
    69.5 - * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
    69.6 + * Copyright 2006-2008 Sun Microsystems, Inc.  All Rights Reserved.
    69.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    69.8   *
    69.9   * This code is free software; you can redistribute it and/or modify it
    70.1 --- a/test/tools/javadoc/subpackageIgnore/SubpackageIgnore.java	Thu Jan 08 16:26:59 2009 -0800
    70.2 +++ b/test/tools/javadoc/subpackageIgnore/SubpackageIgnore.java	Thu Jan 08 16:34:58 2009 -0800
    70.3 @@ -1,5 +1,5 @@
    70.4  /*
    70.5 - * Copyright 2003 Sun Microsystems, Inc.  All Rights Reserved.
    70.6 + * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
    70.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    70.8   *
    70.9   * This code is free software; you can redistribute it and/or modify it

mercurial