01: /*
02: * Created on Mar 10, 2004
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.xdev.base.xssl.text;
08:
09: import java.util.HashMap;
10:
11: /**
12: * @author AYegorov
13: *
14: * To change the template for this generated type comment go to
15: * Window>Preferences>Java>Code Generation>Code and Comments
16: */
17: public class TextLower extends TextAppend {
18: /**
19: * @param id
20: */
21: public TextLower(String id) {
22: super (id);
23: // XXX Auto-generated constructor stub
24: }
25:
26: /**
27: * @param id
28: * @param properties
29: */
30: public TextLower(String id, HashMap properties) {
31: super (id, properties);
32: // XXX Auto-generated constructor stub
33: }
34:
35: /* (non-Javadoc)
36: * @see org.xdev.base.xssl.text.AbstractText#processText(java.lang.String)
37: */
38: public Object getObjectValue() {
39: return super.getObjectValue().toString().toLowerCase();
40: }
41: }
|