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

nameclass, %method, %block, %line, %
PortletConfig.java100% (1/1)64%  (7/11)61%  (23/38)56%  (9/16)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class PortletConfig100% (1/1)64%  (7/11)61%  (23/38)56%  (9/16)
getLockingNumber (): Long 0%   (0/1)0%   (0/3)0%   (0/1)
setLockingNumber (Long): void 0%   (0/1)0%   (0/4)0%   (0/2)
setPortletApplicationId (Long): void 0%   (0/1)0%   (0/4)0%   (0/2)
setPortletConfigId (Long): void 0%   (0/1)0%   (0/4)0%   (0/2)
PortletConfig (): void 100% (1/1)100% (3/3)100% (1/1)
getPortletApplication (): PortletApplication 100% (1/1)100% (3/3)100% (1/1)
getPortletApplicationId (): Long 100% (1/1)100% (3/3)100% (1/1)
getPortletConfigId (): Long 100% (1/1)100% (3/3)100% (1/1)
getPortletName (): String 100% (1/1)100% (3/3)100% (1/1)
setPortletApplication (PortletApplication): void 100% (1/1)100% (4/4)100% (2/2)
setPortletName (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 PortletConfig implements Serializable {
6        private Long portletConfigId;
7        private String portletName;
8        private Long lockingNumber;
9        
10        private Long portletApplicationId;
11        private PortletApplication portletApplication;
12        
13        public Long getLockingNumber() {
14                return lockingNumber;
15        }
16        public void setLockingNumber(Long lockingNumber) {
17                this.lockingNumber = lockingNumber;
18        }
19        public PortletApplication getPortletApplication() {
20                return portletApplication;
21        }
22        public void setPortletApplication(PortletApplication portletApplication) {
23                this.portletApplication = portletApplication;
24        }
25        public Long getPortletApplicationId() {
26                return portletApplicationId;
27        }
28        public void setPortletApplicationId(Long portletApplicationId) {
29                this.portletApplicationId = portletApplicationId;
30        }
31        public Long getPortletConfigId() {
32                return portletConfigId;
33        }
34        public void setPortletConfigId(Long portletConfigId) {
35                this.portletConfigId = portletConfigId;
36        }
37        public String getPortletName() {
38                return portletName;
39        }
40        public void setPortletName(String portletName) {
41                this.portletName = portletName;
42        }
43}

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