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 [ASTElseStatement.java]

nameclass, %method, %block, %line, %
ASTElseStatement.java100% (1/1)75%  (3/4)75%  (12/16)67%  (4/6)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ASTElseStatement100% (1/1)75%  (3/4)75%  (12/16)67%  (4/6)
ASTElseStatement (int): void 0%   (0/1)0%   (0/4)0%   (0/2)
ASTElseStatement (Parser, int): void 100% (1/1)100% (5/5)100% (2/2)
evaluate (InternalContextAdapter): boolean 100% (1/1)100% (2/2)100% (1/1)
jjtAccept (ParserVisitor, Object): Object 100% (1/1)100% (5/5)100% (1/1)

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 
19import org.apache.velocity.context.InternalContextAdapter;
20import org.apache.velocity.runtime.parser.Parser;
21 
22/**
23 * This class is responsible for handling the Else VTL control statement.
24 * 
25 * Please look at the Parser.jjt file which is
26 * what controls the generation of this class.
27 *
28 * @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
29 * @author <a href="mailto:geirm@optonline.net">Geir Magnusson Jr.</a>
30 * @version $Id: ASTElseStatement.java,v 1.8.4.1 2004/03/03 23:22:58 geirm Exp $ 
31 */
32public class ASTElseStatement extends SimpleNode
33{
34    public ASTElseStatement(int id)
35    {
36        super(id);
37    }
38 
39    public ASTElseStatement(Parser p, int id)
40    {
41        super(p, id);
42    }
43 
44    /** Accept the visitor. **/
45    public Object jjtAccept(ParserVisitor visitor, Object data)
46    {
47        return visitor.visit(this, data);
48    }
49    
50    /**
51     * An ASTElseStatement always evaluates to
52     * true. Basically behaves like an #if(true).
53     */
54    public boolean evaluate( InternalContextAdapter context)
55    {
56        return true;
57    }        
58}
59 

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