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

anlavn.ui.datechooser.SelectedDate Maven / Gradle / Ivy

package anlavn.ui.datechooser;

public class SelectedDate {

    public int getDay() {
        return day;
    }

    public void setDay(int day) {
        this.day = day;
    }

    public int getMonth() {
        return month;
    }

    public void setMonth(int month) {
        this.month = month;
    }

    public int getYear() {
        return year;
    }

    public void setYear(int year) {
        this.year = year;
    }

    public SelectedDate(int day, int month, int year) {
        this.day = day;
        this.month = month;
        this.year = year;
    }

    public SelectedDate() {
    }

    private int day;
    private int month;
    private int year;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy