Package com.ericsson.otp.erlang

Examples of com.ericsson.otp.erlang.OtpErlangPort


    return term instanceof OtpErlangPort;
  }

  @Override
  public List<OtpErlangObject> instantiateAllAlts() {
    return Collections.singletonList((OtpErlangObject)new OtpErlangPort("PORT", 0,0));
  }
View Full Code Here


public class PortSignature extends Signature {

    @Override
  public OtpErlangObject instantiate() {
        //throw new RuntimeException("I don't know how to instantiate a port() siganture...");
        return new OtpErlangPort("PORT", 0,0);
    }
View Full Code Here

TOP

Related Classes of com.ericsson.otp.erlang.OtpErlangPort

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.