double y = resp.content().readDouble();
double z = resp.content().readDouble();
output = new SumoPosition3D(x,y,z);
}else if(sc.output_type == Constants.TYPE_STRINGLIST){
SumoStringList ssl = new SumoStringList();
int laenge = resp.content().readInt();
for(int i=0; i<laenge; i++){
ssl.add(resp.content().readStringASCII());
}
output = ssl;
}else if(sc.output_type == Constants.TYPE_BOUNDINGBOX){