creator = new WebAppContextParamCreator();
}
public void parse(Object context, Node webappSubnode) throws SAXException {
MutableWebAppConfiguration webapp = (MutableWebAppConfiguration) context;
WebAppContextParam contextParam
= (WebAppContextParam) creator.create(webappSubnode);
if (contextParam != null) {
webapp.addContextParam(contextParam);
}
}