01: package org.emforge.xfer;
02:
03: /** History item for attachment
04: *
05: */
06: public class AttachmentHistoryTO extends HistoryTO {
07: private AttachmentTO attachment;
08:
09: public AttachmentTO getAttachment() {
10: return attachment;
11: }
12:
13: public void setAttachment(AttachmentTO i_attachment) {
14: attachment = i_attachment;
15: }
16: }
|