Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getInceptionYear (0.19 sec)

  1. maven-compat/src/test/java/org/apache/maven/project/inheritance/t00/ProjectInheritanceTest.java

            // Value inherited from p3
            // ----------------------------------------------------------------------
    
            assertEquals("2000", p4.getInceptionYear());
    
            // ----------------------------------------------------------------------
            // Value taken from p2
            // ----------------------------------------------------------------------
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

            // Value inherited from p3
            // ----------------------------------------------------------------------
    
            assertEquals("2000", project4.getInceptionYear());
    
            // ----------------------------------------------------------------------
            // Value taken from p2
            // ----------------------------------------------------------------------
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        public void setInceptionYear(String inceptionYear) {
            getModel().setInceptionYear(inceptionYear);
        }
    
        public String getInceptionYear() {
            return getModel().getInceptionYear();
        }
    
        public void setUrl(String url) {
            getModel().setUrl(url);
        }
    
        public String getUrl() {
            return getModel().getUrl();
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
Back to top