Revision 10627 trunk/libraries/libGDBMS/src/main/java/com/hardcode/gdbms/engine/instruction/AbstractExpression.java

View differences:

AbstractExpression.java
28 28
			}
29 29
		}
30 30
	}
31
	
32
	
31

  
32

  
33 33
    public boolean getLiteralCondition() {
34 34
        if (!literalCalculated){
35 35
            literal = isLiteral();
36 36
        }
37
        
37

  
38 38
        return literal;
39 39
    }
40
    
40

  
41 41
    /**
42 42
     * @see com.hardcode.gdbms.engine.instruction.Expression#isAggregated()
43 43
     */
44 44
    public boolean isAggregated() {
45 45
        return false;
46 46
    }
47
    
47

  
48 48
}

Also available in: Unified diff