AddFileBean.java
上传用户:xiao85513
上传日期:2010-01-11
资源大小:2160k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

Java

  1. package beanclass;
  2. public class AddFileBean
  3. {
  4.   String bigname;
  5.   String smallname;
  6.   String title;
  7.   String author;
  8.   String version;
  9.   String content;
  10.   String filepath;
  11.   String images;
  12.   int id;
  13.   public void AddFileBean(){}
  14.   public int getId()
  15.   {
  16.     return this.id;
  17.   }
  18.   
  19.   public void setId(int newid)
  20.   {
  21.     this.id=newid;
  22.   }
  23.   
  24.   public void setBigname(String newid)
  25.   {
  26.     this.bigname=newid;
  27.   }
  28.   public String getBigname()
  29.   {
  30.     return this.bigname;
  31.   }
  32.    public void setSmallname(String newnum)
  33.   {
  34.     this.smallname=newnum;
  35.   }
  36.   public String getSmallname()
  37.   {
  38.     return this.smallname;
  39.   }
  40.   
  41.   public void setTitle(String newnum)
  42.   {
  43.     this.title=newnum;
  44.   }
  45.   public String getTitle()
  46.   {
  47.     return this.title;
  48.   }
  49.   public void setAuthor(String newnum)
  50.   {
  51.     this.author=newnum;
  52.   }
  53.   public String getAuthor()
  54.   {
  55.     return this.author;
  56.   }
  57.   
  58.   
  59.   public String getVersion()
  60.   {
  61.     return this.version;
  62.   }
  63.   
  64.   public void setVersion(String newnum)
  65.   {
  66.     this.version=newnum;
  67.   }
  68.   public String getContent()
  69.   {
  70.     return this.content;
  71.   }
  72.   public void setContent(String newnum)
  73.   {
  74.     this.content=newnum;
  75.   }
  76.   public String getFilepath()
  77.   {
  78.     return this.filepath;
  79.   }
  80.     public void setFilepath(String newnum)
  81.   {
  82.     this.filepath=newnum;
  83.   }
  84.   
  85.    public String getImages()
  86.   {
  87.     return this.images;
  88.   }
  89.     public void setImages(String newnum)
  90.   {
  91.     this.images=newnum;
  92.   }
  93. }