Source Code Cross Referenced for InputTag.java in  » Portal » gridsphere » org » gridsphere » provider » portletui » tags » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Portal » gridsphere » org.gridsphere.provider.portletui.tags 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package org.gridsphere.provider.portletui.tags;
002:
003:        import org.gridsphere.provider.portletui.beans.ValidatorBean;
004:
005:        import javax.servlet.jsp.JspException;
006:        import java.util.ArrayList;
007:        import java.util.List;
008:
009:        /**
010:         * A <code>TextFieldTag</code> represents a text field element
011:         */
012:        public abstract class InputTag extends BaseComponentTag {
013:
014:            protected List<ValidatorBean> validatorBeans = new ArrayList<ValidatorBean>();
015:
016:            protected String onFocus = null;
017:            protected String onClick = null;
018:            protected String onDblClick = null;
019:            protected String onChange = null;
020:            protected String onBlur = null;
021:            protected String onSelect = null;
022:
023:            protected String onmousedown = null;
024:            protected String onmousemove = null;
025:            protected String onmouseout = null;
026:            protected String onmouseover = null;
027:            protected String onmouseup = null;
028:
029:            /**
030:             * Sets the onFocus JavaScript function
031:             *
032:             * @param onFocus the onFocus JavaScript function
033:             */
034:            public void setOnFocus(String onFocus) {
035:                this .onFocus = onFocus;
036:            }
037:
038:            /**
039:             * Returns the onFocus JavaScript function
040:             *
041:             * @return onFocus JavaScript function
042:             */
043:            public String getOnFocus() {
044:                return onFocus;
045:            }
046:
047:            /**
048:             * Returns the onClick javascript function
049:             *
050:             * @return the onClick javascript function
051:             */
052:            public String getOnClick() {
053:                return onClick;
054:            }
055:
056:            /**
057:             * Sets the onClick JavaScript function
058:             *
059:             * @param onClick the onClick JavaScript function
060:             */
061:            public void setOnClick(String onClick) {
062:                this .onClick = onClick;
063:            }
064:
065:            /**
066:             * Returns the onDblClick javascript function
067:             *
068:             * @return the onDblClick javascript function
069:             */
070:            public String getOnDblClick() {
071:                return onDblClick;
072:            }
073:
074:            /**
075:             * Sets the onDblClick JavaScript function
076:             *
077:             * @param onDblClick the onDblClick JavaScript function
078:             */
079:            public void setOnDblClick(String onDblClick) {
080:                this .onDblClick = onDblClick;
081:            }
082:
083:            /**
084:             * Returns the onChange JavaScript function
085:             *
086:             * @return onChange JavaScript function
087:             */
088:            public String getOnChange() {
089:                return onChange;
090:            }
091:
092:            /**
093:             * Sets the onChange JavaScript function
094:             *
095:             * @param onChange the onChange JavaScript function
096:             */
097:            public void setOnChange(String onChange) {
098:                this .onChange = onChange;
099:            }
100:
101:            /**
102:             * Returns the onBlur JavaScript function
103:             *
104:             * @return onBlur JavaScript function
105:             */
106:            public String getOnBlur() {
107:                return onBlur;
108:            }
109:
110:            /**
111:             * Sets the onBlur JavaScript function
112:             *
113:             * @param onBlur the onBlur JavaScript function
114:             */
115:            public void setOnBlur(String onBlur) {
116:                this .onBlur = onBlur;
117:            }
118:
119:            /**
120:             * Returns the onSelect JavaScript function
121:             *
122:             * @return onSelect JavaScript function
123:             */
124:            public String getOnSelect() {
125:                return onSelect;
126:            }
127:
128:            /**
129:             * Sets the onSelect JavaScript function
130:             *
131:             * @param onSelect the onSelect JavaScript function
132:             */
133:            public void setOnSelect(String onSelect) {
134:                this .onSelect = onSelect;
135:            }
136:
137:            /**
138:             * Returns the onmousedown event
139:             *
140:             * @return the onmousedown function
141:             */
142:            public String getOnMouseDown() {
143:                return onmousedown;
144:            }
145:
146:            /**
147:             * Sets the onmousedown event
148:             *
149:             * @param onmousedown the onmousedown function
150:             */
151:            public void setOnMouseDown(String onmousedown) {
152:                this .onmousedown = onmousedown;
153:            }
154:
155:            /**
156:             * Returns the onmousemove function
157:             *
158:             * @return the onmousemove function
159:             */
160:            public String getOnMouseMove() {
161:                return onmousemove;
162:            }
163:
164:            /**
165:             * Sets the onmousemove function
166:             *
167:             * @param onmousemove the onmousemove function
168:             */
169:            public void setOnMouseMove(String onmousemove) {
170:                this .onmousemove = onmousemove;
171:            }
172:
173:            /**
174:             * Returns the onmouseout function
175:             *
176:             * @return the onmouseout function
177:             */
178:            public String getOnMouseOut() {
179:                return onmouseout;
180:            }
181:
182:            /**
183:             * Sets the onmouseout function
184:             *
185:             * @param onmouseout the onmouseout function
186:             */
187:            public void setOnMouseOut(String onmouseout) {
188:                this .onmouseout = onmouseout;
189:            }
190:
191:            /**
192:             * Returns the onmouseover function
193:             *
194:             * @return the onmouseover function
195:             */
196:            public String getOnMouseOver() {
197:                return onmouseover;
198:            }
199:
200:            /**
201:             * Sets the onmouseover javascript function
202:             *
203:             * @param onmouseover the onmouseover function
204:             */
205:            public void setOnMouseOver(String onmouseover) {
206:                this .onmouseover = onmouseover;
207:            }
208:
209:            /**
210:             * Returns the onMouseUp javascript function
211:             *
212:             * @return the onmouseup event
213:             */
214:            public String getOnMouseUp() {
215:                return onmouseup;
216:            }
217:
218:            /**
219:             * Sets the onMouseUp javascript function
220:             *
221:             * @param onmouseup a mouseup event
222:             */
223:            public void setOnMouseUp(String onmouseup) {
224:                this .onmouseup = onmouseup;
225:            }
226:
227:            public abstract int doStartTag() throws JspException;
228:
229:            public abstract int doEndTag() throws JspException;
230:
231:            public void addValidatorBean(ValidatorBean validatorBean) {
232:                validatorBeans.add(validatorBean);
233:            }
234:
235:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.