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 / Compiler.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  1KB  |  53 lines

  1. /*
  2.  * java.lang.Compiler.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/Compiler.h"
  17.  
  18. void
  19. java_lang_Compiler_initialize(struct Hjava_lang_Compiler* none)
  20. {
  21.     abort();
  22. }
  23.  
  24. jint /* bool */
  25. java_lang_Compiler_compileClass(struct Hjava_lang_Compiler* none, struct Hjava_lang_Class* class)
  26. {
  27.     abort();
  28. }
  29.  
  30. jint /* bool */
  31. java_lang_Compiler_compileClasses(struct Hjava_lang_Compiler* none, struct Hjava_lang_String* str)
  32. {
  33.     abort();
  34. }
  35.  
  36. struct Hjava_lang_Object*
  37. java_lang_Compiler_command(struct Hjava_lang_Compiler* none, struct Hjava_lang_Object* obj)
  38. {
  39.     abort();
  40. }
  41.  
  42. void
  43. java_lang_Compiler_enable(struct Hjava_lang_Compiler* none)
  44. {
  45.     abort();
  46. }
  47.  
  48. void
  49. java_lang_Compiler_disable(struct Hjava_lang_Compiler* none)
  50. {
  51.     abort();
  52. }
  53.