1 2 3 24 package com.geinuke.vo; 25 26 import java.io.Serializable ; 27 import java.util.ArrayList ; 28 29 30 public class WikiArticleVO implements Serializable { 31 protected int WAId=-1; 32 protected String name=null; 33 protected String text=null; 34 protected ArrayList fileList=null; 35 protected boolean blocked=false; 36 protected long time=0; 37 38 39 public WikiArticleVO() { 40 this.fileList=new ArrayList (); 41 } 42 public String getName() { 43 return name; 44 } 45 public void setName(String name) { 46 this.name = name; 47 } 48 public String getText() { 49 return text; 50 } 51 public void setText(String text) { 52 this.text = text; 53 } 54 public int getWAId() { 55 return WAId; 56 } 57 public void setWAId(int id) { 58 WAId = id; 59 } 60 public ArrayList getFileList() { 61 return fileList; 62 } 63 public void setFileList(ArrayList fileList) { 64 this.fileList = fileList; 65 } 66 public long getTime() { 67 return time; 68 } 69 public void setTime(long time) { 70 this.time = time; 71 } 72 75 public boolean isBlocked() { 76 return blocked; 77 } 78 81 public void setBlocked(boolean blocked) { 82 this.blocked = blocked; 83 } 84 } 85 | Popular Tags |