Package org.eclipse.jdt.core.dom
Class TagProperty
- java.lang.Object
-
- org.eclipse.jdt.core.dom.ASTNode
-
- org.eclipse.jdt.core.dom.TagProperty
-
- All Implemented Interfaces:
IDocElement
public class TagProperty extends ASTNode implements IDocElement
TagProperty pattern AST node type.TagProperty: Name String Value Node Value- Since:
- 3.30
-
-
Field Summary
Fields Modifier and Type Field Description static SimplePropertyDescriptorNAME_PROPERTYThe "name" structural property of this node type (added in JEP 413).static ChildPropertyDescriptorNODE_VALUE_PROPERTYThe "node_value" structural property of this node type .static SimplePropertyDescriptorSTRING_VALUE_PROPERTYThe "string_value" structural property of this node type .static StringTAG_PROPERTY_SNIPPET_ERRORstatic StringTAG_PROPERTY_SNIPPET_IDstatic StringTAG_PROPERTY_SNIPPET_INLINE_TAG_COUNTstatic StringTAG_PROPERTY_SNIPPET_IS_VALIDstatic StringTAG_PROPERTY_SNIPPET_REGION_TEXT-
Fields inherited from class org.eclipse.jdt.core.dom.ASTNode
ANNOTATION_TYPE_DECLARATION, ANNOTATION_TYPE_MEMBER_DECLARATION, ANONYMOUS_CLASS_DECLARATION, ARRAY_ACCESS, ARRAY_CREATION, ARRAY_INITIALIZER, ARRAY_TYPE, ASSERT_STATEMENT, ASSIGNMENT, BLOCK, BLOCK_COMMENT, BOOLEAN_LITERAL, BREAK_STATEMENT, CASE_DEFAULT_EXPRESSION, CAST_EXPRESSION, CATCH_CLAUSE, CHARACTER_LITERAL, CLASS_INSTANCE_CREATION, COMPILATION_UNIT, CONDITIONAL_EXPRESSION, CONSTRUCTOR_INVOCATION, CONTINUE_STATEMENT, CREATION_REFERENCE, DIMENSION, DO_STATEMENT, EMPTY_STATEMENT, ENHANCED_FOR_STATEMENT, ENUM_CONSTANT_DECLARATION, ENUM_DECLARATION, EXPORTS_DIRECTIVE, EXPRESSION_METHOD_REFERENCE, EXPRESSION_STATEMENT, FIELD_ACCESS, FIELD_DECLARATION, FOR_STATEMENT, GUARDED_PATTERN, IF_STATEMENT, IMPORT_DECLARATION, INFIX_EXPRESSION, INITIALIZER, INSTANCEOF_EXPRESSION, INTERSECTION_TYPE, JAVADOC, JAVADOC_REGION, LABELED_STATEMENT, LAMBDA_EXPRESSION, LINE_COMMENT, MALFORMED, MARKER_ANNOTATION, MEMBER_REF, MEMBER_VALUE_PAIR, METHOD_DECLARATION, METHOD_INVOCATION, METHOD_REF, METHOD_REF_PARAMETER, MODIFIER, MODULE_DECLARATION, MODULE_MODIFIER, MODULE_QUALIFIED_NAME, NAME_QUALIFIED_TYPE, NORMAL_ANNOTATION, NULL_LITERAL, NULL_PATTERN, NUMBER_LITERAL, OPENS_DIRECTIVE, ORIGINAL, PACKAGE_DECLARATION, PARAMETERIZED_TYPE, PARENTHESIZED_EXPRESSION, PATTERN_INSTANCEOF_EXPRESSION, POSTFIX_EXPRESSION, PREFIX_EXPRESSION, PRIMITIVE_TYPE, PROTECT, PROVIDES_DIRECTIVE, QUALIFIED_NAME, QUALIFIED_TYPE, RECORD_DECLARATION, RECOVERED, REQUIRES_DIRECTIVE, RETURN_STATEMENT, SIMPLE_NAME, SIMPLE_TYPE, SINGLE_MEMBER_ANNOTATION, SINGLE_VARIABLE_DECLARATION, STRING_LITERAL, SUPER_CONSTRUCTOR_INVOCATION, SUPER_FIELD_ACCESS, SUPER_METHOD_INVOCATION, SUPER_METHOD_REFERENCE, SWITCH_CASE, SWITCH_EXPRESSION, SWITCH_STATEMENT, SYNCHRONIZED_STATEMENT, TAG_ELEMENT, TAG_PROPERTY, TEXT_BLOCK, TEXT_ELEMENT, THIS_EXPRESSION, THROW_STATEMENT, TRY_STATEMENT, TYPE_DECLARATION, TYPE_DECLARATION_STATEMENT, TYPE_LITERAL, TYPE_METHOD_REFERENCE, TYPE_PARAMETER, TYPE_PATTERN, UNION_TYPE, USES_DIRECTIVE, VARIABLE_DECLARATION_EXPRESSION, VARIABLE_DECLARATION_FRAGMENT, VARIABLE_DECLARATION_STATEMENT, WHILE_STATEMENT, WILDCARD_TYPE, YIELD_STATEMENT
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Returns the name of this tag property.ASTNodegetNodeValue()Returns the node value of this tag property.StringgetStringValue()Returns the string value of this tag property.static ListpropertyDescriptors(int apiLevel)Returns a list of structural property descriptors for this node type.voidsetName(String name)Sets the name of this tag property.voidsetNodeValue(ASTNode value)Sets the node value of this tag property.voidsetStringValue(String value)Sets the string value of this tag property.-
Methods inherited from class org.eclipse.jdt.core.dom.ASTNode
accept, copySubtree, copySubtrees, delete, equals, getAST, getFlags, getLength, getLocationInParent, getNodeType, getParent, getProperty, getRoot, getStartPosition, getStructuralProperty, hashCode, nodeClassForType, properties, setFlags, setProperty, setSourceRange, setStructuralProperty, structuralPropertiesForType, subtreeBytes, subtreeMatch, toString
-
-
-
-
Field Detail
-
NAME_PROPERTY
public static final SimplePropertyDescriptor NAME_PROPERTY
The "name" structural property of this node type (added in JEP 413).
-
STRING_VALUE_PROPERTY
public static final SimplePropertyDescriptor STRING_VALUE_PROPERTY
The "string_value" structural property of this node type . (added in JEP 413).
-
NODE_VALUE_PROPERTY
public static final ChildPropertyDescriptor NODE_VALUE_PROPERTY
The "node_value" structural property of this node type . (added in JEP 413).
-
TAG_PROPERTY_SNIPPET_IS_VALID
public static final String TAG_PROPERTY_SNIPPET_IS_VALID
- See Also:
- Constant Field Values
-
TAG_PROPERTY_SNIPPET_ERROR
public static final String TAG_PROPERTY_SNIPPET_ERROR
- See Also:
- Constant Field Values
-
TAG_PROPERTY_SNIPPET_ID
public static final String TAG_PROPERTY_SNIPPET_ID
- Since:
- 3.30
- See Also:
- Constant Field Values
-
TAG_PROPERTY_SNIPPET_INLINE_TAG_COUNT
public static final String TAG_PROPERTY_SNIPPET_INLINE_TAG_COUNT
- Since:
- 3.30
- See Also:
- Constant Field Values
-
TAG_PROPERTY_SNIPPET_REGION_TEXT
public static final String TAG_PROPERTY_SNIPPET_REGION_TEXT
- Since:
- 3.30
- See Also:
- Constant Field Values
-
-
Method Detail
-
propertyDescriptors
public static List propertyDescriptors(int apiLevel)
Returns a list of structural property descriptors for this node type. Clients must not modify the result.- Parameters:
apiLevel- the API level; one of theAST.JLS*constants- Returns:
- a list of property descriptors (element type:
StructuralPropertyDescriptor)
-
getName
public String getName()
Returns the name of this tag property.- Returns:
- the name
- Throws:
UnsupportedOperationException- if this operation is used below than JLS18
-
getStringValue
public String getStringValue()
Returns the string value of this tag property.- Returns:
- the string_value
- Throws:
UnsupportedOperationException- if this operation is used below than JLS18
-
getNodeValue
public ASTNode getNodeValue()
Returns the node value of this tag property.- Returns:
- the node_value
- Throws:
UnsupportedOperationException- if this operation is used below than JLS18
-
setName
public void setName(String name)
Sets the name of this tag property.- Parameters:
name-- Throws:
UnsupportedOperationException- if this operation is used below JLS18
-
setStringValue
public void setStringValue(String value)
Sets the string value of this tag property.- Parameters:
value-- Throws:
UnsupportedOperationException- if this operation is used below JLS18
-
setNodeValue
public void setNodeValue(ASTNode value)
Sets the node value of this tag property.- Parameters:
value-- Throws:
UnsupportedOperationException- if this operation is used below JLS18
-
-