1 17 18 19 package javax.servlet.jsp.tagext; 20 21 192 193 public class VariableInfo { 194 195 199 public static final int NESTED = 0; 200 201 204 public static final int AT_BEGIN = 1; 205 206 209 public static final int AT_END = 2; 210 211 212 223 224 public VariableInfo(String varName, 225 String className, 226 boolean declare, 227 int scope) { 228 this.varName = varName; 229 this.className = className; 230 this.declare = declare; 231 this.scope = scope; 232 } 233 234 236 241 public String getVarName() { 242 return varName; 243 } 244 245 250 public String getClassName() { 251 return className; 252 } 253 254 260 public boolean getDeclare() { 261 return declare; 262 } 263 264 273 public int getScope() { 274 return scope; 275 } 276 277 278 private String varName; 280 private String className; 281 private boolean declare; 282 private int scope; 283 } 284 285 | Popular Tags |