public void forAllValues(SimpleTypeSG pController, JavaMethod pMethod, Object pValue, SGlet pSGlet) throws SAXException {
pSGlet.generate(pMethod, pValue);
}
public boolean isCausingParseConversionEvent(SimpleTypeSG pController) {
final AtomicTypeSG atomicType = pController.getAtomicType();
/* See addValidation(SimpleTypeSG, JavaMethod, DirectAccessible) for
* when an exception can be thrown.
*/
return atomicType.getLength() != null
|| atomicType.getMinLength() != null
|| atomicType.getMaxLength() != null;
}