* @param theIdent
* identification
* @return information on the object associated with the given identifier
*/
public String getInformation(String theIdent) {
InformationObject io = informationObjects.get(theIdent);
if (io == null) {
return "No information about " + theIdent + " available!!";
}
return io.getInfo();
}