Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EmptyGenerator (0.16 sec)

  1. src/main/java/org/codelibs/fess/thumbnail/impl/EmptyGenerator.java

     * This class is used as a no-op thumbnail generator when thumbnail generation is disabled
     * or when no specific thumbnail generator is configured.
     */
    public class EmptyGenerator extends BaseThumbnailGenerator {
    
        /**
         * Default constructor.
         */
        public EmptyGenerator() {
            super();
        }
    
        /**
         * Generates a thumbnail for the specified ID and output file.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java

            assertFalse(emptyGenerator.generate(null, null));
        }
    
        public void test_destroy() {
            // Initialize without container
            emptyGenerator = new EmptyGenerator();
    
            // Test that destroy method can be called without error
            emptyGenerator.destroy();
            // Call destroy multiple times to ensure it's safe
            emptyGenerator.destroy();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.3K bytes
    - Viewed (0)
Back to top