View Javadoc

1   package net.staniscia.sbs1.msg;
2   
3   import net.staniscia.sbs1.InvalidMessageBobyException;
4   
5   /**
6    * Created by staniscia on 23/01/14.
7    */
8   public class MsgFactory {
9   
10      public static <T extends SBS1Message> T makeMSG(Object[] val, Class<T> tClass) throws InvalidMessageBobyException {
11          return SBS1FullMessage.make(val, tClass);
12      }
13  
14  
15  }