- Sort Score
- Num 10 results
- Language All
Results 61 - 62 of 62 for isPublic (0.45 seconds)
-
src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java
assertTrue("process method should be abstract", Modifier.isAbstract(processMethod.getModifiers())); assertTrue("process method should be public", Modifier.isPublic(processMethod.getModifiers())); } catch (NoSuchMethodException e) { fail("process method should exist"); } } // Test constructor @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 26.3K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java
for (Method method : cls.getDeclaredMethods()) { Invokable<?, ?> invokable = Invokable.from(method); invokable.setAccessible(true); if (invokable.isPublic() && invokable.isStatic() && !invokable.isSynthetic()) { builder.add(invokable); } } return new FactoryMethodReturnValueTester(cls, builder.build(), "public static methods"); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Apr 02 14:49:41 GMT 2026 - 32.5K bytes - Click Count (0)