Home
last modified time | relevance | path

Searched refs:SimplePropertyDescriptor (Results 1 – 25 of 72) sorted by relevance

123

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/
H A DVariableDeclaration.java83 static final SimplePropertyDescriptor internalExtraDimensionsPropertyFactory(Class nodeClass) { in internalExtraDimensionsPropertyFactory()
84 …return new SimplePropertyDescriptor(nodeClass, "extraDimensions", int.class, MANDATORY); //$NON-N… in internalExtraDimensionsPropertyFactory()
136 abstract SimplePropertyDescriptor internalExtraDimensionsProperty(); in internalExtraDimensionsProperty()
146 public final SimplePropertyDescriptor getExtraDimensionsProperty() { in getExtraDimensionsProperty()
313 SimplePropertyDescriptor p = internalExtraDimensionsProperty(); in internalSetExtraDimensions()
H A DBodyDeclaration.java78 abstract SimplePropertyDescriptor internalModifiersProperty(); in internalModifiersProperty()
136 static final SimplePropertyDescriptor internalModifiersPropertyFactory(Class nodeClass) { in internalModifiersPropertyFactory()
137 return new SimplePropertyDescriptor(nodeClass, "modifiers", int.class, MANDATORY); //$NON-NLS-1$ in internalModifiersPropertyFactory()
243 SimplePropertyDescriptor p = internalModifiersProperty(); in internalSetModifiers()
H A DSingleVariableDeclaration.java45 public static final SimplePropertyDescriptor MODIFIERS_PROPERTY =
46 …new SimplePropertyDescriptor(SingleVariableDeclaration.class, "modifiers", int.class, MANDATORY); …
74 public static final SimplePropertyDescriptor VARARGS_PROPERTY =
75 …new SimplePropertyDescriptor(SingleVariableDeclaration.class, "varargs", boolean.class, MANDATORY)…
91 public static final SimplePropertyDescriptor EXTRA_DIMENSIONS_PROPERTY =
249 final SimplePropertyDescriptor internalExtraDimensionsProperty() { in internalExtraDimensionsProperty()
269 final int internalGetSetIntProperty(SimplePropertyDescriptor property, boolean get, int value) { in internalGetSetIntProperty()
291 …final boolean internalGetSetBooleanProperty(SimplePropertyDescriptor property, boolean get, boolea… in internalGetSetBooleanProperty()
H A DSimpleName.java44 public static final SimplePropertyDescriptor IDENTIFIER_PROPERTY =
45 …new SimplePropertyDescriptor(SimpleName.class, "identifier", String.class, MANDATORY); //$NON-NLS-…
51 public static final SimplePropertyDescriptor VAR_PROPERTY =
52 new SimplePropertyDescriptor(SimpleName.class, "var", boolean.class, MANDATORY); //$NON-NLS-1$
143 …final Object internalGetSetObjectProperty(SimplePropertyDescriptor property, boolean get, Object v… in internalGetSetObjectProperty()
157 …final boolean internalGetSetBooleanProperty(SimplePropertyDescriptor property, boolean get, boolea… in internalGetSetBooleanProperty()
H A DImportDeclaration.java44 public static final SimplePropertyDescriptor ON_DEMAND_PROPERTY =
45 …new SimplePropertyDescriptor(ImportDeclaration.class, "onDemand", boolean.class, MANDATORY); //$NO…
51 public static final SimplePropertyDescriptor STATIC_PROPERTY =
52 …new SimplePropertyDescriptor(ImportDeclaration.class, "static", boolean.class, MANDATORY); //$NON-…
144 …final boolean internalGetSetBooleanProperty(SimplePropertyDescriptor property, boolean get, boolea… in internalGetSetBooleanProperty()
H A DBooleanLiteral.java39 public static final SimplePropertyDescriptor BOOLEAN_VALUE_PROPERTY =
40 …new SimplePropertyDescriptor(BooleanLiteral.class, "booleanValue", boolean.class, MANDATORY); //$N…
94 …final boolean internalGetSetBooleanProperty(SimplePropertyDescriptor property, boolean get, boolea… in internalGetSetBooleanProperty()
H A DMethodDeclaration.java81 public static final SimplePropertyDescriptor MODIFIERS_PROPERTY =
95 public static final SimplePropertyDescriptor CONSTRUCTOR_PROPERTY =
96 …new SimplePropertyDescriptor(MethodDeclaration.class, "constructor", boolean.class, MANDATORY); //…
102 public static final SimplePropertyDescriptor COMPACT_CONSTRUCTOR_PROPERTY =
103 …new SimplePropertyDescriptor(MethodDeclaration.class, "compactConstructor", boolean.class, OPTIONA…
133 public static final SimplePropertyDescriptor EXTRA_DIMENSIONS_PROPERTY =
134 …new SimplePropertyDescriptor(MethodDeclaration.class, "extraDimensions", int.class, MANDATORY); //…
472 final int internalGetSetIntProperty(SimplePropertyDescriptor property, boolean get, int value) { in internalGetSetIntProperty()
494 …final boolean internalGetSetBooleanProperty(SimplePropertyDescriptor property, boolean get, boolea… in internalGetSetBooleanProperty()
613 final SimplePropertyDescriptor internalModifiersProperty() { in internalModifiersProperty()
H A DTextElement.java41 public static final SimplePropertyDescriptor TEXT_PROPERTY =
42 new SimplePropertyDescriptor(TextElement.class, "text", String.class, MANDATORY); //$NON-NLS-1$
99 …final Object internalGetSetObjectProperty(SimplePropertyDescriptor property, boolean get, Object v… in internalGetSetObjectProperty()
H A DSimplePropertyDescriptor.java29 public final class SimplePropertyDescriptor extends StructuralPropertyDescriptor { class
55 SimplePropertyDescriptor(Class nodeClass, String propertyId, Class valueType, boolean mandatory) { in SimplePropertyDescriptor() method in SimplePropertyDescriptor
H A DTypeDeclaration.java69 public static final SimplePropertyDescriptor MODIFIERS_PROPERTY =
83 public static final SimplePropertyDescriptor INTERFACE_PROPERTY =
84 …new SimplePropertyDescriptor(TypeDeclaration.class, "interface", boolean.class, MANDATORY); //$NON…
277 final int internalGetSetIntProperty(SimplePropertyDescriptor property, boolean get, int value) { in internalGetSetIntProperty()
291 …final boolean internalGetSetBooleanProperty(SimplePropertyDescriptor property, boolean get, boolea… in internalGetSetBooleanProperty()
374 final SimplePropertyDescriptor internalModifiersProperty() { in internalModifiersProperty()
H A DASTNode.java1768 if (property instanceof SimplePropertyDescriptor) { in getStructuralProperty()
1769 SimplePropertyDescriptor p = (SimplePropertyDescriptor) property; in getStructuralProperty()
1807 if (property instanceof SimplePropertyDescriptor) { in setStructuralProperty()
1808 SimplePropertyDescriptor p = (SimplePropertyDescriptor) property; in setStructuralProperty()
1856 int internalGetSetIntProperty(SimplePropertyDescriptor property, boolean get, int value) { in internalGetSetIntProperty()
1877 …boolean internalGetSetBooleanProperty(SimplePropertyDescriptor property, boolean get, boolean valu… in internalGetSetBooleanProperty()
1899 Object internalGetSetObjectProperty(SimplePropertyDescriptor property, boolean get, Object value) { in internalGetSetObjectProperty()
2481 final void preValueChange(SimplePropertyDescriptor property) { in preValueChange()
2496 final void postValueChange(SimplePropertyDescriptor property) { in postValueChange()
H A DNumberLiteral.java37 public static final SimplePropertyDescriptor TOKEN_PROPERTY =
38 new SimplePropertyDescriptor(NumberLiteral.class, "token", String.class, MANDATORY); //$NON-NLS-1$
93 …final Object internalGetSetObjectProperty(SimplePropertyDescriptor property, boolean get, Object v… in internalGetSetObjectProperty()
H A DTagElement.java47 public static final SimplePropertyDescriptor TAG_NAME_PROPERTY =
48 new SimplePropertyDescriptor(TagElement.class, "tagName", String.class, OPTIONAL); //$NON-NLS-1$
271 …final Object internalGetSetObjectProperty(SimplePropertyDescriptor property, boolean get, Object v… in internalGetSetObjectProperty()
H A DNodeEventHandler.java142 void preValueChangeEvent(ASTNode node, SimplePropertyDescriptor property) { in preValueChangeEvent()
157 void postValueChangeEvent(ASTNode node, SimplePropertyDescriptor property) { in postValueChangeEvent()
H A DLambdaExpression.java47 public static final SimplePropertyDescriptor PARENTHESES_PROPERTY =
48 …new SimplePropertyDescriptor(LambdaExpression.class, "parentheses", boolean.class, MANDATORY); //$…
136 …final boolean internalGetSetBooleanProperty(SimplePropertyDescriptor property, boolean get, boolea… in internalGetSetBooleanProperty()
H A DModuleModifier.java160 public static final SimplePropertyDescriptor KEYWORD_PROPERTY =
161 …new SimplePropertyDescriptor(ModuleModifier.class, "keyword", ModuleModifier.ModuleModifierKeyword…
296 …final Object internalGetSetObjectProperty(SimplePropertyDescriptor property, boolean get, Object v… in internalGetSetObjectProperty()
H A DTextBlock.java42 public static final SimplePropertyDescriptor ESCAPED_VALUE_PROPERTY =
43 …new SimplePropertyDescriptor(TextBlock.class, "escapedValue", String.class, MANDATORY); //$NON-NLS…
126 …final Object internalGetSetObjectProperty(SimplePropertyDescriptor property, boolean get, Object v… in internalGetSetObjectProperty()
H A DWildcardType.java54 public static final SimplePropertyDescriptor UPPER_BOUND_PROPERTY =
55 …new SimplePropertyDescriptor(WildcardType.class, "upperBound", boolean.class, MANDATORY); //$NON-N…
149 …final boolean internalGetSetBooleanProperty(SimplePropertyDescriptor property, boolean get, boolea… in internalGetSetBooleanProperty()
H A DJavadoc.java42 public static final SimplePropertyDescriptor COMMENT_PROPERTY =
43 new SimplePropertyDescriptor(Javadoc.class, "comment", String.class, MANDATORY); //$NON-NLS-1$
145 …final Object internalGetSetObjectProperty(SimplePropertyDescriptor property, boolean get, Object v… in internalGetSetObjectProperty()
H A DVariableDeclarationFragment.java51 public static final SimplePropertyDescriptor EXTRA_DIMENSIONS_PROPERTY =
138 final SimplePropertyDescriptor internalExtraDimensionsProperty() { in internalExtraDimensionsProperty()
158 final int internalGetSetIntProperty(SimplePropertyDescriptor property, boolean get, int value) { in internalGetSetIntProperty()
H A DStringLiteral.java38 public static final SimplePropertyDescriptor ESCAPED_VALUE_PROPERTY =
39 …new SimplePropertyDescriptor(StringLiteral.class, "escapedValue", String.class, MANDATORY); //$NON…
95 …final Object internalGetSetObjectProperty(SimplePropertyDescriptor property, boolean get, Object v… in internalGetSetObjectProperty()
H A DPostfixExpression.java116 public static final SimplePropertyDescriptor OPERATOR_PROPERTY =
117 …new SimplePropertyDescriptor(PostfixExpression.class, "operator", PostfixExpression.Operator.class…
185 …final Object internalGetSetObjectProperty(SimplePropertyDescriptor property, boolean get, Object v… in internalGetSetObjectProperty()
H A DSwitchCase.java60 public static final SimplePropertyDescriptor SWITCH_LABELED_RULE_PROPERTY =
61 …new SimplePropertyDescriptor(SwitchCase.class, "switchLabeledRule", boolean.class, MANDATORY); //$…
150 …final boolean internalGetSetBooleanProperty(SimplePropertyDescriptor property, boolean get, boolea… in internalGetSetBooleanProperty()
H A DCharacterLiteral.java39 public static final SimplePropertyDescriptor ESCAPED_VALUE_PROPERTY =
40 …new SimplePropertyDescriptor(CharacterLiteral.class, "escapedValue", String.class, MANDATORY); //$…
96 …final Object internalGetSetObjectProperty(SimplePropertyDescriptor property, boolean get, Object v… in internalGetSetObjectProperty()
H A DPrefixExpression.java132 public static final SimplePropertyDescriptor OPERATOR_PROPERTY =
133 …new SimplePropertyDescriptor(PrefixExpression.class, "operator", PrefixExpression.Operator.class, …
201 …final Object internalGetSetObjectProperty(SimplePropertyDescriptor property, boolean get, Object v… in internalGetSetObjectProperty()

123