Ejemplo n.º 1
0
 public TransferObjectWrapper getObjectWrapper(TransferInputStream tins)
 {
     account = new TestAccount();
     account.setId(tins.readInt());
     account.setName(tins.readString());
     account.setAddress(tins.readString());
     return(this);
 }