Klasse SimplePropertyDescriptor
java.lang.Object
org.aspectj.org.eclipse.jdt.core.dom.StructuralPropertyDescriptor
org.aspectj.org.eclipse.jdt.core.dom.SimplePropertyDescriptor
Descriptor for a simple property of an AST node.
A simple property is one whose value is a
primitive type (such as
int or boolean)
or some simple value type (such as String or
InfixExpression.Operator).- Seit:
- 3.0
- Siehe auch:
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungReturns the value type of this property.booleanReturns whether this property is mandatory.Von Klasse geerbte Methoden org.aspectj.org.eclipse.jdt.core.dom.StructuralPropertyDescriptor
getId, getNodeClass, isChildListProperty, isChildProperty, isSimpleProperty, toString
-
Methodendetails
-
getValueType
Returns the value type of this property.For example, for a node type like SingleVariableDeclaration, the "modifiers" property returns
int.class.- Gibt zurück:
- the value type of the property
-
isMandatory
public boolean isMandatory()Returns whether this property is mandatory. A property value is not allowed to benullif it is mandatory.- Gibt zurück:
trueif the property is mandatory, andfalseif it is may benull
-