|
|||||||||||||||||||
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 | |||||||||||||||
MessageWraper.java | - | 0% | 0% | 0% |
|
1 |
package mobisnap.common;
|
|
2 |
|
|
3 |
|
|
4 |
/**
|
|
5 |
* @version 28-Mar-2001
|
|
6 |
* @author
|
|
7 |
**/
|
|
8 |
public class MessageWraper implements java.io.Serializable { |
|
9 |
private byte[] msg; |
|
10 |
|
|
11 | 0 |
public MessageWraper( byte[] msg) { |
12 | 0 |
this.msg = msg;
|
13 |
} |
|
14 |
|
|
15 | 0 |
public byte[] getMsg(){ |
16 | 0 |
return msg;
|
17 |
} |
|
18 |
} |
|