EMMA Coverage Report (generated Tue Feb 12 22:23:49 ICT 2008)
[all classes][net.sourceforge.hiveutils.util]

COVERAGE SUMMARY FOR SOURCE FILE [Version.java]

nameclass, %method, %block, %line, %
Version.java0%   (0/1)0%   (0/16)0%   (0/95)0%   (0/31)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class Version0%   (0/1)0%   (0/16)0%   (0/95)0%   (0/31)
Version (): void 0%   (0/1)0%   (0/3)0%   (0/1)
getAuthors (): String 0%   (0/1)0%   (0/3)0%   (0/1)
getCode (): String 0%   (0/1)0%   (0/3)0%   (0/1)
getCopyright (): String 0%   (0/1)0%   (0/3)0%   (0/1)
getDate (): String 0%   (0/1)0%   (0/3)0%   (0/1)
getName (): String 0%   (0/1)0%   (0/3)0%   (0/1)
getUrl (): String 0%   (0/1)0%   (0/3)0%   (0/1)
getVersion (): String 0%   (0/1)0%   (0/3)0%   (0/1)
setAuthors (String): void 0%   (0/1)0%   (0/4)0%   (0/2)
setCode (String): void 0%   (0/1)0%   (0/4)0%   (0/2)
setCopyright (String): void 0%   (0/1)0%   (0/4)0%   (0/2)
setDate (String): void 0%   (0/1)0%   (0/4)0%   (0/2)
setName (String): void 0%   (0/1)0%   (0/4)0%   (0/2)
setUrl (String): void 0%   (0/1)0%   (0/4)0%   (0/2)
setVersion (String): void 0%   (0/1)0%   (0/4)0%   (0/2)
toString (): String 0%   (0/1)0%   (0/43)0%   (0/9)

1//  Copyright 2004-2007 Jean-Francois Poilpret
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14 
15package net.sourceforge.hiveutils.util;
16 
17import org.apache.hivemind.impl.BaseLocatable;
18import org.apache.hivemind.util.ToStringBuilder;
19 
20/**
21 * @author Jean-Francois Poilpret
22 */
23public class Version extends BaseLocatable
24{
25        public void                setCode(String code)
26        {
27                _code = code;
28        }
29        public String        getCode()
30        {
31                return _code;
32        }
33 
34        public void                setName(String name)
35        {
36                _name = name;
37        }
38        public String        getName()
39        {
40                return _name;
41        }
42 
43        public void                setVersion(String version)
44        {
45                _version = version;
46        }
47        public String        getVersion()
48        {
49                return _version;
50        }
51 
52        public void                setDate(String date)
53        {
54                _date = date;
55        }
56        public String        getDate()
57        {
58                return _date;
59        }
60 
61        public void                setCopyright(String copyright)
62        {
63                _copyright = copyright;
64        }
65        public String        getCopyright()
66        {
67                return _copyright;
68        }
69 
70        public void                setAuthors(String authors)
71        {
72                _authors = authors;
73        }
74        public String        getAuthors()
75        {
76                return _authors;
77        }
78 
79        public void                setUrl(String url)
80        {
81                _url = url;
82        }
83        public String        getUrl()
84        {
85                return _url;
86        }
87 
88    public String toString()
89    {
90        ToStringBuilder builder = new ToStringBuilder(this);
91        builder.append("code", _code);
92        builder.append("name", _name);
93        builder.append("version", _version);
94        builder.append("date", _date);
95        builder.append("copyright", _copyright);
96        builder.append("authors", _authors);
97        builder.append("url", _url);
98        return builder.toString();
99    }
100    
101        private String        _code;
102        private String        _name;
103        private String        _version;
104        private String        _date;
105        private String        _copyright;
106        private String        _authors;
107        private String        _url;
108}

[all classes][net.sourceforge.hiveutils.util]
EMMA 2.0.5312 (C) Vladimir Roubtsov