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

COVERAGE SUMMARY FOR SOURCE FILE [AnakiaJDOMFactory.java]

nameclass, %method, %block, %line, %
AnakiaJDOMFactory.java100% (1/1)40%  (2/5)30%  (8/27)50%  (3/6)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class AnakiaJDOMFactory100% (1/1)40%  (2/5)30%  (8/27)50%  (3/6)
element (String, Namespace): Element 0%   (0/1)0%   (0/6)0%   (0/1)
element (String, String): Element 0%   (0/1)0%   (0/6)0%   (0/1)
element (String, String, String): Element 0%   (0/1)0%   (0/7)0%   (0/1)
AnakiaJDOMFactory (): void 100% (1/1)100% (3/3)100% (2/2)
element (String): Element 100% (1/1)100% (5/5)100% (1/1)

1package org.apache.velocity.anakia;
2 
3/*
4 * Copyright 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.jdom.Element;
20import org.jdom.Namespace;
21import org.jdom.input.DefaultJDOMFactory;
22 
23/**
24 * A customized JDOMFactory for Anakia that produces {@link AnakiaElement}
25 * instances instead of ordinary JDOM {@link Element} instances.
26 *
27 * @author <a href="mailto:szegedia@freemail.hu">Attila Szegedi</a>
28 * @version $Id: AnakiaJDOMFactory.java,v 1.2.8.1 2004/03/03 23:22:04 geirm Exp $
29 */
30public class AnakiaJDOMFactory extends DefaultJDOMFactory
31{
32    public AnakiaJDOMFactory()
33    {
34    }
35 
36    public Element element(String name, Namespace namespace)
37    {
38        return new AnakiaElement(name, namespace);
39    }
40 
41    public Element element(String name)
42    {
43        return new AnakiaElement(name);
44    }
45 
46    public Element element(String name, String uri)
47    {
48        return new AnakiaElement(name, uri);
49    }
50 
51    public Element element(String name, String prefix, String uri)
52    {
53        return new AnakiaElement(name, prefix, uri);
54    }
55}

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