public void processOffDocumentItem(OffDocumentItem oDI) {
if (log.isDebugEnabled()) {
log.debug("Handling OffDocumentItem: " + oDI.getName());
}
if (oDI instanceof OffDocumentExtensionAttachment) {
ExtensionAttachment attachment = ((OffDocumentExtensionAttachment)oDI).getAttachment();
if (PSSetupCode.CATEGORY.equals(attachment.getCategory())) {
PSSetupCode setupCode = (PSSetupCode)attachment;
if (setupCodeList == null) {
setupCodeList = new java.util.ArrayList();
}
setupCodeList.add(setupCode);