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

COVERAGE SUMMARY FOR SOURCE FILE [WebPortalConfig.java]

nameclass, %method, %block, %line, %
WebPortalConfig.java100% (1/1)88%  (7/8)93%  (51/55)89%  (17/19)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class WebPortalConfig100% (1/1)88%  (7/8)93%  (51/55)89%  (17/19)
setPortalConfig (PortalConfig): void 0%   (0/1)0%   (0/4)0%   (0/2)
WebPortalConfig (): void 100% (1/1)100% (18/18)100% (5/5)
WebPortalConfig (PortalConfig): void 100% (1/1)100% (16/16)100% (5/5)
getPortalConfig (): PortalConfig 100% (1/1)100% (3/3)100% (1/1)
getPortalSupport (): PortalSupport 100% (1/1)100% (3/3)100% (1/1)
getPortletApplication (): PortletApplication 100% (1/1)100% (3/3)100% (1/1)
setPortalSupport (PortalSupport): void 100% (1/1)100% (4/4)100% (2/2)
setPortletApplication (PortletApplication): void 100% (1/1)100% (4/4)100% (2/2)

1package edu.iu.uis.sit.portal.portlet.admin.web;
2 
3import edu.iu.uis.sit.portal.portlet.admin.domain.PortalConfig;
4import edu.iu.uis.sit.portal.portlet.admin.domain.PortalSupport;
5import edu.iu.uis.sit.portal.portlet.admin.domain.PortletApplication;
6 
7public class WebPortalConfig {
8 
9        private PortalConfig portalConfig;
10        private PortalSupport portalSupport;
11        private PortletApplication portletApplication;
12 
13        public WebPortalConfig() {
14                this.portalConfig = new PortalConfig();
15                this.portalSupport = new PortalSupport();
16                this.portletApplication = new PortletApplication();
17        }
18 
19        public WebPortalConfig(PortalConfig portalConfig) {
20                this.portalConfig = portalConfig;
21                this.portalSupport = new PortalSupport();
22                this.portletApplication = new PortletApplication();
23        }
24 
25        public PortalConfig getPortalConfig() {
26                return portalConfig;
27        }
28 
29        public void setPortalConfig(PortalConfig portalConfig) {
30                this.portalConfig = portalConfig;
31        }
32 
33        public PortalSupport getPortalSupport() {
34                return portalSupport;
35        }
36 
37        public void setPortalSupport(PortalSupport portalSupport) {
38                this.portalSupport = portalSupport;
39        }
40 
41        public PortletApplication getPortletApplication() {
42                return portletApplication;
43        }
44 
45        public void setPortletApplication(PortletApplication portletApplication) {
46                this.portletApplication = portletApplication;
47        }
48}

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