com.anlavn.ui.datechooser.SelectedDate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AL-Library_VN Show documentation
Show all versions of AL-Library_VN Show documentation
Java library for many thing wonderful
package com.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 - 2025 Weber Informatics LLC | Privacy Policy