All Downloads are FREE. Search and download functionalities are using the official Maven repository.

apispec-support.src.main.java.org.gradle.Person Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
package org.gradle;

public class Person {
    private final String name;

    public Person(String name) {
        // we updated the body if this method
        // but the signature doesn't change
        // so we will not recompile components
        // that depend on this class
        this.name = name.toUpperCase();
    }

    public String getName() {
        return name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy