(String name, byte[] b, int offset, int length)
| 81 | } |
| 82 | |
| 83 | protected Class defineClass(String name, byte[] b, int offset, int length) { |
| 84 | if (b == null) { |
| 85 | throw new NullPointerException(); |
| 86 | } |
| 87 | |
| 88 | if (offset < 0 || offset > length || offset + length > b.length) { |
| 89 | throw new IndexOutOfBoundsException(); |
| 90 | } |
| 91 | |
| 92 | return avian.SystemClassLoader.getClass |
| 93 | (avian.Classes.defineVMClass(this, b, offset, length)); |
| 94 | } |
| 95 | |
| 96 | protected Class defineClass(String name, byte[] b, int offset, int length, |
| 97 | ProtectionDomain domain) |
no test coverage detected