Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for qName (2.06 sec)

  1. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

            if (logger.isDebugEnabled()) {
                logger.debug("Start element: name={}", qName);
            }
            if (tagQueue.isEmpty() && !"eef".equalsIgnoreCase(qName)) {
                throw new GsaConfigException("Invalid GSA configuration format. Root element must be 'eef', but found: " + qName);
            }
            if (COLLECTION.equalsIgnoreCase(qName) && COLLECTIONS.equalsIgnoreCase(tagQueue.peekLast())) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

             * Prefers qName (which includes namespace prefix) but falls back to localName if qName is empty.
             * @param localName the local name without namespace prefix
             * @param qName the qualified name with namespace prefix
             * @return the element name to use
             */
            private String getElementName(final String localName, final String qName) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 14 13:19:40 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java

                if ("field".equals(qName)) {
                    fieldName = attributes.getValue("name");
                    if (StringUtil.isBlank(fieldName)) {
                        fieldName = null;
                    }
                    buffer.setLength(0);
                } else if ("list".equals(qName)) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/xml/SAXParserFactoryUtilTest.java

            parser.parse(is, new DefaultHandler() {
    
                @Override
                public void startElement(final String uri, final String localName, final String qName, final Attributes attributes)
                        throws SAXException {
                    if ("bar".equals(qName)) {
                        included = true;
                    }
                }
    
                @Override
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top