home *** CD-ROM | disk | FTP | other *** search
- /*
- * java.lang.ClassLoader.c
- *
- * Copyright (c) 1996 Systems Architecture Research Centre,
- * City University, London, UK.
- *
- * See the file "license.terms" for information on usage and redistribution
- * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
- */
-
- #include <assert.h>
- #include <native.h>
- #include "java.lang.ClassLoader.h"
-
- /*
- * Translate an array of bytes into a class.
- */
- struct Hjava_lang_Class*
- java_lang_ClassLoader_defineClass(struct Hjava_lang_ClassLoader* this, HArray* data, long offset, long length)
- {
- abort();
- }
-
- /*
- * Resolve classes reference by this class.
- */
- void
- java_lang_ClassLoader_resolveClass(struct Hjava_lang_ClassLoader* this, struct Hjava_lang_Class* class)
- {
- abort();
- }
-
- /*
- * Load a system class.
- */
- struct Hjava_lang_Class*
- java_lang_ClassLoader_findSystemClass(struct Hjava_lang_ClassLoader* this, struct Hjava_lang_String* str)
- {
- abort();
- }
-
- /*
- * Initialise this class loader.
- */
- void
- java_lang_ClassLoader_init(struct Hjava_lang_ClassLoader* this)
- {
- abort();
- }
-