Examples of OtpErlangPort


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

Examples of com.ericsson.otp.erlang.OtpErlangPort

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
Copyright © 2018 www.massapi.com. 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.