Input Verifier - pola wymagane poprawione
This commit is contained in:
parent
100efa20f7
commit
264b557d48
@ -29,6 +29,11 @@ public class Validation extends InputVerifier {
|
||||
public Validation() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean verify(JComponent input) {
|
||||
return checkField(input);
|
||||
}
|
||||
|
||||
public boolean checkField(JComponent input) {
|
||||
JTextField tf = (JTextField) input;
|
||||
if (required) {
|
||||
@ -37,7 +42,7 @@ public class Validation extends InputVerifier {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
if (input.getName() != null){
|
||||
if (input.getName() != null) {
|
||||
if (input.getName().equals("year")) {
|
||||
if (!"".equals(tf.getText())) {
|
||||
try {
|
||||
@ -70,9 +75,4 @@ public class Validation extends InputVerifier {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean verify(JComponent input) {
|
||||
return checkField(input);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user