src/share/classes/com/sun/source/doctree/AttributeTree.java

Print this page

        

@@ -31,13 +31,13 @@
 /**
  * A tree node for an attribute in an HTML element.
  *
  * @since 1.8
  */
-@jdk.Supported
+@jdk.Exported
 public interface AttributeTree extends DocTree {
-    @jdk.Supported
+    @jdk.Exported
     enum ValueKind { EMPTY, UNQUOTED, SINGLE, DOUBLE };
 
     Name getName();
     ValueKind getValueKind();
     List<? extends DocTree> getValue();