Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

            return geoLocation;
        }
    
        /**
         * Sets the geographic location of the image.
         * @param geoLocation the geographic location to set
         */
        public void setGeoLocation(final String geoLocation) {
            this.geoLocation = geoLocation;
        }
    
        /**
         * Gets the title of the image.
         * @return the title
         */
        public String getTitle() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                        buf = null;
                    }
                } else if (IMAGE_GEO_LOCATION_ELEMENT.equals(elementName)) {
                    if (buf != null && currentImage != null) {
                        currentImage.setGeoLocation(buf.toString().trim());
                        buf = null;
                    }
                } else if (IMAGE_TITLE_ELEMENT.equals(elementName)) {
                    if (buf != null && currentImage != 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