/**
  * Method of interface Transportable, it must be declared public. It is called from within
  * UnmarshalStream after creating the object and assigning a stream reference to it.
  */
 @SuppressWarnings("unchecked")
 public void unmarshalReferences(uka.transport.UnmarshalStream _stream)
     throws java.io.IOException, ClassNotFoundException {
   newFeatures = (TGLinkedList) _stream.readObject();
   name = (TString) _stream.readObject();
   content = (Transportable) _stream.readObject();
 }
 /**
  * Method of interface Transportable, it must be declared public. It is called from within
  * UnmarshalStream after creating the object and assigning a stream reference to it.
  */
 @SuppressWarnings("unchecked")
 public void unmarshalReferences(uka.transport.UnmarshalStream _stream)
     throws java.io.IOException, ClassNotFoundException {
   newFeatures = (framework.libraries.serialization.TGLinkedList) _stream.readObject();
   name = (framework.libraries.serialization.TString) _stream.readObject();
 }
Example #3
0
 /**
  * Method of interface Transportable, it must be declared public. It is called from within
  * UnmarshalStream after creating the object and assigning a stream reference to it.
  */
 public void unmarshalReferences(uka.transport.UnmarshalStream _stream)
     throws java.io.IOException, ClassNotFoundException {
   this.value = (TLong) _stream.readObject();
 }