getargssize.java 573 B

12345678910111213141516171819202122232425262728293031323334353637
  1. public class getargssize
  2. {
  3. static
  4. {
  5. System.loadLibrary("natgetargssize");
  6. }
  7. public int aMethod (float fone, int ione)
  8. {
  9. return 0;
  10. }
  11. public long bMethod (long lone, double done, int ione)
  12. {
  13. return 0;
  14. }
  15. public static boolean cMethod ()
  16. {
  17. return false;
  18. }
  19. public static Object dMethod (Object op)
  20. {
  21. return op;
  22. }
  23. public static native int do_getargssize_tests ();
  24. public static void main (String[] args)
  25. {
  26. System.out.println ("JVMTI getargssize Interpreted Test");
  27. do_getargssize_tests ();
  28. }
  29. }