Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setPublicationName (0.05 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapNews.java

        public String getPublicationName() {
            return publicationName;
        }
    
        /**
         * Sets the publication name.
         * @param publicationName the publication name to set
         */
        public void setPublicationName(final String publicationName) {
            this.publicationName = publicationName;
        }
    
        /**
         * Gets the publication language.
         * @return the publication language
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                    inNewsPublication = false;
                } else if (NEWS_NAME_ELEMENT.equals(elementName)) {
                    if (buf != null && currentNews != null) {
                        currentNews.setPublicationName(buf.toString().trim());
                        buf = null;
                    }
                } else if (NEWS_LANGUAGE_ELEMENT.equals(elementName)) {
                    if (buf != null && currentNews != null) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 14 13:19:40 UTC 2025
    - 34.9K bytes
    - Viewed (0)
Back to top