Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getNamedItem (0.15 sec)

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

                    if (attr == null || !attrValue.equals(attr.getNodeValue())) {
                        return false;
                    }
                }
                if (id == null) {
                    if (css == null) {
                        return true;
                    }
                    final Node classAttr = node.getAttributes().getNamedItem("class");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

                            final NamedNodeMap attributes = node.getAttributes();
                            if (attributes != null) {
                                final Node classAttr = attributes.getNamedItem("class");
                                if (classAttr != null) {
                                    final String value = classAttr.getNodeValue();
                                    if (StringUtil.isNotBlank(value)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

                final XPathNodes list = getXPathAPI().selectNodeList(document, "//BASE");
                if (list.size() > 0) {
                    final Node node = list.get(0);
                    final Node attrNode = node.getAttributes().getNamedItem("href");
                    if (attrNode != null) {
                        String attrValue = attrNode.getNodeValue();
                        if (StringUtil.isNotBlank(attrValue)) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            }
            return null;
        }
    
        protected String getThumbnailSrc(final String url, final NamedNodeMap attributes) {
            final Node srcNode = attributes.getNamedItem("src");
            if (srcNode != null) {
                try {
                    final URL thumbnailUrl = getURL(url, srcNode.getTextContent());
                    if (thumbnailUrl != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 41.9K bytes
    - Viewed (0)
Back to top