public void setValue(PropertySG pController, JavaMethod pMethod, DirectAccessible pElement, Object pValue, JavaQName pType) throws SAXException {
if (pValue != null) {
pValue = new Object[]{"(", pType, ") ", pValue};
}
LocalJavaField list = pMethod.newJavaField(List.class);
list.addLine(pController.getValue(pElement));
pMethod.addLine(list, ".clear();");
pMethod.addLine(list, ".addAll(", pValue, ");");
}
public void addValue(PropertySG pController, JavaMethod pMethod, DirectAccessible pElement, Object pValue, JavaQName pType) throws SAXException {