Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fromComponentNameToClassName (1.06 sec)

  1. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

                String[] array = className.split("\\.");
                return array.length > 0 ? decapitalizeName(array[array.length - 1]) : null;
            }
    
            // Not part of interface
            public String fromComponentNameToClassName(String componentName) {
                if (componentName == null) {
                    return null;
                }
                return capitalizeName(componentName);
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
Back to top