1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package com.germinus.easyconf.taglib;
17
18 import javax.servlet.jsp.tagext.TagData;
19 import javax.servlet.jsp.tagext.TagExtraInfo;
20 import javax.servlet.jsp.tagext.VariableInfo;
21
22 /***
23 * Used to declare the property value as a JSP scripting variable
24 *
25 * @author jferrer
26 */
27 public class ConfigurationObjectTei extends TagExtraInfo {
28
29 /***
30 * Return information about the scripting variables to be created.
31 */
32 public VariableInfo[] getVariableInfo(TagData data) {
33
34 String type = (String)data.getAttribute("type");
35
36 return new VariableInfo[] {
37 new VariableInfo(data.getAttributeString("id"),
38 type,
39 true,
40 VariableInfo.AT_END )
41 };
42
43 }
44 }