| 
Groovy 1.8.5 | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectorg.codehaus.groovy.ast.ASTNode
org.codehaus.groovy.ast.AnnotatedNode
org.codehaus.groovy.ast.expr.Expression
org.codehaus.groovy.ast.expr.RangeExpression
public class RangeExpression extends Expression
Represents a range expression such as for iterating. E.g.:
for i in 0..10 {...}
 | Constructor Summary | |
            RangeExpression(Expression from, Expression to, boolean inclusive)
             | 
        |
| Method Summary | |
|---|---|
            Expression
         | 
        
            getFrom()
             | 
        
            String
         | 
        
            getText()
             | 
        
            Expression
         | 
        
            getTo()
             | 
        
            boolean
         | 
        
            isInclusive()
             | 
        
            Expression
         | 
        
            transformExpression(ExpressionTransformer transformer)
             | 
        
            void
         | 
        
            visit(GroovyCodeVisitor visitor)
             | 
        
| Methods inherited from class Expression | |
|---|---|
| getType, setType, transformExpression, transformExpressions, transformExpressions | 
| Methods inherited from class AnnotatedNode | |
|---|---|
| addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic | 
| Methods inherited from class Object | |
|---|---|
| wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll | 
| Constructor Detail | 
|---|
public RangeExpression(Expression from, Expression to, boolean inclusive)
| Method Detail | 
|---|
public Expression getFrom()
public String getText()
public Expression getTo()
public boolean isInclusive()
public Expression transformExpression(ExpressionTransformer transformer)
public void visit(GroovyCodeVisitor visitor)
Copyright © 2003-2011 The Codehaus. All rights reserved.