public void read(RPCInputStream in) throws RPCException, IOException {
   kind.read(in);
   exeUnit = in.readInt();
   instancePath.read(in);
   routineHdl = in.readInt();
   external = in.readString();
 }
 public void read(RPCInputStream in) throws RPCException, IOException {
   iterHnd = in.readInt();
   dirEntryPaths_count = in.readInt();
   for (int for_i = 0; for_i < dirEntryPaths_count; for_i++) {
     dirEntryPaths[for_i] = in.readString();
   }
   retVal = in.readBool();
 }
 public void read(RPCInputStream in) throws RPCException, IOException {
   editHnd = in.readInt();
   pos.read(in);
   len = in.readInt();
   text = in.readString();
 }
 public void read(RPCInputStream in) throws RPCException, IOException {
   iterHnd = in.readInt();
   line = in.readString();
   retVal = in.readBool();
 }