| 1 6 7 package fr.improve.struts.taglib.layout.menu; 8 9 14 15 21 public abstract class MenuBase { 22 23 24 protected String name; 25 26 protected String title; 27 28 protected String location; 29 30 protected String target; 31 32 protected String description; 33 34 protected String onClick; 35 36 protected String onMouseOver; 37 38 protected String onMouseOut; 39 40 private String image; 41 42 private String altImage; 43 44 45 private String toolTip; 46 47 48 protected String page; 49 50 51 protected String action; 52 53 54 protected String forward; 55 56 57 protected String style; 58 59 protected String id; 60 61 62 public MenuBase() { 63 } 64 65 public MenuBase(String in_id) { 66 id = in_id; 67 } 68 69 70 73 public String getName() { 74 return name; 75 } 76 79 public void setName(String name) { 80 this.name = name; 81 } 82 85 public String getTitle() { 86 return title; 87 } 88 91 public void setTitle(String title) { 92 this.title = title; 93 } 94 97 public String getLocation() { 98 return location; 99 } 100 103 public void setLocation(String location) { 104 this.location = location; 105 } 106 109 public String getTarget() { 110 return target; 111 } 112 115 public void setTarget(String target) { 116 this.target = target; 117 } 118 121 public String getDescription() { 122 return description; 123 } 124 127 public void setDescription(String description) { 128 this.description = description; 129 } 130 133 public String getOnClick() { 134 return onClick; 135 } 136 139 public void setOnClick(String onClick) { 140 this.onClick = onClick; 141 } 142 145 public String getOnMouseOver() { 146 return onMouseOver; 147 } 148 151 public void setOnMouseOver(String onMouseOver) { 152 this.onMouseOver = onMouseOver; 153 } 154 155 158 public String getOnMouseOut() { 159 return onMouseOut; 160 } 161 164 public void setOnMouseOut(String onMouseOut) { 165 this.onMouseOut = onMouseOut; 166 } 167 168 171 public String getImage() { 172 return image; 173 } 174 177 public void setImage(String image) { 178 this.image = image; 179 } 180 183 public String getAltImage() { 184 return altImage; 185 } 186 189 public void setAltImage(String altImage) { 190 this.altImage = altImage; 191 } 192 195 public String getToolTip() { 196 return toolTip; 197 } 198 201 public void setToolTip(String toolTip) { 202 this.toolTip = toolTip; 203 } 204 208 public String getForward() { 209 return forward; 210 } 211 212 216 public String getPage() { 217 return page; 218 } 219 220 224 public void setForward(String forward) { 225 this.forward = forward; 226 } 227 228 232 public void setPage(String page) { 233 this.page = page; 234 } 235 236 public String getStyle() { 237 return style; 238 } 239 240 public void setStyle(String in_string) { 241 style = in_string; 242 } 243 244 public String getId() { 245 return id; 246 } 247 248 251 public String getAction() { 252 return action; 253 } 254 257 public void setAction(String action) { 258 this.action = action; 259 } 260 } | Popular Tags |