use original visibility also if not needed

This commit is contained in:
Volker Berlin 2021-05-23 11:58:35 +02:00
parent 4e9e5ca069
commit 428794efae

View File

@ -41,7 +41,7 @@ import de.inetsoftware.jwebassembly.module.TypeManager;
* @author Volker Berlin * @author Volker Berlin
*/ */
@Replace( "java/lang/Class" ) @Replace( "java/lang/Class" )
class ReplacementForClass { class ReplacementForClass<T> {
/** /**
* The pointer in the memory for the class/type description. * The pointer in the memory for the class/type description.
@ -63,7 +63,7 @@ class ReplacementForClass {
* *
* @return the name * @return the name
*/ */
String getName() { public String getName() {
return StringTable.stringConstant( getIntFromMemory( vtable + TYPE_DESCRIPTION_TYPE_NAME ) ); return StringTable.stringConstant( getIntFromMemory( vtable + TYPE_DESCRIPTION_TYPE_NAME ) );
} }
@ -181,7 +181,7 @@ class ReplacementForClass {
/** /**
* Replacement of the Java methods * Replacement of the Java methods
*/ */
ClassLoader getClassLoader() { public ClassLoader getClassLoader() {
return null; return null;
} }
@ -196,12 +196,12 @@ class ReplacementForClass {
* Replacement of the Java methods getSuperclass() * Replacement of the Java methods getSuperclass()
*/ */
@WasmTextCode( "unreachable" ) // TODO @WasmTextCode( "unreachable" ) // TODO
native Class getSuperclass(); public native Class<? super T> getSuperclass();
/** /**
* Replacement of the native Java methods getComponentType() * Replacement of the native Java methods getComponentType()
*/ */
ReplacementForClass getComponentType() { public ReplacementForClass<?> getComponentType() {
int classIdx = getIntFromMemory( vtable + TYPE_DESCRIPTION_ARRAY_TYPE ); int classIdx = getIntFromMemory( vtable + TYPE_DESCRIPTION_ARRAY_TYPE );
return classIdx >= 0 ? classConstant( classIdx ) : null; return classIdx >= 0 ? classConstant( classIdx ) : null;
} }
@ -210,7 +210,7 @@ class ReplacementForClass {
* Replacement of the Java methods getDeclaredMethod() * Replacement of the Java methods getDeclaredMethod()
*/ */
@WasmTextCode( "unreachable" ) // TODO @WasmTextCode( "unreachable" ) // TODO
native Method getDeclaredMethod(String name, Class<?>... parameterTypes); public native Method getDeclaredMethod(String name, Class<?>... parameterTypes);
/** /**
* Replacement of the native Java methods * Replacement of the native Java methods
@ -220,7 +220,7 @@ class ReplacementForClass {
* @return the class * @return the class
* @see TypeManager#PRIMITIVE_CLASSES * @see TypeManager#PRIMITIVE_CLASSES
*/ */
static ReplacementForClass getPrimitiveClass( String name ) { static ReplacementForClass<?> getPrimitiveClass( String name ) {
switch( name ) { switch( name ) {
case "boolean": case "boolean":
return classConstant( BOOLEAN ); return classConstant( BOOLEAN );
@ -247,7 +247,7 @@ class ReplacementForClass {
/** /**
* Replacement of the native Java methods. * Replacement of the native Java methods.
*/ */
boolean desiredAssertionStatus() { public boolean desiredAssertionStatus() {
return false; return false;
} }
} }