EMMA Coverage Report (generated Tue May 18 22:13:27 CDT 2004)
[all classes][org.apache.velocity.runtime.parser.node]

COVERAGE SUMMARY FOR SOURCE FILE [ASTAddNode.java]

nameclass, %method, %block, %line, %
ASTAddNode.java100% (1/1)50%  (2/4)64%  (81/127)64%  (9/14)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ASTAddNode100% (1/1)50%  (2/4)64%  (81/127)64%  (9/14)
ASTAddNode (int): void 0%   (0/1)0%   (0/4)0%   (0/2)
jjtAccept (ParserVisitor, Object): Object 0%   (0/1)0%   (0/5)0%   (0/1)
value (InternalContextAdapter): Object 100% (1/1)67%  (76/113)77%  (7/9)
ASTAddNode (Parser, int): void 100% (1/1)100% (5/5)100% (2/2)

1package org.apache.velocity.runtime.parser.node;
2 
3/*
4 * Copyright 2000-2001,2004 The Apache Software Foundation.
5 * 
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 * 
10 *      http://www.apache.org/licenses/LICENSE-2.0
11 * 
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18 
19 
20/**
21 * Handles integer addition of nodes
22 *
23 * Please look at the Parser.jjt file which is
24 * what controls the generation of this class.
25 *
26 * @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
27 * @author <a href="mailto:geirm@optonline.net">Geir Magnusson Jr.</a>
28 * @version $Id: ASTAddNode.java,v 1.8.8.1 2004/03/03 23:22:58 geirm Exp $ 
29*/
30 
31import org.apache.velocity.context.InternalContextAdapter;
32import org.apache.velocity.runtime.parser.Parser;
33 
34import org.apache.velocity.exception.MethodInvocationException;
35 
36public class ASTAddNode extends SimpleNode
37{
38    public ASTAddNode(int id)
39    {
40        super(id);
41    }
42 
43    public ASTAddNode(Parser p, int id)
44    {
45        super(p, id);
46    }
47 
48    /** Accept the visitor. **/
49    public Object jjtAccept(ParserVisitor visitor, Object data)
50    {
51        return visitor.visit(this, data);
52    }
53 
54    /**
55     *  computes the sum of the two nodes.  Currently only integer operations are 
56     *  supported.
57     *  @return Integer object with value, or null
58     */
59    public Object value( InternalContextAdapter context)
60        throws MethodInvocationException
61    {
62        /*
63         *  get the two addends
64         */
65 
66        Object left = jjtGetChild(0).value( context );
67        Object right = jjtGetChild(1).value( context );
68 
69        /*
70         *  if either is null, lets log and bail
71         */
72 
73        if (left == null || right == null)
74        {
75            rsvc.error( ( left == null ? "Left" : "Right" ) 
76                           + " side ("
77                           + jjtGetChild( (left == null? 0 : 1) ).literal()
78                           + ") of addition operation has null value."
79                           + " Operation not possible. "
80                           + context.getCurrentTemplateName() + " [line " + getLine() 
81                           + ", column " + getColumn() + "]");
82            return null;
83        }
84        
85        /*
86         *  if not an Integer, not much we can do either
87         */
88 
89        if ( !( left instanceof Integer )  || !( right instanceof Integer ))
90        {
91            rsvc.error( ( !( left instanceof Integer ) ? "Left" : "Right" ) 
92                           + " side of addition operation is not a valid type. "
93                           + "Currently only integers (1,2,3...) and Integer type is supported. "
94                           + context.getCurrentTemplateName() + " [line " + getLine() 
95                           + ", column " + getColumn() + "]");
96 
97            return null;
98        }
99 
100        return new Integer( ( (Integer) left ).intValue() + (  (Integer) right ).intValue() );
101    }
102 
103}
104 
105 
106 
107 

[all classes][org.apache.velocity.runtime.parser.node]
EMMA 2.0.4015 (stable) (C) Vladimir Roubtsov