*/
private boolean processStartUp( String[] args ){
boolean ready = false;
TArgs arg = new TArgs (args);
if (arg.isOptionSet ("help")) {
printStartUsage();
return false;
}
if (arg.isOptionSet("host")){
startUp.put("host", arg.get("host"));
ready = true;
}
if(arg.isOptionSet("port")){
int val;
try {
val = Integer.parseInt( arg.get("port") );
}
catch ( NumberFormatException ne ) {
printStartUsage();
return false;
}
startUp.put("port", new Integer(val) );
ready = true;
}
if (arg.isOptionSet( "name" ) ){
ready = true;
}
return ready;