Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setLicenses (0.06 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        public void addTestResource(Resource testResource) {
            addResource(ProjectScope.TEST, testResource);
        }
    
        public void setLicenses(List<License> licenses) {
            getModel().setLicenses(licenses);
        }
    
        public List<License> getLicenses() {
            return getModel().getLicenses();
        }
    
        public void addLicense(License license) {
            getModel().addLicense(license);
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapImage.java

         */
        public String getLicense() {
            return license;
        }
    
        /**
         * Sets the license URL of the image.
         * @param license the license URL to set
         */
        public void setLicense(final String license) {
            this.license = license;
        }
    
        @Override
        public String toString() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                        buf = null;
                    }
                } else if (IMAGE_LICENSE_ELEMENT.equals(elementName)) {
                    if (buf != null && currentImage != null) {
                        currentImage.setLicense(buf.toString().trim());
                        buf = null;
                    }
                } else if (VIDEO_VIDEO_ELEMENT.equals(elementName)) {
                    if (currentVideo != null && sitemapUrl != 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