EMMA Coverage Report (generated Wed Dec 16 17:19:59 CET 2009)
[all classes][org.sourceforge.xradar.dynamics]

COVERAGE SUMMARY FOR SOURCE FILE [DynamicsOptionalParameters.java]

nameclass, %method, %block, %line, %
DynamicsOptionalParameters.java100% (1/1)56%  (5/9)59%  (20/34)57%  (8/14)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class DynamicsOptionalParameters100% (1/1)56%  (5/9)59%  (20/34)57%  (8/14)
isDebug (): boolean 0%   (0/1)0%   (0/3)0%   (0/1)
isStaticsConfigured (): boolean 0%   (0/1)0%   (0/3)0%   (0/1)
setDebug (boolean): void 0%   (0/1)0%   (0/4)0%   (0/2)
setStaticsConfigured (boolean): void 0%   (0/1)0%   (0/4)0%   (0/2)
DynamicsOptionalParameters (): void 100% (1/1)100% (6/6)100% (2/2)
getConfig (): String 100% (1/1)100% (3/3)100% (1/1)
getTarget (): String 100% (1/1)100% (3/3)100% (1/1)
setConfig (String): void 100% (1/1)100% (4/4)100% (2/2)
setTarget (String): void 100% (1/1)100% (4/4)100% (2/2)

1/**
2 * BSD-style license; for more info see http://xradar.sourceforge.net/license.html
3 */
4package org.sourceforge.xradar.dynamics;
5 
6/**
7 * <p>A data container for configuration and data required for the 'dynamic' part of XRadar.</p>
8 *
9 * @author Zahir Nuckchady, zahir.nu@gmail.com
10 *
11 */
12public class DynamicsOptionalParameters {
13        private boolean staticsConfigured = true;
14        private boolean debug;
15        private String config;
16        private String target;
17        /**
18         * @return the staticsConfigured
19         */
20        public boolean isStaticsConfigured() {
21                return staticsConfigured;
22        }
23        /**
24         * @param staticsConfigured the staticsConfigured to set
25         */
26        public void setStaticsConfigured(boolean staticsConfigured) {
27                this.staticsConfigured = staticsConfigured;
28        }
29        /**
30         * @return the debug
31         */
32        public boolean isDebug() {
33                return debug;
34        }
35        /**
36         * @param debug the debug to set
37         */
38        public void setDebug(boolean debug) {
39                this.debug = debug;
40        }
41        /**
42         * @return the config
43         */
44        public String getConfig() {
45                return config;
46        }
47        /**
48         * @param config the config to set
49         */
50        public void setConfig(String config) {
51                this.config = config;
52        }
53        /**
54         * @return the target
55         */
56        public String getTarget() {
57                return target;
58        }
59        /**
60         * @param target the target to set
61         */
62        public void setTarget(String target) {
63                this.target = target;
64        }
65        
66        
67}

[all classes][org.sourceforge.xradar.dynamics]
EMMA 2.0.5312 (C) Vladimir Roubtsov