8049422: Remove @jdk.Exported
Reviewed-by: dfuchs, mchung, darcy, chegar
This commit is contained in:
parent
cdd5f5f4f5
commit
42e7c3091f
@ -33,12 +33,10 @@ import javax.lang.model.element.Name;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface AttributeTree extends DocTree {
|
||||
/**
|
||||
* The kind of an attribute value.
|
||||
*/
|
||||
@jdk.Exported
|
||||
enum ValueKind {
|
||||
/** The attribute value is empty. */
|
||||
EMPTY,
|
||||
|
@ -35,7 +35,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface AuthorTree extends BlockTagTree {
|
||||
/**
|
||||
* Returns the name of the author.
|
||||
|
@ -31,7 +31,6 @@ package com.sun.source.doctree;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface BlockTagTree extends DocTree {
|
||||
/**
|
||||
* Returns the name of the tag.
|
||||
|
@ -33,7 +33,6 @@ package com.sun.source.doctree;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface CommentTree extends DocTree {
|
||||
/**
|
||||
* Returns the text of the comment.
|
||||
|
@ -35,7 +35,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface DeprecatedTree extends BlockTagTree {
|
||||
/**
|
||||
* Returns the description explaining why an item is deprecated.
|
||||
|
@ -36,7 +36,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface DocCommentTree extends DocTree {
|
||||
/**
|
||||
* Returns the first sentence of a documentation comment.
|
||||
|
@ -33,5 +33,4 @@ package com.sun.source.doctree;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface DocRootTree extends InlineTagTree { }
|
||||
|
@ -30,12 +30,10 @@ package com.sun.source.doctree;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface DocTree {
|
||||
/**
|
||||
* Enumerates all kinds of trees.
|
||||
*/
|
||||
@jdk.Exported
|
||||
enum Kind {
|
||||
/**
|
||||
* Used for instances of {@link AttributeTree}
|
||||
|
@ -54,7 +54,6 @@ package com.sun.source.doctree;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface DocTreeVisitor<R,P> {
|
||||
|
||||
/**
|
||||
|
@ -35,7 +35,6 @@ import javax.lang.model.element.Name;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface EndElementTree extends DocTree {
|
||||
/**
|
||||
* Returns the name of this element.
|
||||
|
@ -38,7 +38,6 @@ import javax.lang.model.element.Name;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface EntityTree extends DocTree {
|
||||
/**
|
||||
* Returns the name or value of the entity.
|
||||
|
@ -33,7 +33,6 @@ import javax.tools.JavaFileObject;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ErroneousTree extends TextTree {
|
||||
/**
|
||||
* Returns a diagnostic object giving details about
|
||||
|
@ -35,7 +35,6 @@ import javax.lang.model.element.Name;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface IdentifierTree extends DocTree {
|
||||
/**
|
||||
* Returns the name of the identifier.
|
||||
|
@ -35,7 +35,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 9
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface IndexTree extends InlineTagTree {
|
||||
/**
|
||||
* Returns the specified search term.
|
||||
|
@ -34,5 +34,4 @@ package com.sun.source.doctree;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface InheritDocTree extends InlineTagTree { }
|
||||
|
@ -31,7 +31,6 @@ package com.sun.source.doctree;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface InlineTagTree extends DocTree {
|
||||
/**
|
||||
* Returns the name of the tag.
|
||||
|
@ -36,7 +36,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface LinkTree extends InlineTagTree {
|
||||
/**
|
||||
* Returns the reference of a link.
|
||||
|
@ -34,7 +34,6 @@ package com.sun.source.doctree;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface LiteralTree extends InlineTagTree {
|
||||
/**
|
||||
* Returns the body of the {@code @code} or {@code @literal} tag.
|
||||
|
@ -35,7 +35,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ParamTree extends BlockTagTree {
|
||||
/**
|
||||
* Returns true if this is documenting a type parameter.
|
||||
|
@ -34,7 +34,6 @@ package com.sun.source.doctree;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ReferenceTree extends DocTree {
|
||||
/**
|
||||
* Returns the signature of the Java language element being referenced,
|
||||
|
@ -35,7 +35,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ReturnTree extends BlockTagTree {
|
||||
/**
|
||||
* Returns the description of the return value of a method.
|
||||
|
@ -38,7 +38,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface SeeTree extends BlockTagTree {
|
||||
/**
|
||||
* Returns the reference.
|
||||
|
@ -35,7 +35,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface SerialDataTree extends BlockTagTree {
|
||||
/**
|
||||
* Returns the description of the serial data.
|
||||
|
@ -35,7 +35,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface SerialFieldTree extends BlockTagTree {
|
||||
/**
|
||||
* Returns the name of the serial field.
|
||||
|
@ -35,7 +35,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface SerialTree extends BlockTagTree {
|
||||
/**
|
||||
* Returns the description of the field, or the word
|
||||
|
@ -35,7 +35,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface SinceTree extends BlockTagTree {
|
||||
/**
|
||||
* Returns the text explaining the availability of the item being documented.
|
||||
|
@ -36,7 +36,6 @@ import javax.lang.model.element.Name;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface StartElementTree extends DocTree {
|
||||
/**
|
||||
* Returns the name of the element.
|
||||
|
@ -30,7 +30,6 @@ package com.sun.source.doctree;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface TextTree extends DocTree {
|
||||
/**
|
||||
* Returns the text.
|
||||
|
@ -38,7 +38,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ThrowsTree extends BlockTagTree {
|
||||
/**
|
||||
* Returns a name of the exception being documented.
|
||||
|
@ -36,7 +36,6 @@ import java.util.List;
|
||||
* @since 1.8
|
||||
*
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface UnknownBlockTagTree extends BlockTagTree {
|
||||
/**
|
||||
* Returns the content of an unrecognized block tag.
|
||||
|
@ -36,7 +36,6 @@ import java.util.List;
|
||||
* @since 1.8
|
||||
*
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface UnknownInlineTagTree extends InlineTagTree {
|
||||
/**
|
||||
* Returns the content of an unrecognized inline tag.
|
||||
|
@ -33,7 +33,6 @@ package com.sun.source.doctree;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ValueTree extends InlineTagTree {
|
||||
/**
|
||||
* Returns the reference to the value.
|
||||
|
@ -36,7 +36,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface VersionTree extends BlockTagTree {
|
||||
/**
|
||||
* Returns the body of the tag.
|
||||
|
@ -31,5 +31,4 @@
|
||||
* @since 1.8
|
||||
* @see <a href="http://download.oracle.com/javase/6/docs/technotes/tools/solaris/javadoc.html#javadoctags">http://download.oracle.com/javase/6/docs/technotes/tools/solaris/javadoc.html#javadoctags</a>
|
||||
*/
|
||||
@jdk.Exported
|
||||
package com.sun.source.doctree;
|
||||
|
@ -41,7 +41,6 @@ import java.util.List;
|
||||
* @author Mahmood Ali
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface AnnotatedTypeTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the annotations associated with this type expression.
|
||||
|
@ -42,7 +42,6 @@ import java.util.List;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface AnnotationTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the annotation type.
|
||||
|
@ -39,7 +39,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ArrayAccessTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the expression for the array being accessed.
|
||||
|
@ -39,7 +39,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ArrayTypeTree extends Tree {
|
||||
/**
|
||||
* Returns the element type of this array type.
|
||||
|
@ -41,7 +41,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface AssertTree extends StatementTree {
|
||||
/**
|
||||
* Returns the condition being asserted.
|
||||
|
@ -39,7 +39,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface AssignmentTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the variable being assigned to.
|
||||
|
@ -40,7 +40,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface BinaryTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the left (first) operand of the expression.
|
||||
|
@ -45,7 +45,6 @@ import java.util.List;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface BlockTree extends StatementTree {
|
||||
/**
|
||||
* Returns true if and only if this is a static initializer block.
|
||||
|
@ -43,7 +43,6 @@ import javax.lang.model.element.Name;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface BreakTree extends StatementTree {
|
||||
/**
|
||||
* Returns the label for this {@code break} statement.
|
||||
|
@ -45,7 +45,6 @@ import java.util.List;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface CaseTree extends Tree {
|
||||
/**
|
||||
* Returns the expression for the case, or
|
||||
|
@ -40,7 +40,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface CatchTree extends Tree {
|
||||
/**
|
||||
* Returns the catch variable.
|
||||
|
@ -48,7 +48,6 @@ import javax.lang.model.element.Name;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ClassTree extends StatementTree {
|
||||
/**
|
||||
* Returns the modifiers, including any annotations,
|
||||
|
@ -37,7 +37,6 @@ import javax.tools.JavaFileObject;
|
||||
* @author Peter von der Ahé
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface CompilationUnitTree extends Tree {
|
||||
/**
|
||||
* Returns the annotations listed on any package declaration
|
||||
|
@ -40,7 +40,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface CompoundAssignmentTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the variable on the left hand side of the compound assignment.
|
||||
|
@ -39,7 +39,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ConditionalExpressionTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the condition.
|
||||
|
@ -42,7 +42,6 @@ import javax.lang.model.element.Name;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ContinueTree extends StatementTree {
|
||||
/**
|
||||
* Returns the label for this {@code continue} statement.
|
||||
|
@ -41,7 +41,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface DoWhileLoopTree extends StatementTree {
|
||||
/**
|
||||
* Returns the condition of the loop.
|
||||
|
@ -39,5 +39,4 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface EmptyStatementTree extends StatementTree {}
|
||||
|
@ -40,7 +40,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface EnhancedForLoopTree extends StatementTree {
|
||||
/**
|
||||
* Returns the control variable for the loop.
|
||||
|
@ -34,7 +34,6 @@ import java.util.List;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ErroneousTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns any trees that were saved in this node.
|
||||
|
@ -39,7 +39,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ExpressionStatementTree extends StatementTree {
|
||||
/**
|
||||
* Returns the expression constituting this statement.
|
||||
|
@ -35,5 +35,4 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ExpressionTree extends Tree {}
|
||||
|
@ -42,7 +42,6 @@ import java.util.List;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ForLoopTree extends StatementTree {
|
||||
/**
|
||||
* Returns any initializers of the {@code for} statement.
|
||||
|
@ -41,7 +41,6 @@ import javax.lang.model.element.Name;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface IdentifierTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the name of the identifier.
|
||||
|
@ -45,7 +45,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface IfTree extends StatementTree {
|
||||
/**
|
||||
* Returns the condition of the if-statement.
|
||||
|
@ -41,7 +41,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ImportTree extends Tree {
|
||||
/**
|
||||
* Returns true if this is a static import declaration.
|
||||
|
@ -39,7 +39,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface InstanceOfTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the expression to be tested.
|
||||
|
@ -34,7 +34,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface IntersectionTypeTree extends Tree {
|
||||
/**
|
||||
* Returns the bounds of the type.
|
||||
|
@ -41,7 +41,6 @@ import javax.lang.model.element.Name;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface LabeledStatementTree extends StatementTree {
|
||||
/**
|
||||
* Returns the label.
|
||||
|
@ -37,7 +37,6 @@ import java.util.List;
|
||||
* (x,y)-> { return x + y; }
|
||||
* }</pre>
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface LambdaExpressionTree extends ExpressionTree {
|
||||
|
||||
/**
|
||||
@ -47,7 +46,6 @@ public interface LambdaExpressionTree extends ExpressionTree {
|
||||
* <li> statement lambdas, whose body is a block
|
||||
* </ul>
|
||||
*/
|
||||
@jdk.Exported
|
||||
public enum BodyKind {
|
||||
/** enum constant for expression lambdas */
|
||||
EXPRESSION,
|
||||
|
@ -31,7 +31,6 @@ package com.sun.source.tree;
|
||||
*
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface LineMap {
|
||||
/**
|
||||
* Finds the start position of a line.
|
||||
|
@ -40,7 +40,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface LiteralTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the value of the literal expression.
|
||||
|
@ -39,14 +39,12 @@ import javax.lang.model.element.Name;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface MemberReferenceTree extends ExpressionTree {
|
||||
|
||||
/**
|
||||
* There are two kinds of member references: (i) method references and
|
||||
* (ii) constructor references
|
||||
*/
|
||||
@jdk.Exported
|
||||
public enum ReferenceMode {
|
||||
/** enum constant for method references. */
|
||||
INVOKE,
|
||||
|
@ -41,7 +41,6 @@ import javax.lang.model.element.Name;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface MemberSelectTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the expression for which a member is to be selected.
|
||||
|
@ -43,7 +43,6 @@ import java.util.List;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface MethodInvocationTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the type arguments for this method invocation.
|
||||
|
@ -46,7 +46,6 @@ import javax.lang.model.element.Name;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface MethodTree extends Tree {
|
||||
/**
|
||||
* Returns the modifiers, including any annotations for the method being declared.
|
||||
|
@ -45,7 +45,6 @@ import javax.lang.model.element.Modifier;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ModifiersTree extends Tree {
|
||||
/**
|
||||
* Returns the flags in this modifiers tree.
|
||||
|
@ -43,7 +43,6 @@ import java.util.List;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface NewArrayTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the base type of the expression.
|
||||
|
@ -48,7 +48,6 @@ import java.util.List;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface NewClassTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the enclosing expression, or {@code null} if none.
|
||||
|
@ -35,7 +35,6 @@ import java.util.List;
|
||||
* @author Paul Govereau
|
||||
* @since 9
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface PackageTree extends Tree {
|
||||
/**
|
||||
* Returns the annotations associated with this package declaration.
|
||||
|
@ -41,7 +41,6 @@ import java.util.List;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ParameterizedTypeTree extends Tree {
|
||||
/**
|
||||
* Returns the base type.
|
||||
|
@ -40,7 +40,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ParenthesizedTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the expression within the parentheses.
|
||||
|
@ -41,7 +41,6 @@ import javax.lang.model.type.TypeKind;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface PrimitiveTypeTree extends Tree {
|
||||
/**
|
||||
* Returns the kind of this primitive type.
|
||||
|
@ -40,7 +40,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ReturnTree extends StatementTree {
|
||||
/**
|
||||
* Returns the expression to be returned.
|
||||
|
@ -48,7 +48,6 @@ import javax.lang.model.element.TypeElement;
|
||||
*
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface Scope {
|
||||
/**
|
||||
* Returns the enclosing scope.
|
||||
|
@ -35,5 +35,4 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface StatementTree extends Tree {}
|
||||
|
@ -43,7 +43,6 @@ import java.util.List;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface SwitchTree extends StatementTree {
|
||||
/**
|
||||
* Returns the expression for the {@code switch} statement.
|
||||
|
@ -40,7 +40,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface SynchronizedTree extends StatementTree {
|
||||
/**
|
||||
* Returns the expression on which to synchronize.
|
||||
|
@ -39,7 +39,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface ThrowTree extends StatementTree {
|
||||
/**
|
||||
* Returns the expression to be thrown.
|
||||
|
@ -39,13 +39,11 @@ package com.sun.source.tree;
|
||||
*
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface Tree {
|
||||
|
||||
/**
|
||||
* Enumerates all kinds of trees.
|
||||
*/
|
||||
@jdk.Exported
|
||||
public enum Kind {
|
||||
/**
|
||||
* Used for instances of {@link AnnotatedTypeTree}
|
||||
|
@ -56,7 +56,6 @@ package com.sun.source.tree;
|
||||
*
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface TreeVisitor<R,P> {
|
||||
/**
|
||||
* Visits an AnnotatedTypeTree node.
|
||||
|
@ -45,7 +45,6 @@ import java.util.List;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface TryTree extends StatementTree {
|
||||
/**
|
||||
* Returns the block of the {@code try} statement.
|
||||
|
@ -39,7 +39,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface TypeCastTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the target type of the cast.
|
||||
|
@ -46,7 +46,6 @@ import javax.lang.model.element.Name;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface TypeParameterTree extends Tree {
|
||||
/**
|
||||
* Returns the name of the type parameter.
|
||||
|
@ -42,7 +42,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface UnaryTree extends ExpressionTree {
|
||||
/**
|
||||
* Returns the expression that is the operand of the unary operator.
|
||||
|
@ -35,7 +35,6 @@ import java.util.List;
|
||||
*
|
||||
* @since 1.7
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface UnionTypeTree extends Tree {
|
||||
/**
|
||||
* Returns the alternative type expressions.
|
||||
|
@ -42,7 +42,6 @@ import javax.lang.model.element.Name;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface VariableTree extends StatementTree {
|
||||
/**
|
||||
* Returns the modifiers, including any annotations, on the declaration.
|
||||
|
@ -41,7 +41,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface WhileLoopTree extends StatementTree {
|
||||
/**
|
||||
* Returns the condition of the loop.
|
||||
|
@ -44,7 +44,6 @@ package com.sun.source.tree;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface WildcardTree extends Tree {
|
||||
/**
|
||||
* Returns the bound of the wildcard.
|
||||
|
@ -31,5 +31,4 @@
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
package com.sun.source.tree;
|
||||
|
@ -36,7 +36,6 @@ import com.sun.source.tree.CompilationUnitTree;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public interface DocSourcePositions extends SourcePositions {
|
||||
|
||||
/**
|
||||
|
@ -37,7 +37,6 @@ import java.util.Objects;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public class DocTreePath implements Iterable<DocTree> {
|
||||
/**
|
||||
* Returns a documentation tree path for a tree node within a compilation unit,
|
||||
|
@ -37,7 +37,6 @@ import com.sun.source.doctree.DocTree;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public class DocTreePathScanner<R, P> extends DocTreeScanner<R, P> {
|
||||
/**
|
||||
* Scans a tree from a position identified by a tree path.
|
||||
|
@ -68,7 +68,6 @@ import com.sun.tools.javac.tree.DCTree.DCIndex;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public class DocTreeScanner<R,P> implements DocTreeVisitor<R,P> {
|
||||
|
||||
/**
|
||||
|
@ -43,7 +43,6 @@ import com.sun.source.doctree.DocTree;
|
||||
*
|
||||
* @since 1.8
|
||||
*/
|
||||
@jdk.Exported
|
||||
public abstract class DocTrees extends Trees {
|
||||
/**
|
||||
* Returns a DocTrees object for a given CompilationTask.
|
||||
|
@ -48,7 +48,6 @@ import com.sun.tools.javac.util.Context;
|
||||
* @author Jonathan Gibbons
|
||||
* @since 1.6
|
||||
*/
|
||||
@jdk.Exported
|
||||
public abstract class JavacTask implements CompilationTask {
|
||||
|
||||
/**
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user