Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setLicenses (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  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);
        }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Aug 29 12:47:20 GMT 2025
    - 67K bytes
    - Click Count (0)
  2. 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) {
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Fri Nov 14 13:19:40 GMT 2025
    - 34.9K bytes
    - Click Count (0)
Back to Top