Package erjang

Examples of erjang.ESmall


        port = null;

      p = port.testInternalPort();
    }

    ESmall op = operation.testSmall();

    if (p == null || op == null) {
      throw ERT.badarg(port, operation, data);
    }
View Full Code Here


      }
    } else if ((name3 = ETuple3.cast(portName)) != null
        && name3.elem1 == am_fd) {

      ESmall in = name3.elem2.testSmall();
      ESmall out = name3.elem3.testSmall();
     
      if (in == null || out == null) throw ERT.badarg(portName, portSetting);
     
      // log.finer("creating fd driver in="+in+"; out="+out);
      task = new EFDDriverTask(proc, in.value, out.value, portSetting);
View Full Code Here

TOP

Related Classes of erjang.ESmall

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.