Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for startDocument (0.38 sec)

  1. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            assertTrue(result.contains("fileConfig"));
        }
    
        public void test_getSAXHandlerMethods() throws SAXException {
            GsaConfigParser parser = new GsaConfigParser();
    
            parser.startDocument();
    
            char[] chars = "test".toCharArray();
            parser.characters(chars, 0, chars.length);
    
            parser.endDocument();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

         * Initializes internal data structures for processing the GSA configuration.
         *
         * @throws SAXException if a SAX error occurs during initialization
         */
        @Override
        public void startDocument() throws SAXException {
            tagQueue = new LinkedList<>();
            labelList = new ArrayList<>();
            labelType = null;
        }
    
        /**
         * SAX event handler called at the end of document parsing.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
Back to top