Exemplo n.º 1
0
  public StandardizedSemImWrapper(SemImWrapper semImWrapper) {
    if (semImWrapper == null) {
      throw new NullPointerException();
    }

    this.standardizedSemIm = new StandardizedSemIm(semImWrapper.getSemIm());
    log(standardizedSemIm);
  }
Exemplo n.º 2
0
 /**
  * Generates a simple exemplar of this class to test serialization.
  *
  * @see edu.cmu.TestSerialization
  * @see TetradSerializableUtils
  */
 public static StandardizedSemImWrapper serializableInstance() {
   return new StandardizedSemImWrapper(SemImWrapper.serializableInstance());
 }