| 1 2 23 package com.geinuke.vo; 24 25 import java.io.Serializable ; 26 27 import com.geinuke.common.NukeModuleI; 28 29 30 public class NukeModuleVO implements NukeModuleI,Serializable { 31 protected int id=-1; 32 protected int pos=-1; 33 protected String content=null; 34 protected String name=null; 35 protected String title=null; 36 protected int weight=-1; 37 protected int width=0; 38 protected String description=null; 39 protected boolean active=false; 40 protected int skin=0; 41 protected boolean dbStored=false; 42 43 public String getContent() { 44 return content; 45 } 46 public void setContent(String content) { 47 this.content = content; 48 } 49 50 public String getDescription() { 51 return description; 52 } 53 public void setDescription(String description) { 54 this.description = description; 55 } 56 public int getId() { 57 return id; 58 } 59 60 public void setId(int id) { 61 this.id = id; 62 } 63 public String getName() { 64 return name; 65 } 66 public void setName(String name) { 67 this.name = name; 68 } 69 public int getPos() { 70 return pos; 71 } 72 public void setPos(int pos) { 73 this.pos = pos; 74 } 75 public int getWeight() { 76 return weight; 77 } 78 public void setWeight(int weight) { 79 this.weight = weight; 80 } 81 82 public boolean isActive() { 83 return active; 84 } 85 public void setActive(boolean active) { 86 this.active = active; 87 } 88 91 public String getTitle() { 92 return title; 93 } 94 97 public void setTitle(String title) { 98 this.title = title; 99 } 100 public int getWidth() { 101 return width; 102 } 103 public void setWidth(int width) { 104 this.width = width; 105 } 106 public int getSkin() { 107 return skin; 108 } 109 public void setSkin(int skin) { 110 this.skin = skin; 111 } 112 public boolean isDbStored() { 113 return dbStored; 114 } 115 public void setDbStored(boolean dbStored) { 116 this.dbStored = dbStored; 117 } 118 } 119 | Popular Tags |