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

nameclass, %method, %block, %line, %
PortletApplication.java100% (1/1)54%  (7/13)53%  (24/45)53%  (10/19)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class PortletApplication100% (1/1)54%  (7/13)53%  (24/45)53%  (10/19)
getLockingNumber (): Long 0%   (0/1)0%   (0/3)0%   (0/1)
getPortalConfig (): PortalConfig 0%   (0/1)0%   (0/3)0%   (0/1)
getPortalConfigId (): Long 0%   (0/1)0%   (0/3)0%   (0/1)
setLockingNumber (Long): void 0%   (0/1)0%   (0/4)0%   (0/2)
setPortalConfigId (Long): void 0%   (0/1)0%   (0/4)0%   (0/2)
setPortletApplicationId (Long): void 0%   (0/1)0%   (0/4)0%   (0/2)
PortletApplication (): void 100% (1/1)100% (3/3)100% (1/1)
getContextPath (): String 100% (1/1)100% (3/3)100% (1/1)
getPortletApplicationId (): Long 100% (1/1)100% (3/3)100% (1/1)
getPortletConfigs (): Collection 100% (1/1)100% (3/3)100% (1/1)
setContextPath (String): void 100% (1/1)100% (4/4)100% (2/2)
setPortalConfig (PortalConfig): void 100% (1/1)100% (4/4)100% (2/2)
setPortletConfigs (Collection): void 100% (1/1)100% (4/4)100% (2/2)

1package edu.iu.uis.sit.portal.portlet.admin.domain;
2 
3import java.io.Serializable;
4import java.util.Collection;
5 
6public class PortletApplication implements Serializable {
7        private Long portletApplicationId;
8        private String contextPath;
9        private Long lockingNumber;
10 
11        private Long portalConfigId;
12        private PortalConfig portalConfig;
13        
14        private Collection portletConfigs;
15 
16        public String getContextPath() {
17                return contextPath;
18        }
19 
20        public void setContextPath(String contextPath) {
21                this.contextPath = contextPath;
22        }
23 
24        public Long getLockingNumber() {
25                return lockingNumber;
26        }
27 
28        public void setLockingNumber(Long lockingNumber) {
29                this.lockingNumber = lockingNumber;
30        }
31 
32        public PortalConfig getPortalConfig() {
33                return portalConfig;
34        }
35 
36        public void setPortalConfig(PortalConfig portalConfig) {
37                this.portalConfig = portalConfig;
38        }
39 
40        public Long getPortalConfigId() {
41                return portalConfigId;
42        }
43 
44        public void setPortalConfigId(Long portalConfigId) {
45                this.portalConfigId = portalConfigId;
46        }
47 
48        
49        public Long getPortletApplicationId() {
50                return portletApplicationId;
51        }
52 
53        public void setPortletApplicationId(Long portletApplicationId) {
54                this.portletApplicationId = portletApplicationId;
55        }
56 
57        public Collection getPortletConfigs() {
58                return portletConfigs;
59        }
60 
61        public void setPortletConfigs(Collection portletConfigs) {
62                this.portletConfigs = portletConfigs;
63        }
64}

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