EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.uka.ipd.sdq.pcm.dialogs.datatype]

COVERAGE SUMMARY FOR SOURCE FILE [InnerDeclarationContainer.java]

nameclass, %method, %block, %line, %
InnerDeclarationContainer.java0%   (0/1)0%   (0/5)0%   (0/23)0%   (0/10)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class InnerDeclarationContainer0%   (0/1)0%   (0/5)0%   (0/23)0%   (0/10)
InnerDeclarationContainer (Object, Object): void 0%   (0/1)0%   (0/9)0%   (0/4)
getObject (): Object 0%   (0/1)0%   (0/3)0%   (0/1)
getParent (): Object 0%   (0/1)0%   (0/3)0%   (0/1)
setObject (Object): void 0%   (0/1)0%   (0/4)0%   (0/2)
setParent (Object): void 0%   (0/1)0%   (0/4)0%   (0/2)

1package de.uka.ipd.sdq.pcm.dialogs.datatype;
2 
3import de.uka.ipd.sdq.pcm.repository.impl.InnerDeclarationImpl;
4 
5/**
6 * Container class for InnerDeclaration with parent object
7 * 
8 * @author Roman Andrej
9 */
10public class InnerDeclarationContainer extends InnerDeclarationImpl{
11        
12        private Object parent;
13        private Object object;
14 
15        public InnerDeclarationContainer(Object object, Object parent) {
16                this.parent = parent;
17                this.object = object;
18        }
19 
20        public Object getParent() {
21                return parent;
22        }
23 
24        public void setParent(Object parent) {
25                this.parent = parent;
26        }
27 
28        public Object getObject() {
29                return object;
30        }
31 
32        public void setObject(Object object) {
33                this.object = object;
34        }
35}

[all classes][de.uka.ipd.sdq.pcm.dialogs.datatype]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov