コード例 #1
0
 public AttachmentTable(Attachment a) {
   this.idAttachment = a.getUUID();
   this.fileName = a.getName();
   this.attachmentType = a.getAttachmentTypeAsString();
   this.dateCreated = a.getDateCreated();
   this.lastModified = a.getLastModified();
   if (a.getWiki() != null) {
     this.wikitextTable = new WikitextTable(a.getWiki().getUUID());
   }
   this.fileBlob = a.getBytes();
 }