Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for inheritance (0.08 sec)

  1. src/test/java/org/codelibs/fess/exception/SearchQueryExceptionTest.java

                    break;
                }
            }
            assertTrue(foundTestMethod);
        }
    
        public void test_inheritanceHierarchy() {
            // Test inheritance hierarchy
            SearchQueryException exception = new SearchQueryException("Inheritance test");
    
            assertTrue(exception instanceof SearchQueryException);
            assertTrue(exception instanceof FessSystemException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java

            }
        }
    
        public void test_exceptionInheritance() {
            // Test exception inheritance hierarchy
            CommandExecutionException exception = new CommandExecutionException("Test");
    
            // Check inheritance chain
            assertTrue(exception instanceof CommandExecutionException);
            assertTrue(exception instanceof FessSystemException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java

            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_instanceOf() {
            // Test inheritance hierarchy
            UnsupportedSearchException exception = new UnsupportedSearchException("test");
    
            assertTrue(exception instanceof UnsupportedSearchException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.java

        }
    
        public void test_inheritanceHierarchy() {
            // Test the inheritance hierarchy
            ParseException parseException = new ParseException("Hierarchy test");
            QueryParseException queryParseException = new QueryParseException(parseException);
    
            // Verify inheritance chain
            assertTrue(queryParseException instanceof QueryParseException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/AbstractStreamingHasher.java

     * entire "chunk" (of implementation-dependent length) is ready to be hashed.
     *
     * @author Kevin Bourrillion
     * @author Dimitris Andreou
     */
    // TODO(kevinb): this class still needs some design-and-document-for-inheritance love
    abstract class AbstractStreamingHasher extends AbstractHasher {
      /** Buffer via which we pass data to the hash algorithm (the implementor) */
      private final ByteBuffer buffer;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java

            } catch (Exception e) {
                fail("Should have caught DataStoreException");
            }
        }
    
        public void test_inheritance() {
            // Test inheritance hierarchy
            DataStoreException exception = new DataStoreException("Test");
    
            assertTrue(exception instanceof DataStoreException);
            assertTrue(exception instanceof FessSystemException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java

            assertNotNull(newItem);
            assertEquals(0L, newItem.getId());
        }
    
        public void test_idFieldAccess() {
            // Test direct field access through inheritance
            TestDictionaryItem item = new TestDictionaryItem();
    
            // Direct field assignment
            item.id = 999L;
    
            // Verify through getter
            assertEquals(999L, item.getId());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java

        }
    
        // Test constructor
        public void test_constructor() {
            // Test that constructor creates a non-null instance
            assertNotNull(crawlerEngineClient);
        }
    
        // Test inheritance
        public void test_inheritance() {
            // Test that CrawlerEngineClient is properly inherited
            assertTrue(crawlerEngineClient instanceof org.codelibs.fess.crawler.client.FesenClient);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/lang/ClassIterator.java

    import java.util.NoSuchElementException;
    
    import org.codelibs.core.exception.ClUnsupportedOperationException;
    import org.codelibs.core.message.MessageFormatter;
    
    /**
     * An {@link Iterator} that iterates through the inheritance hierarchy of a class towards its superclasses.
     * <p>
     * Usage example:
     * </p>
     *
     * <pre>
     * import static org.codelibs.core.lang.ClassIterator.*;
     *
     * Class&lt;?&gt; someClass = ...;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 3.9K bytes
    - Viewed (0)
Back to top