langtools/test/jdk/javadoc/doclet/testRepeatedAnnotations/pkg/C.java
changeset 36038 39c5445924b9
parent 35426 374342e56a56
child 44287 829205b133d4
equal deleted inserted replaced
36037:688096b6bcc4 36038:39c5445924b9
     1 /*
     1 /*
     2  * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    21  * questions.
    21  * questions.
    22  */
    22  */
    23 
    23 
    24 package pkg;
    24 package pkg;
    25 
    25 
    26 @ContainerSynthDoc(value={@ContaineeSynthDoc,@ContaineeSynthDoc})
    26 @ContainerSynthDoc({@ContaineeSynthDoc,@ContaineeSynthDoc})
    27 @ContainerRegDoc(value={@ContaineeRegDoc,@ContaineeRegDoc})
    27 @ContainerRegDoc({@ContaineeRegDoc,@ContaineeRegDoc})
    28 @RegContainerDoc(value={@RegContaineeNotDoc,@RegContaineeNotDoc})
    28 @RegContainerDoc({@RegContaineeNotDoc,@RegContaineeNotDoc})
    29 @ContainerRegNotDoc(value={@RegContaineeDoc,@RegContaineeDoc})
    29 @ContainerRegNotDoc({@RegContaineeDoc,@RegContaineeDoc})
    30 @RegContainerNotDoc(value={@RegContaineeNotDoc,@RegContaineeNotDoc})
    30 @RegContainerNotDoc({@RegContaineeNotDoc,@RegContaineeNotDoc})
    31 @ContaineeSynthDoc @ContaineeSynthDoc @ContaineeSynthDoc
    31 @ContaineeSynthDoc @ContaineeSynthDoc @ContaineeSynthDoc
    32 public class C {
    32 public class C {
    33 
    33 
    34     @ContainerSynthDoc(value={@ContaineeSynthDoc})
    34     @ContainerSynthDoc({@ContaineeSynthDoc})
    35     public void test1() {}
    35     public void test1() {}
    36 
    36 
    37     @ContaineeSynthDoc @ContaineeSynthDoc
    37     @ContaineeSynthDoc @ContaineeSynthDoc
    38     public void test2() {}
    38     public void test2() {}
    39 }
    39 }