blob: 00bf360e2d1cd882efb9212b312f97c8fe6c62b9 [file] [log] [blame]
Bhavesh Patelbd4ebc02013-01-21 00:45:35 -05001/*
Kumar Srinivasan184170a2017-03-13 16:46:17 -07002 * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
Bhavesh Patelbd4ebc02013-01-21 00:45:35 -05003 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
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
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
Alan Bateman23819432016-12-16 05:47:58 +000024package testpkgmdlB;
Bhavesh Patelbd4ebc02013-01-21 00:45:35 -050025
Alan Bateman22e233b2016-12-01 09:02:42 +000026import java.lang.annotation.*;
27
28/**
29 * This is a test annotation type this is not documented because it
30 * is missing the @Documented tag.
31 */
Kumar Srinivasan184170a2017-03-13 16:46:17 -070032@Target(ElementType.MODULE) public @interface AnnotationTypeUndocumented {
Alan Bateman22e233b2016-12-01 09:02:42 +000033
34 /**
35 * The copyright holder.
36 *
37 * @return a string.
38 */
39 String optional() default "unknown";
40
41 /**
42 * The year of the copyright.
43 *
44 * @return an int.
45 */
46 int required();
Bhavesh Patelbd4ebc02013-01-21 00:45:35 -050047}