Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isAnnotation (0.22 sec)

  1. src/test/java/org/codelibs/fess/validation/CronExpressionTest.java

            assertEquals(0, annotation.payload().length);
        }
    
        // Test annotation target elements
        public void test_annotationTargetElements() {
            CronExpression.class.isAnnotation();
            assertTrue(CronExpression.class.isAnnotation());
    
            // Check that annotation can be applied to METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

            super.setUp();
        }
    
        // Test annotation presence and structure
        public void test_annotationPresence() {
            assertTrue("CustomSize should be an annotation", CustomSize.class.isAnnotation());
        }
    
        // Test annotation retention policy
        public void test_retentionPolicy() {
            final Retention retention = CustomSize.class.getAnnotation(Retention.class);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/validation/UriTypeTest.java

            super.setUp();
        }
    
        // Test annotation presence and structure
        public void test_annotationPresence() {
            assertTrue("UriType should be an annotation", UriType.class.isAnnotation());
        }
    
        // Test annotation retention policy
        public void test_retentionPolicy() {
            final Retention retention = UriType.class.getAnnotation(Retention.class);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top