- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for isAnnotation (0.06 seconds)
-
src/test/java/org/codelibs/fess/validation/CronExpressionTest.java
assertEquals(0, annotation.payload().length); } // Test annotation target elements @Test public void test_annotationTargetElements() { CronExpression.class.isAnnotation(); assertTrue(CronExpression.class.isAnnotation()); // Check that annotation can be applied to METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
super.setUp(testInfo); } // Test annotation presence and structure @Test public void test_annotationPresence() { assertTrue("CustomSize should be an annotation", CustomSize.class.isAnnotation()); } // Test annotation retention policy @Test public void test_retentionPolicy() { final Retention retention = CustomSize.class.getAnnotation(Retention.class);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/UriTypeTest.java
super.setUp(testInfo); } // Test annotation presence and structure @Test public void test_annotationPresence() { assertTrue("UriType should be an annotation", UriType.class.isAnnotation()); } // Test annotation retention policy @Test public void test_retentionPolicy() { final Retention retention = UriType.class.getAnnotation(Retention.class);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 21.3K bytes - Click Count (0)