예제 #1
0
  /**
   * Pid value extractor method
   *
   * @return Pid, the value of Term
   */
  public Pid extract_Pid() throws java.lang.Exception {

    if ((tcV == null) && (PidV != null)) return PidV;

    if (tcV.equal(PidHelper.type())) return PidV;

    throw new java.lang.Exception("");
  }
예제 #2
0
 /** Pid value insertion method */
 public void insert_Pid(Pid p) {
   PidV = p;
   tag = com.ericsson.otp.erlang.OtpExternal.pidTag;
   tcV = PidHelper.type();
 }