|
|
@ -42,6 +42,14 @@ public class Birthdate { |
|
|
|
year = y; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* |
|
|
|
* @param DD |
|
|
|
* @param MM |
|
|
|
* @param YYYY |
|
|
|
* @return true if date is valid. |
|
|
|
* @return false if date is invalid. |
|
|
|
*/ |
|
|
|
public boolean isValid(int DD, int MM, int YYYY) { |
|
|
|
if (DD < 1 || DD > 31) { |
|
|
|
return false; |
|
|
|