Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
gitmotte committed Aug 26, 2020
1 parent f32d047 commit 225db94
Show file tree
Hide file tree
Showing 36 changed files with 107 additions and 107 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ public String getStringExpression() {
return "+";
}

@Override()
@Override
public Addition withLeftExpression(Expression arg0) {
return (Addition) super.withLeftExpression(arg0);
}

@Override()
@Override
public Addition withRightExpression(Expression arg0) {
return (Addition) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ public String getStringExpression() {
return "&";
}

@Override()
@Override
public BitwiseAnd withLeftExpression(Expression arg0) {
return (BitwiseAnd) super.withLeftExpression(arg0);
}

@Override()
@Override
public BitwiseAnd withRightExpression(Expression arg0) {
return (BitwiseAnd) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ public String getStringExpression() {
return "<<";
}

@Override()
@Override
public BitwiseLeftShift withLeftExpression(Expression arg0) {
return (BitwiseLeftShift) super.withLeftExpression(arg0);
}

@Override()
@Override
public BitwiseLeftShift withRightExpression(Expression arg0) {
return (BitwiseLeftShift) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ public String getStringExpression() {
return "|";
}

@Override()
@Override
public BitwiseOr withLeftExpression(Expression arg0) {
return (BitwiseOr) super.withLeftExpression(arg0);
}

@Override()
@Override
public BitwiseOr withRightExpression(Expression arg0) {
return (BitwiseOr) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ public String getStringExpression() {
return ">>";
}

@Override()
@Override
public BitwiseRightShift withLeftExpression(Expression arg0) {
return (BitwiseRightShift) super.withLeftExpression(arg0);
}

@Override()
@Override
public BitwiseRightShift withRightExpression(Expression arg0) {
return (BitwiseRightShift) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ public String getStringExpression() {
return "^";
}

@Override()
@Override
public BitwiseXor withLeftExpression(Expression arg0) {
return (BitwiseXor) super.withLeftExpression(arg0);
}

@Override()
@Override
public BitwiseXor withRightExpression(Expression arg0) {
return (BitwiseXor) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ public String getStringExpression() {
return "||";
}

@Override()
@Override
public Concat withLeftExpression(Expression arg0) {
return (Concat) super.withLeftExpression(arg0);
}

@Override()
@Override
public Concat withRightExpression(Expression arg0) {
return (Concat) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ public String getStringExpression() {
return "/";
}

@Override()
@Override
public Division withLeftExpression(Expression arg0) {
return (Division) super.withLeftExpression(arg0);
}

@Override()
@Override
public Division withRightExpression(Expression arg0) {
return (Division) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ public String getStringExpression() {
return "DIV";
}

@Override()
@Override
public IntegerDivision withLeftExpression(Expression arg0) {
return (IntegerDivision) super.withLeftExpression(arg0);
}

@Override()
@Override
public IntegerDivision withRightExpression(Expression arg0) {
return (IntegerDivision) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ public String getStringExpression() {
return "%";
}

@Override()
@Override
public Modulo withLeftExpression(Expression arg0) {
return (Modulo) super.withLeftExpression(arg0);
}

@Override()
@Override
public Modulo withRightExpression(Expression arg0) {
return (Modulo) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ public String getStringExpression() {
return "*";
}

@Override()
@Override
public Multiplication withLeftExpression(Expression arg0) {
return (Multiplication) super.withLeftExpression(arg0);
}

@Override()
@Override
public Multiplication withRightExpression(Expression arg0) {
return (Multiplication) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ public String getStringExpression() {
return "-";
}

@Override()
@Override
public Subtraction withLeftExpression(Expression arg0) {
return (Subtraction) super.withLeftExpression(arg0);
}

@Override()
@Override
public Subtraction withRightExpression(Expression arg0) {
return (Subtraction) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ public AndExpression withUseOperator(boolean useOperator) {
return this;
}

@Override()
@Override
public AndExpression withLeftExpression(Expression arg0) {
return (AndExpression) super.withLeftExpression(arg0);
}

@Override()
@Override
public AndExpression withRightExpression(Expression arg0) {
return (AndExpression) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,22 @@ public String getStringExpression() {
return operator;
}

@Override()
@Override
public ComparisonOperator withLeftExpression(Expression arg0) {
return (ComparisonOperator) super.withLeftExpression(arg0);
}

@Override()
@Override
public ComparisonOperator withRightExpression(Expression arg0) {
return (ComparisonOperator) super.withRightExpression(arg0);
}

@Override()
@Override
public ComparisonOperator withOldOracleJoinSyntax(int oldOracleJoinSyntax) {
return (ComparisonOperator) super.withOldOracleJoinSyntax(oldOracleJoinSyntax);
}

@Override()
@Override
public ComparisonOperator withOraclePriorPosition(int oraclePriorPosition) {
return (ComparisonOperator) super.withOraclePriorPosition(oraclePriorPosition);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ public EqualsTo withRightExpression(Expression expression) {
return (EqualsTo) super.withRightExpression(expression);
}

@Override()
@Override
public EqualsTo withOldOracleJoinSyntax(int arg0) {
return (EqualsTo) super.withOldOracleJoinSyntax(arg0);
}

@Override()
@Override
public EqualsTo withOraclePriorPosition(int arg0) {
return (EqualsTo) super.withOraclePriorPosition(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@ public void accept(ExpressionVisitor expressionVisitor) {
expressionVisitor.visit(this);
}

@Override()
@Override
public GreaterThan withLeftExpression(Expression arg0) {
return (GreaterThan) super.withLeftExpression(arg0);
}

@Override()
@Override
public GreaterThan withRightExpression(Expression arg0) {
return (GreaterThan) super.withRightExpression(arg0);
}

@Override()
@Override
public GreaterThan withOldOracleJoinSyntax(int arg0) {
return (GreaterThan) super.withOldOracleJoinSyntax(arg0);
}

@Override()
@Override
public GreaterThan withOraclePriorPosition(int arg0) {
return (GreaterThan) super.withOraclePriorPosition(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,22 @@ public void accept(ExpressionVisitor expressionVisitor) {
expressionVisitor.visit(this);
}

@Override()
@Override
public GreaterThanEquals withLeftExpression(Expression arg0) {
return (GreaterThanEquals) super.withLeftExpression(arg0);
}

@Override()
@Override
public GreaterThanEquals withRightExpression(Expression arg0) {
return (GreaterThanEquals) super.withRightExpression(arg0);
}

@Override()
@Override
public GreaterThanEquals withOldOracleJoinSyntax(int arg0) {
return (GreaterThanEquals) super.withOldOracleJoinSyntax(arg0);
}

@Override()
@Override
public GreaterThanEquals withOraclePriorPosition(int arg0) {
return (GreaterThanEquals) super.withOraclePriorPosition(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ public String getStringExpression() {
return op;
}

@Override()
@Override
public JsonOperator withLeftExpression(Expression arg0) {
return (JsonOperator) super.withLeftExpression(arg0);
}

@Override()
@Override
public JsonOperator withRightExpression(Expression arg0) {
return (JsonOperator) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ public LikeExpression withNot(boolean not) {
return this;
}

@Override()
@Override
public LikeExpression withLeftExpression(Expression arg0) {
return (LikeExpression) super.withLeftExpression(arg0);
}

@Override()
@Override
public LikeExpression withRightExpression(Expression arg0) {
return (LikeExpression) super.withRightExpression(arg0);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,22 @@ public String getStringExpression() {
return "@@";
}

@Override()
@Override
public Matches withLeftExpression(Expression arg0) {
return (Matches) super.withLeftExpression(arg0);
}

@Override()
@Override
public Matches withRightExpression(Expression arg0) {
return (Matches) super.withRightExpression(arg0);
}

@Override()
@Override
public Matches withOldOracleJoinSyntax(int oldOracleJoinSyntax) {
return (Matches) super.withOldOracleJoinSyntax(oldOracleJoinSyntax);
}

@Override()
@Override
public Matches withOraclePriorPosition(int oraclePriorPosition) {
return (Matches) super.withOraclePriorPosition(oraclePriorPosition);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@ public void accept(ExpressionVisitor expressionVisitor) {
expressionVisitor.visit(this);
}

@Override()
@Override
public MinorThan withLeftExpression(Expression arg0) {
return (MinorThan) super.withLeftExpression(arg0);
}

@Override()
@Override
public MinorThan withRightExpression(Expression arg0) {
return (MinorThan) super.withRightExpression(arg0);
}

@Override()
@Override
public MinorThan withOldOracleJoinSyntax(int arg0) {
return (MinorThan) super.withOldOracleJoinSyntax(arg0);
}

@Override()
@Override
public MinorThan withOraclePriorPosition(int arg0) {
return (MinorThan) super.withOraclePriorPosition(arg0);
}
Expand Down
Loading

0 comments on commit 225db94

Please sign in to comment.