Package erjang

Examples of erjang.NotImplemented


                ERT.box(1),   // ExpSD
                ERT.box(1),   // MinLen
                ERT.box(10)   // MaxLen
                );
    } else if (item == Native.am_safe_fixed) {
      throw new NotImplemented();
    } else {
      return null;
    }
  }
View Full Code Here


     
    } else if (spec == am_run_queue) {
      return ERT.box(0);
    }
   
    throw new NotImplemented("erlang:statistics("+spec+")");
  }
View Full Code Here

    return proc.put(key, value);
  }

  @BIF
  static public EString name(EObject a1, EObject a2) {
    throw new NotImplemented();
  }
View Full Code Here

  }
 
  @BIF
  static public EObject system_flag(EObject flag_arg, EObject value)
  {
    throw new NotImplemented();
  }
View Full Code Here

  {
    MessageDigest md;
     try {
       md = MessageDigest.getInstance("MD5");
    } catch (NoSuchAlgorithmException e) {
      throw new NotImplemented();
    }
   
    return new JavaObject(self, md);
  }
View Full Code Here

   
    MessageDigest md;
     try {
       md = MessageDigest.getInstance("MD5");
    } catch (NoSuchAlgorithmException e) {
      throw new NotImplemented();
    }
   
    for (int i = 0; i < buf.size(); i++) {
      md.update(buf.get(i));
    }
View Full Code Here

    if (compression < 0 || compression > 9 || minor < 0 || minor > 1) {
      throw ERT.badarg(obj, spec);
    }
   
    if (minor == 0) {
      throw new NotImplemented("encoding with minor_version=0");
    }
   
    EOutputStream eos = new EOutputStream();
    eos.write(EExternal.versionTag);
    if (compression != 0) {
View Full Code Here

   
    if (spec == EProc.am_links) {
      return new ETuple2(EProc.am_links, links());
    }
   
    throw new NotImplemented("port_info(" + spec + ")");
  
  }
View Full Code Here

  @BIF static public EObject is_compiled_ms(EObject spec) {
    return ERT.box(spec instanceof EMatchSpec);
  }
 
  @BIF static public EObject prev(EObject obj, EObject obj2) {
    throw new NotImplemented();
  }
View Full Code Here

      eas = gethostbyaddr(buf, seq);
      break;
    }

    default:
      throw new NotImplemented("inet_gethost seq="+seq+"; op="+op);

    }
   
   
    driver_async(eas);
View Full Code Here

TOP

Related Classes of erjang.NotImplemented

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.