stub for getConstructors()

This commit is contained in:
Volker Berlin 2023-05-07 20:46:25 +02:00
parent c91a621285
commit a64503044c

View File

@ -448,6 +448,14 @@ class ReplacementForClass<T> {
@WasmTextCode( "unreachable" ) // TODO
public native Method[] getMethods();
/**
* Returns an array containing {@code Constructor} objects reflecting
* all the public constructors of the class represented by this
* {@code Class} object.
*/
@WasmTextCode( "unreachable" ) // TODO
public native Constructor<?>[] getConstructors();
/**
* Replacement of the Java method getMethod()
*/