- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for componentName (0.05 sec)
-
src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java
// Test constructor with component name only String componentName = "testComponent"; ContainerNotAvailableException exception = new ContainerNotAvailableException(componentName); assertEquals(componentName + " is not available.", exception.getMessage()); assertNull(exception.getCause()); // Note: This test reveals that componentName field is not set in this constructor
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
} @Override public String fromComponentNameToSuffix(String componentName) { return fromClassNameToSuffix(componentName); } @Override public Class<?> fromComponentNameToClass(String componentName) { try { return Class.forName(componentName); } catch (ClassNotFoundException e) { return null; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
throw new ContainerNotAvailableException(componentName, e); } throw new ContainerNotAvailableException(componentName); } catch (final ComponentNotFoundException | AutoBindingFailureException e) { if (componentMap.containsKey(componentName)) { return (T) componentMap.get(componentName); } throw e; } } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0)