|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ObjectHolder.java | - | 0% | 0% | 0% |
|
1 |
package nmp.util;
|
|
2 |
|
|
3 |
public class ObjectHolder |
|
4 |
{ |
|
5 |
private Object obj;
|
|
6 |
|
|
7 | 0 |
public ObjectHolder( Object obj) {
|
8 | 0 |
this.obj = obj;
|
9 |
} |
|
10 |
|
|
11 | 0 |
public Object getObject() {
|
12 | 0 |
return obj;
|
13 |
} |
|
14 |
|
|
15 | 0 |
public void setObject( Object obj) { |
16 | 0 |
this.obj = obj;
|
17 |
} |
|
18 |
} |
|
19 |
|
|