Creates a new instance of a class.
()
| 187 | * Creates a new instance of a class. |
| 188 | */ |
| 189 | public java.lang.Object newInstance() throws java.lang.InstantiationException, java.lang.IllegalAccessException { |
| 190 | Object o = newInstanceImpl(); |
| 191 | if(o == null) { |
| 192 | throw new InstantiationException(); |
| 193 | } |
| 194 | return o; |
| 195 | } |
| 196 | |
| 197 | private native java.lang.Object newInstanceImpl(); |
| 198 |
no test coverage detected