Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for buildLabelTypePatternList (0.1 seconds)

  1. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

            buildLabelTypePatternList(labelTypeList);
            return labelTypeList.size();
        }
    
        /**
         * Refreshes the label type items and patterns.
         *
         * @param labelTypeList The list of label types.
         */
        public void refresh(final List<LabelType> labelTypeList) {
            buildLabelTypeItems(labelTypeList);
            buildLabelTypePatternList(labelTypeList);
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java

            try {
                labelTypeHelper.refresh(labelTypeList);
                // Method is protected, so we test it indirectly through refresh
            } catch (Exception e) {
                fail("buildLabelTypePatternList() should not throw an exception: " + e.getMessage());
            }
        }
    
        @Test
        public void test_labelTypePattern_constructor() {
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 12.7K bytes
    - Click Count (0)
Back to Top