EMMA Coverage Report (generated Fri Sep 15 10:32:43 EDT 2006)
[all classes][edu.iu.uis.sit.portal.portlet.admin.domain]

COVERAGE SUMMARY FOR SOURCE FILE [ApplicationConstant.java]

nameclass, %method, %block, %line, %
ApplicationConstant.java100% (1/1)67%  (6/9)65%  (20/31)62%  (8/13)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ApplicationConstant100% (1/1)67%  (6/9)65%  (20/31)62%  (8/13)
getLockingNumber (): Long 0%   (0/1)0%   (0/3)0%   (0/1)
setConstantId (Long): void 0%   (0/1)0%   (0/4)0%   (0/2)
setLockingNumber (Long): void 0%   (0/1)0%   (0/4)0%   (0/2)
ApplicationConstant (): void 100% (1/1)100% (3/3)100% (1/1)
getConstantId (): Long 100% (1/1)100% (3/3)100% (1/1)
getConstantName (): String 100% (1/1)100% (3/3)100% (1/1)
getConstantValue (): String 100% (1/1)100% (3/3)100% (1/1)
setConstantName (String): void 100% (1/1)100% (4/4)100% (2/2)
setConstantValue (String): void 100% (1/1)100% (4/4)100% (2/2)

1package edu.iu.uis.sit.portal.portlet.admin.domain;
2 
3import java.io.Serializable;
4 
5public class ApplicationConstant implements Serializable {
6 
7        private Long constantId;
8        private String constantName;
9        private String constantValue;
10        private Long lockingNumber;
11 
12        public Long getLockingNumber() {
13                return lockingNumber;
14        }
15 
16        public void setLockingNumber(Long lockingNumber) {
17                this.lockingNumber = lockingNumber;
18        }
19 
20        public String getConstantName() {
21                return constantName;
22        }
23 
24        public void setConstantName(String constantName) {
25                this.constantName = constantName;
26        }
27 
28        public String getConstantValue() {
29                return constantValue;
30        }
31 
32        public void setConstantValue(String constantValue) {
33                this.constantValue = constantValue;
34        }
35 
36        public Long getConstantId() {
37                return constantId;
38        }
39 
40        public void setConstantId(Long constantId) {
41                this.constantId = constantId;
42        }
43}

[all classes][edu.iu.uis.sit.portal.portlet.admin.domain]
EMMA 2.0.5312 (C) Vladimir Roubtsov