EMMA Coverage Report (generated Fri Sep 15 10:32:43 EDT 2006) |
---|
[all classes][edu.iu.uis.sit.portal.portlet.admin.domain] |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
PortletMapping.java | 100% (1/1) | 69% (9/13) | 69% (31/45) | 68% (13/19) |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
class PortletMapping | 100% (1/1) | 69% (9/13) | 69% (31/45) | 68% (13/19) |
getLockingNumber (): Long | 0% (0/1) | 0% (0/3) | 0% (0/1) | |
isActive (): boolean | 0% (0/1) | 0% (0/3) | 0% (0/1) | |
setLockingNumber (Long): void | 0% (0/1) | 0% (0/4) | 0% (0/2) | |
setMappingId (Long): void | 0% (0/1) | 0% (0/4) | 0% (0/2) | |
PortletMapping (): void | 100% (1/1) | 100% (3/3) | 100% (1/1) | |
getDisplayName (): String | 100% (1/1) | 100% (3/3) | 100% (1/1) | |
getEdsType (): String | 100% (1/1) | 100% (3/3) | 100% (1/1) | |
getMappingId (): Long | 100% (1/1) | 100% (3/3) | 100% (1/1) | |
getPortletType (): String | 100% (1/1) | 100% (3/3) | 100% (1/1) | |
setActive (boolean): void | 100% (1/1) | 100% (4/4) | 100% (2/2) | |
setDisplayName (String): void | 100% (1/1) | 100% (4/4) | 100% (2/2) | |
setEdsType (String): void | 100% (1/1) | 100% (4/4) | 100% (2/2) | |
setPortletType (String): void | 100% (1/1) | 100% (4/4) | 100% (2/2) |
1 | package edu.iu.uis.sit.portal.portlet.admin.domain; |
2 | |
3 | import java.io.Serializable; |
4 | |
5 | public class PortletMapping implements Serializable { |
6 | |
7 | private Long mappingId; |
8 | private String portletType; |
9 | private String edsType; |
10 | private boolean active; |
11 | private String displayName; |
12 | private Long lockingNumber; |
13 | |
14 | public boolean isActive() { |
15 | return active; |
16 | } |
17 | |
18 | public void setActive(boolean active) { |
19 | this.active = active; |
20 | } |
21 | |
22 | public String getDisplayName() { |
23 | return displayName; |
24 | } |
25 | |
26 | public void setDisplayName(String displayName) { |
27 | this.displayName = displayName; |
28 | } |
29 | |
30 | public String getEdsType() { |
31 | return edsType; |
32 | } |
33 | |
34 | public void setEdsType(String edsType) { |
35 | this.edsType = edsType; |
36 | } |
37 | |
38 | public Long getLockingNumber() { |
39 | return lockingNumber; |
40 | } |
41 | |
42 | public void setLockingNumber(Long lockingNumber) { |
43 | this.lockingNumber = lockingNumber; |
44 | } |
45 | |
46 | public Long getMappingId() { |
47 | return mappingId; |
48 | } |
49 | |
50 | public void setMappingId(Long mappingId) { |
51 | this.mappingId = mappingId; |
52 | } |
53 | |
54 | public String getPortletType() { |
55 | return portletType; |
56 | } |
57 | |
58 | public void setPortletType(String portletType) { |
59 | this.portletType = portletType; |
60 | } |
61 | } |
[all classes][edu.iu.uis.sit.portal.portlet.admin.domain] |
EMMA 2.0.5312 (C) Vladimir Roubtsov |