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

1 2 3 4 5 6

  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/
ConcreteSyntaxModel.java 30 import com.github.javaparser.ast.observer.ObservableProperty;
42 import static com.github.javaparser.ast.observer.ObservableProperty.*;
57 return list(ObservableProperty.MODIFIERS, space(), none(), space());
68 return list(ObservableProperty.ANNOTATIONS, newline(), none(), newline());
72 return list(ObservableProperty.ANNOTATIONS, space(), none(), newline());
76 return list(ObservableProperty.TYPE_PARAMETERS, CsmElement.sequence(CsmElement.comma(), CsmElement.space()), CsmElement.token(GeneratedJavaParserConstants.LT),
81 return list(ObservableProperty.TYPE_ARGUMENTS, CsmElement.sequence(CsmElement.comma(), CsmElement.space()), CsmElement.token(GeneratedJavaParserConstants.LT),
98 CsmElement.child(ObservableProperty.NAME),
103 CsmElement.list(ObservableProperty.MEMBERS, CsmElement.newline(), CsmElement.none(), CsmElement.none(), CsmElement.newline()),
112 CsmElement.child(ObservableProperty.TYPE)
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
CsmSingleReference.java 25 import com.github.javaparser.ast.observer.ObservableProperty;
30 private final ObservableProperty property;
32 public ObservableProperty getProperty() {
36 public CsmSingleReference(ObservableProperty property) {
CsmChar.java 25 import com.github.javaparser.ast.observer.ObservableProperty;
29 private final ObservableProperty property;
31 public CsmChar(ObservableProperty property) {
CsmString.java 25 import com.github.javaparser.ast.observer.ObservableProperty;
29 private final ObservableProperty property;
31 public CsmString(ObservableProperty property) {
CsmElement.java 26 import com.github.javaparser.ast.observer.ObservableProperty;
39 static CsmElement child(ObservableProperty property) {
43 static CsmElement attribute(ObservableProperty property) {
59 static CsmElement stringToken(ObservableProperty property) {
63 static CsmElement charToken(ObservableProperty property) {
75 static CsmElement conditional(ObservableProperty property, CsmConditional.Condition condition, CsmElement thenElement) {
79 static CsmElement conditional(ObservableProperty property, CsmConditional.Condition condition, CsmElement thenElement, CsmElement elseElement) {
83 static CsmElement conditional(List<ObservableProperty> properties, CsmConditional.Condition condition, CsmElement thenElement, CsmElement elseElement) {
109 static CsmElement list(ObservableProperty property) {
113 static CsmElement list(ObservableProperty property, CsmElement separator)
    [all...]
CsmConditional.java 26 import com.github.javaparser.ast.observer.ObservableProperty;
34 private final List<ObservableProperty> properties;
42 public ObservableProperty getProperty() {
63 boolean evaluate(Node node, ObservableProperty property){
82 public CsmConditional(ObservableProperty property, Condition condition, CsmElement thenElement, CsmElement elseElement) {
89 public CsmConditional(List<ObservableProperty> properties, Condition condition, CsmElement thenElement, CsmElement elseElement) {
99 public CsmConditional(ObservableProperty property, Condition condition, CsmElement thenElement) {
106 for (ObservableProperty prop : properties) {
CsmAttribute.java 27 import com.github.javaparser.ast.observer.ObservableProperty;
31 public ObservableProperty getProperty() {
35 private final ObservableProperty property;
37 public CsmAttribute(ObservableProperty property) {
CsmList.java 26 import com.github.javaparser.ast.observer.ObservableProperty;
34 private final ObservableProperty property;
40 public ObservableProperty getProperty() {
60 public CsmList(ObservableProperty property, CsmElement separator) {
64 public CsmList(ObservableProperty property) {
68 public CsmList(ObservableProperty property, CsmElement separatorPre, CsmElement separatorPost, CsmElement preceeding, CsmElement following) {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/changes/
NoChange.java 4 import com.github.javaparser.ast.observer.ObservableProperty;
12 public Object getValue(ObservableProperty property, Node node) {
PropertyChange.java 4 import com.github.javaparser.ast.observer.ObservableProperty;
10 private final ObservableProperty property;
14 public ObservableProperty getProperty() {
26 public PropertyChange(ObservableProperty property, Object oldValue, Object newValue) {
33 public Object getValue(ObservableProperty property, Node node) {
ListRemovalChange.java 5 import com.github.javaparser.ast.observer.ObservableProperty;
11 private final ObservableProperty observableProperty;
14 public ListRemovalChange(ObservableProperty observableProperty, int index) {
15 this.observableProperty = observableProperty;
20 public Object getValue(ObservableProperty property, Node node) {
21 if (property == observableProperty) {
ListAdditionChange.java 5 import com.github.javaparser.ast.observer.ObservableProperty;
11 private final ObservableProperty observableProperty;
15 public ListAdditionChange(ObservableProperty observableProperty, int index, Node nodeAdded) {
16 this.observableProperty = observableProperty;
22 public Object getValue(ObservableProperty property, Node node) {
23 if (property == observableProperty) {
ListReplacementChange.java 5 import com.github.javaparser.ast.observer.ObservableProperty;
14 private final ObservableProperty observableProperty;
18 public ListReplacementChange(ObservableProperty observableProperty, int index, Node newValue) {
19 this.observableProperty = observableProperty;
25 public Object getValue(ObservableProperty property, Node node) {
26 if (property == observableProperty) {
Change.java 4 import com.github.javaparser.ast.observer.ObservableProperty;
28 Object getValue(ObservableProperty property, Node node);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/observer/
AstObserver.java 48 void propertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue);
AstObserverAdapter.java 30 public void propertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue) {
PropagatingAstObserver.java 42 public void concretePropertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue) {
59 public final void propertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue) {
85 public void concretePropertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue) {
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/nodeTypes/
NodeWithModifiersTest.java 31 import com.github.javaparser.ast.observer.ObservableProperty;
57 public void propertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue) {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
VariableDeclarator.java 32 import com.github.javaparser.ast.observer.ObservableProperty;
116 public void propertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue) {
117 if (property == ObservableProperty.TYPE) {
133 ((Node) nodeWithVariables).notifyPropertyChange(ObservableProperty.MAXIMUM_COMMON_TYPE, currentMaxCommonType.orElse(null), newMaxCommonType.orElse(null));
168 notifyPropertyChange(ObservableProperty.NAME, this.name, name);
187 notifyPropertyChange(ObservableProperty.INITIALIZER, this.initializer, initializer);
216 notifyPropertyChange(ObservableProperty.TYPE, this.type, type);
Parameter.java 33 import com.github.javaparser.ast.observer.ObservableProperty;
143 notifyPropertyChange(ObservableProperty.TYPE, this.type, type);
156 notifyPropertyChange(ObservableProperty.VAR_ARGS, this.isVarArgs, isVarArgs);
195 notifyPropertyChange(ObservableProperty.ANNOTATIONS, this.annotations, annotations);
209 notifyPropertyChange(ObservableProperty.NAME, this.name, name);
223 notifyPropertyChange(ObservableProperty.MODIFIERS, this.modifiers, modifiers);
259 notifyPropertyChange(ObservableProperty.VAR_ARGS_ANNOTATIONS, this.varArgsAnnotations, varArgsAnnotations);
AnnotationMemberDeclaration.java 36 import com.github.javaparser.ast.observer.ObservableProperty;
153 notifyPropertyChange(ObservableProperty.DEFAULT_VALUE, this.defaultValue, defaultValue);
167 notifyPropertyChange(ObservableProperty.MODIFIERS, this.modifiers, modifiers);
178 notifyPropertyChange(ObservableProperty.NAME, this.name, name);
192 notifyPropertyChange(ObservableProperty.TYPE, this.type, type);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
LexicalDifferenceCalculator.java 8 import com.github.javaparser.ast.observer.ObservableProperty;
89 Difference calculateListRemovalDifference(ObservableProperty observableProperty, NodeList nodeList, int index) {
93 CalculatedSyntaxModel after = calculatedSyntaxModelAfterListRemoval(element, observableProperty, nodeList, index);
97 Difference calculateListAdditionDifference(ObservableProperty observableProperty, NodeList nodeList, int index, Node nodeAdded) {
101 CalculatedSyntaxModel after = calculatedSyntaxModelAfterListAddition(element, observableProperty, nodeList, index, nodeAdded);
105 Difference calculateListReplacementDifference(ObservableProperty observableProperty, NodeList nodeList, int index, Node newValue) {
109 CalculatedSyntaxModel after = calculatedSyntaxModelAfterListReplacement(element, observableProperty, nodeList, index, newValue)
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
ImportDeclaration.java 27 import com.github.javaparser.ast.observer.ObservableProperty;
121 notifyPropertyChange(ObservableProperty.ASTERISK, this.isAsterisk, isAsterisk);
132 notifyPropertyChange(ObservableProperty.NAME, this.name, name);
145 notifyPropertyChange(ObservableProperty.STATIC, this.isStatic, isStatic);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
ConditionalExpr.java 25 import com.github.javaparser.ast.observer.ObservableProperty;
106 notifyPropertyChange(ObservableProperty.CONDITION, this.condition, condition);
120 notifyPropertyChange(ObservableProperty.ELSE_EXPR, this.elseExpr, elseExpr);
134 notifyPropertyChange(ObservableProperty.THEN_EXPR, this.thenExpr, thenExpr);
LiteralStringValueExpr.java 25 import com.github.javaparser.ast.observer.ObservableProperty;
68 notifyPropertyChange(ObservableProperty.VALUE, this.value, value);

Completed in 222 milliseconds

1 2 3 4 5 6