return new Object[]{DURATION_TYPE, ".valueOf(", pValue, ")"};
}
public Object getCastFromString(SimpleTypeSG pController, String pValue) throws SAXException {
try {
return new DatatypeConverterImpl().parseDuration(pValue);
} catch (RuntimeException e) {
throw new LocSAXException("Failed to convert string value to dateTime instance: " + pValue, getLocator());
}
}