Пример #1
0
 /**
  * Reads the study data object from the supplied stream.
  *
  * @param dis - the stream to read from.
  * @throws IOException
  * @throws InstantiationException
  * @throws IllegalAccessException
  */
 public void read(DataInputStream dis)
     throws IOException, InstantiationException, IllegalAccessException {
   setId(dis.readInt());
   setForms(PersistentHelper.readMedium(dis, FormData.class));
 }