Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BaseThumbnailGenerator (0.07 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

    public class BaseThumbnailGeneratorTest extends UnitFessTestCase {
    
        private TestThumbnailGenerator generator;
    
        // Test concrete implementation for testing abstract BaseThumbnailGenerator
        private static class TestThumbnailGenerator extends BaseThumbnailGenerator {
            private boolean generateCalled = false;
            private boolean destroyCalled = false;
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. 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)
Back to top