home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / lib / native / java.lang / ClassLoader.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  1KB  |  53 lines

  1. /*
  2.  * java.lang.ClassLoader.c
  3.  *
  4.  * Copyright (c) 1996 Systems Architecture Research Centre,
  5.  *           City University, London, UK.
  6.  *
  7.  * See the file "license.terms" for information on usage and redistribution
  8.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  9.  *
  10.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  11.  */
  12.  
  13. #include <assert.h>
  14. #include <stdlib.h>
  15. #include <native.h>
  16. #include "java.lang.stubs/ClassLoader.h"
  17.  
  18. /*
  19.  * Translate an array of bytes into a class.
  20.  */
  21. struct Hjava_lang_Class*
  22. java_lang_ClassLoader_defineClass0(struct Hjava_lang_ClassLoader* this, HArrayOfByte* data, jint offset, jint length)
  23. {
  24.     abort();
  25. }
  26.  
  27. /*
  28.  * Resolve classes reference by this class.
  29.  */
  30. void
  31. java_lang_ClassLoader_resolveClass0(struct Hjava_lang_ClassLoader* this, struct Hjava_lang_Class* class)
  32. {
  33.     abort();
  34. }
  35.  
  36. /*
  37.  * Load a system class.
  38.  */
  39. struct Hjava_lang_Class*
  40. java_lang_ClassLoader_findSystemClass0(struct Hjava_lang_ClassLoader* this, struct Hjava_lang_String* str)
  41. {
  42.     abort();
  43. }
  44.  
  45. /*
  46.  * Initialise this class loader.
  47.  */
  48. void
  49. java_lang_ClassLoader_init(struct Hjava_lang_ClassLoader* this)
  50. {
  51.     abort();
  52. }
  53.