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

io.github.mivek.model.Country Maven / Gradle / Ivy

package io.github.mivek.model;

/**
 * Country class.
 * @author mivek
 */
public class Country {
    /**
     * Name of the country.
     */
    private String name;

    /**
     * Getter of name.
     * @return the name.
     */
    public String getName() {
        return name;
    }

    /**
     * Setter of name.
     * @param pName the name to set.
     */
    public void setName(final String pName) {
        name = pName;
    }

    @Override
    public final String toString() {
        return name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy