示例#1
0
  /**
   * Port value extractor method
   *
   * @return Port, the value of Term
   */
  public Port extract_Port() throws java.lang.Exception {

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

    if (tcV.equal(PortHelper.type())) return PortV;

    throw new java.lang.Exception("");
  }
示例#2
0
 /** Port value insertion method */
 public void insert_Port(Port p) {
   PortV = p;
   tag = com.ericsson.otp.erlang.OtpExternal.portTag;
   tcV = PortHelper.type();
 }