*/
@Override
public void startElement(String uri, String localName, String name,
Attributes attributes) throws SAXException {
if(name.equalsIgnoreCase(XMLConstants.FORCEFIELD)){
ForceField field = new ForceField();
field.setShortName(attributes.getValue(XMLConstants.FORCEFIELDSHORTNAME));
field.setName(attributes.getValue(XMLConstants.FORCEFIELDNAME));
forcefields.add(field);
}
if(name.equalsIgnoreCase(XMLConstants.WATERMODEL))
watermodels.add(attributes.getValue(XMLConstants.WATERMODELNAME));
}