- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for protectedMethod (0.05 sec)
-
src/test/java/org/codelibs/fess/annotation/SecuredTest.java
static class PrivateMethodClass { @Secured({ "PRIVATE_ROLE" }) private void privateMethod() { } @Secured({ "PROTECTED_ROLE" }) protected void protectedMethod() { } @Secured({ "PACKAGE_ROLE" }) void packageMethod() { } } public void test_privateMethodAnnotation() throws NoSuchMethodException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.2K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java
} private static class VisibilityMethods { private void privateMethod() {} void packagePrivateMethod() {} @Keep protected void protectedMethod() {} @Keep public void publicMethod() {} } public void testVisibility_public() throws Exception { assertFalse(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 47.7K bytes - Viewed (0)