01: package org.objectweb.salome_tmf.api.data;
02:
03: public class TestAttachmentWrapper {
04: int idTest;
05: FileAttachementWrapper fileAttachment;
06: UrlAttachementWrapper urlAttachment;
07:
08: public FileAttachementWrapper getFileAttachment() {
09: return fileAttachment;
10: }
11:
12: public void setFileAttachment(FileAttachementWrapper fileAttachment) {
13: this .fileAttachment = fileAttachment;
14: }
15:
16: public int getIdTest() {
17: return idTest;
18: }
19:
20: public void setIdTest(int idTest) {
21: this .idTest = idTest;
22: }
23:
24: public UrlAttachementWrapper getUrlAttachment() {
25: return urlAttachment;
26: }
27:
28: public void setUrlAttachment(UrlAttachementWrapper urlAttachment) {
29: this.urlAttachment = urlAttachment;
30: }
31: }
|