HomeSort by relevance Sort by last modified time
    Searched refs:ObservableProperty (Results 51 - 75 of 135) sorted by null

1 23 4 5 6

  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
ObjectCreationExpr.java 30 import com.github.javaparser.ast.observer.ObservableProperty;
157 notifyPropertyChange(ObservableProperty.ANONYMOUS_CLASS_BODY, this.anonymousClassBody, anonymousClassBody);
171 notifyPropertyChange(ObservableProperty.ARGUMENTS, this.arguments, arguments);
190 notifyPropertyChange(ObservableProperty.SCOPE, this.scope, scope);
204 notifyPropertyChange(ObservableProperty.TYPE, this.type, type);
228 notifyPropertyChange(ObservableProperty.TYPE_ARGUMENTS, this.typeArguments, typeArguments);
AnnotationExpr.java 25 import com.github.javaparser.ast.observer.ObservableProperty;
75 notifyPropertyChange(ObservableProperty.NAME, this.name, name);
BooleanLiteralExpr.java 24 import com.github.javaparser.ast.observer.ObservableProperty;
88 notifyPropertyChange(ObservableProperty.VALUE, this.value, value);
EnclosedExpr.java 24 import com.github.javaparser.ast.observer.ObservableProperty;
95 notifyPropertyChange(ObservableProperty.INNER, this.inner, inner);
SimpleName.java 26 import com.github.javaparser.ast.observer.ObservableProperty;
90 notifyPropertyChange(ObservableProperty.IDENTIFIER, this.identifier, identifier);
SingleMemberAnnotationExpr.java 24 import com.github.javaparser.ast.observer.ObservableProperty;
88 notifyPropertyChange(ObservableProperty.MEMBER_VALUE, this.memberValue, memberValue);
SuperExpr.java 24 import com.github.javaparser.ast.observer.ObservableProperty;
98 notifyPropertyChange(ObservableProperty.CLASS_EXPR, this.classExpr, classExpr);
ArrayCreationExpr.java 25 import com.github.javaparser.ast.observer.ObservableProperty;
131 notifyPropertyChange(ObservableProperty.INITIALIZER, this.initializer, initializer);
145 notifyPropertyChange(ObservableProperty.ELEMENT_TYPE, this.elementType, elementType);
164 notifyPropertyChange(ObservableProperty.LEVELS, this.levels, levels);
AssignExpr.java 24 import com.github.javaparser.ast.observer.ObservableProperty;
165 notifyPropertyChange(ObservableProperty.OPERATOR, this.operator, operator);
176 notifyPropertyChange(ObservableProperty.TARGET, this.target, target);
190 notifyPropertyChange(ObservableProperty.VALUE, this.value, value);
BinaryExpr.java 24 import com.github.javaparser.ast.observer.ObservableProperty;
170 notifyPropertyChange(ObservableProperty.LEFT, this.left, left);
184 notifyPropertyChange(ObservableProperty.OPERATOR, this.operator, operator);
195 notifyPropertyChange(ObservableProperty.RIGHT, this.right, right);
FieldAccessExpr.java 28 import com.github.javaparser.ast.observer.ObservableProperty;
106 notifyPropertyChange(ObservableProperty.NAME, this.name, name);
156 notifyPropertyChange(ObservableProperty.SCOPE, this.scope, scope);
180 notifyPropertyChange(ObservableProperty.TYPE_ARGUMENTS, this.typeArguments, typeArguments);
LambdaExpr.java 27 import com.github.javaparser.ast.observer.ObservableProperty;
100 notifyPropertyChange(ObservableProperty.PARAMETERS, this.parameters, parameters);
122 notifyPropertyChange(ObservableProperty.BODY, this.body, body);
152 notifyPropertyChange(ObservableProperty.ENCLOSING_PARAMETERS, this.isEnclosingParameters, isEnclosingParameters);
MethodReferenceExpr.java 27 import com.github.javaparser.ast.observer.ObservableProperty;
111 notifyPropertyChange(ObservableProperty.SCOPE, this.scope, scope);
135 notifyPropertyChange(ObservableProperty.TYPE_ARGUMENTS, this.typeArguments, typeArguments);
154 notifyPropertyChange(ObservableProperty.IDENTIFIER, this.identifier, identifier);
Name.java 29 import com.github.javaparser.ast.observer.ObservableProperty;
119 notifyPropertyChange(ObservableProperty.IDENTIFIER, this.identifier, identifier);
158 notifyPropertyChange(ObservableProperty.QUALIFIER, this.qualifier, qualifier);
202 notifyPropertyChange(ObservableProperty.ANNOTATIONS, this.annotations, annotations);
VariableDeclarationExpr.java 31 import com.github.javaparser.ast.observer.ObservableProperty;
154 notifyPropertyChange(ObservableProperty.ANNOTATIONS, this.annotations, annotations);
168 notifyPropertyChange(ObservableProperty.MODIFIERS, this.modifiers, modifiers);
179 notifyPropertyChange(ObservableProperty.VARIABLES, this.variables, variables);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/observer/
ObservableProperty.java 36 public enum ObservableProperty {
151 public static ObservableProperty fromCamelCaseName(String camelCaseName) {
152 Optional<ObservableProperty> observableProperty = Arrays.stream(values()).filter(v -> v.camelCaseName().equals(camelCaseName)).findFirst();
153 if (observableProperty.isPresent()) {
154 return observableProperty.get();
160 ObservableProperty(Type type) {
165 ObservableProperty(Type type, boolean derived) {
170 ObservableProperty() {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/modules/
ModuleUsesStmt.java 6 import com.github.javaparser.ast.observer.ObservableProperty;
73 notifyPropertyChange(ObservableProperty.TYPE, this.type, type);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
LocalClassDeclarationStmt.java 25 import com.github.javaparser.ast.observer.ObservableProperty;
95 notifyPropertyChange(ObservableProperty.CLASS_DECLARATION, this.classDeclaration, classDeclaration);
ForeachStmt.java 28 import com.github.javaparser.ast.observer.ObservableProperty;
113 notifyPropertyChange(ObservableProperty.BODY, this.body, body);
127 notifyPropertyChange(ObservableProperty.ITERABLE, this.iterable, iterable);
141 notifyPropertyChange(ObservableProperty.VARIABLE, this.variable, variable);
IfStmt.java 27 import com.github.javaparser.ast.observer.ObservableProperty;
112 notifyPropertyChange(ObservableProperty.CONDITION, this.condition, condition);
131 notifyPropertyChange(ObservableProperty.ELSE_STMT, this.elseStmt, elseStmt);
145 notifyPropertyChange(ObservableProperty.THEN_STMT, this.thenStmt, thenStmt);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
EnumConstantDeclaration.java 31 import com.github.javaparser.ast.observer.ObservableProperty;
120 notifyPropertyChange(ObservableProperty.ARGUMENTS, this.arguments, arguments);
134 notifyPropertyChange(ObservableProperty.CLASS_BODY, this.classBody, classBody);
148 notifyPropertyChange(ObservableProperty.NAME, this.name, name);
ReceiverParameter.java 36 import com.github.javaparser.ast.observer.ObservableProperty;
123 notifyPropertyChange(ObservableProperty.TYPE, this.type, type);
149 notifyPropertyChange(ObservableProperty.ANNOTATIONS, this.annotations, annotations);
180 notifyPropertyChange(ObservableProperty.NAME, this.name, name);
TypeDeclaration.java 33 import com.github.javaparser.ast.observer.ObservableProperty;
118 notifyPropertyChange(ObservableProperty.MEMBERS, this.members, members);
133 notifyPropertyChange(ObservableProperty.MODIFIERS, this.modifiers, modifiers);
145 notifyPropertyChange(ObservableProperty.NAME, this.name, name);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
ClassOrInterfaceType.java 31 import com.github.javaparser.ast.observer.ObservableProperty;
145 notifyPropertyChange(ObservableProperty.NAME, this.name, name);
164 notifyPropertyChange(ObservableProperty.SCOPE, this.scope, scope);
188 notifyPropertyChange(ObservableProperty.TYPE_ARGUMENTS, this.typeArguments, typeArguments);
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/observer/
PropagatingAstObserverTest.java 44 public void concretePropertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue) {

Completed in 274 milliseconds

1 23 4 5 6