Home | History | Annotate | Download | only in littlemock

Lines Matching refs:getConstructorId

1308       Method getConstructorId = ObjectStreamClass.class.getDeclaredMethod(
1309 "getConstructorId", Class.class);
1310 getConstructorId.setAccessible(true);
1311 final int constructorId = (Integer) getConstructorId.invoke(null, Object.class);
1319 Method getConstructorId = ObjectStreamClass.class
1320 .getDeclaredMethod("getConstructorId", Class.class);
1321 getConstructorId.setAccessible(true);
1322 final long constructorId = (Long) getConstructorId.invoke(null, Object.class);