summaryrefslogtreecommitdiff
path: root/doclet_adapter/src/main/java/com/sun/javadoc/AnnotatedType.java
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2023-03-24 15:27:48 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-03-24 15:27:48 +0000
commit92a70e5c9f8afda5164f4c003a439b2051083955 (patch)
tree6b7913f5e8809839cb36995a7861e1a0226f8c4a /doclet_adapter/src/main/java/com/sun/javadoc/AnnotatedType.java
parent96e2bbb707c0d8d58b858d1ebc2bcab5cf708dcf (diff)
parent7fd9e13c0e9cf374012ee6bb30be71c3e4a820dd (diff)
downloaddoclava-92a70e5c9f8afda5164f4c003a439b2051083955.tar.gz
Merge "Rename doclava17 to doclet_adapter" am: 34b258f3bb am: dbc3e44752 am: 999617ae91 am: 7fd9e13c0e
Original change: https://android-review.googlesource.com/c/platform/external/doclava/+/2507519 Change-Id: I54b66b438482fdaf4de9b95cd12c944a04d20e36 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'doclet_adapter/src/main/java/com/sun/javadoc/AnnotatedType.java')
-rw-r--r--doclet_adapter/src/main/java/com/sun/javadoc/AnnotatedType.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/doclet_adapter/src/main/java/com/sun/javadoc/AnnotatedType.java b/doclet_adapter/src/main/java/com/sun/javadoc/AnnotatedType.java
new file mode 100644
index 0000000..a91eaac
--- /dev/null
+++ b/doclet_adapter/src/main/java/com/sun/javadoc/AnnotatedType.java
@@ -0,0 +1,50 @@
+/*
+ * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation. Oracle designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Oracle in the LICENSE file that accompanied this code.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+package com.sun.javadoc;
+
+
+import com.google.doclava.annotation.Unused;
+import com.google.doclava.annotation.Used;
+
+/**
+ * Represents an annotated type.
+ * For example:
+ * <pre>
+ * {@code @NonNull String}
+ * {@code @Positive int}
+ * </pre>
+ *
+ * @author Mahmood Ali
+ * @since 1.8
+ */
+public interface AnnotatedType extends Type {
+
+ @Unused
+ AnnotationDesc[] annotations();
+
+ @Used
+ Type underlyingType();
+}