added hasXX-methods

This commit is contained in:
stefanp 2004-01-05 13:20:11 +00:00
parent c18761625b
commit 50be1bb115

View file

@ -36,4 +36,12 @@ public class Config {
return (websrvPort != null || ajp13Port != null || rmiPort != null || xmlrpcPort != null);
}
public boolean hasPropFile() {
return (propFile != null);
}
public boolean hasHomeDir() {
return (homeDir != null);
}
}