HomeSort by relevance Sort by last modified time
    Searched refs:thenStmt (Results 1 - 19 of 19) sorted by null

  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/
IfStmt.java 36 private Statement thenStmt;
43 public IfStmt(final Expression condition, final Statement thenStmt, final Statement elseStmt) {
45 setThenStmt(thenStmt);
50 final Expression condition, final Statement thenStmt, final Statement elseStmt) {
53 setThenStmt(thenStmt);
74 return thenStmt;
89 public IfStmt setThenStmt(final Statement thenStmt) {
90 this.thenStmt = thenStmt;
91 setAsParentNodeOf(this.thenStmt);
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
IfStmt.java 35 private Statement thenStmt;
42 public IfStmt(final Expression condition, final Statement thenStmt, final Statement elseStmt) {
44 setThenStmt(thenStmt);
49 final Expression condition, final Statement thenStmt, final Statement elseStmt) {
52 setThenStmt(thenStmt);
73 return thenStmt;
86 public void setThenStmt(final Statement thenStmt) {
87 this.thenStmt = thenStmt;
88 setAsParentNodeOf(this.thenStmt);
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
IfStmt.java 45 * hurray() is the thenStmt, and boo() is the elseStmt.
53 private Statement thenStmt;
63 public IfStmt(final Expression condition, final Statement thenStmt, final Statement elseStmt) {
64 this(null, condition, thenStmt, elseStmt);
71 public IfStmt(TokenRange tokenRange, Expression condition, Statement thenStmt, Statement elseStmt) {
74 setThenStmt(thenStmt);
103 return thenStmt;
140 public IfStmt setThenStmt(final Statement thenStmt) {
141 assertNotNull(thenStmt);
142 if (thenStmt == this.thenStmt)
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/
ModifierVisitorAdapter.java 620 final Statement thenStmt = (Statement) n.getThenStmt().accept(this, arg);
621 if (thenStmt == null) {
627 n.setThenStmt(thenStmt);
    [all...]
CloneVisitor.java     [all...]