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 public MessageWraper( byte[] msg) { 12 this.msg = msg; 13 } 14 15 public byte[] getMsg(){ 16 return msg; 17 } 18 }

This page was automatically generated by Maven