Source Code Cross Referenced for HtmlTableHeaderCell.java in  » Testing » htmlunit » com » gargoylesoftware » htmlunit » html » 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 » Testing » htmlunit » com.gargoylesoftware.htmlunit.html 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright (c) 2002-2008 Gargoyle Software Inc. All rights reserved.
003:         *
004:         * Redistribution and use in source and binary forms, with or without
005:         * modification, are permitted provided that the following conditions are met:
006:         *
007:         * 1. Redistributions of source code must retain the above copyright notice,
008:         *    this list of conditions and the following disclaimer.
009:         * 2. Redistributions in binary form must reproduce the above copyright notice,
010:         *    this list of conditions and the following disclaimer in the documentation
011:         *    and/or other materials provided with the distribution.
012:         * 3. The end-user documentation included with the redistribution, if any, must
013:         *    include the following acknowledgment:
014:         *
015:         *       "This product includes software developed by Gargoyle Software Inc.
016:         *        (http://www.GargoyleSoftware.com/)."
017:         *
018:         *    Alternately, this acknowledgment may appear in the software itself, if
019:         *    and wherever such third-party acknowledgments normally appear.
020:         * 4. The name "Gargoyle Software" must not be used to endorse or promote
021:         *    products derived from this software without prior written permission.
022:         *    For written permission, please contact info@GargoyleSoftware.com.
023:         * 5. Products derived from this software may not be called "HtmlUnit", nor may
024:         *    "HtmlUnit" appear in their name, without prior written permission of
025:         *    Gargoyle Software Inc.
026:         *
027:         * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
028:         * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
029:         * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARGOYLE
030:         * SOFTWARE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
031:         * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
032:         * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
033:         * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
034:         * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
035:         * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
036:         * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
037:         */
038:        package com.gargoylesoftware.htmlunit.html;
039:
040:        import java.util.Map;
041:
042:        /**
043:         *  Wrapper for the html "th" tag
044:         *
045:         * @version $Revision: 2132 $
046:         * @author <a href="mailto:mbowler@GargoyleSoftware.com">Mike Bowler</a>
047:         * @author David K. Taylor
048:         * @author <a href="mailto:cse@dynabean.de">Christian Sell</a>
049:         * @author Ahmed Ashour
050:         */
051:        public class HtmlTableHeaderCell extends HtmlTableCell {
052:
053:            private static final long serialVersionUID = -8210579268968959585L;
054:
055:            /** the HTML tag represented by this element */
056:            public static final String TAG_NAME = "th";
057:
058:            /**
059:             * Create an instance
060:             *
061:             * @param page The page that this element is contained within
062:             * @param attributes the initial attributes
063:             * @deprecated You should not directly construct HtmlTableHeaderCell.
064:             */
065:            //TODO: to be removed, deprecated after 1.11
066:            public HtmlTableHeaderCell(final HtmlPage page, final Map attributes) {
067:                this (null, TAG_NAME, page, attributes);
068:            }
069:
070:            /**
071:             * Create an instance
072:             *
073:             * @param namespaceURI the URI that identifies an XML namespace.
074:             * @param qualifiedName The qualified name of the element type to instantiate
075:             * @param page The page that this element is contained within
076:             * @param attributes the initial attributes
077:             */
078:            HtmlTableHeaderCell(final String namespaceURI,
079:                    final String qualifiedName, final HtmlPage page,
080:                    final Map attributes) {
081:                super (namespaceURI, qualifiedName, page, attributes);
082:            }
083:
084:            /**
085:             * Return the value of the attribute "abbr".  Refer to the
086:             * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
087:             * documentation for details on the use of this attribute.
088:             *
089:             * @return The value of the attribute "abbr"
090:             * or an empty string if that attribute isn't defined.
091:             */
092:            public final String getAbbrAttribute() {
093:                return getAttributeValue("abbr");
094:            }
095:
096:            /**
097:             * Return the value of the attribute "axis".  Refer to the
098:             * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
099:             * documentation for details on the use of this attribute.
100:             *
101:             * @return The value of the attribute "axis"
102:             * or an empty string if that attribute isn't defined.
103:             */
104:            public final String getAxisAttribute() {
105:                return getAttributeValue("axis");
106:            }
107:
108:            /**
109:             * Return the value of the attribute "headers".  Refer to the
110:             * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
111:             * documentation for details on the use of this attribute.
112:             *
113:             * @return The value of the attribute "headers"
114:             * or an empty string if that attribute isn't defined.
115:             */
116:            public final String getHeadersAttribute() {
117:                return getAttributeValue("headers");
118:            }
119:
120:            /**
121:             * Return the value of the attribute "scope".  Refer to the
122:             * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
123:             * documentation for details on the use of this attribute.
124:             *
125:             * @return The value of the attribute "scope"
126:             * or an empty string if that attribute isn't defined.
127:             */
128:            public final String getScopeAttribute() {
129:                return getAttributeValue("scope");
130:            }
131:
132:            /**
133:             * Return the value of the attribute "rowspan".  Refer to the
134:             * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
135:             * documentation for details on the use of this attribute.
136:             *
137:             * @return The value of the attribute "rowspan"
138:             * or an empty string if that attribute isn't defined.
139:             */
140:            public final String getRowSpanAttribute() {
141:                return getAttributeValue("rowspan");
142:            }
143:
144:            /**
145:             * Return the value of the attribute "colspan".  Refer to the
146:             * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
147:             * documentation for details on the use of this attribute.
148:             *
149:             * @return The value of the attribute "colspan"
150:             * or an empty string if that attribute isn't defined.
151:             */
152:            public final String getColumnSpanAttribute() {
153:                return getAttributeValue("colspan");
154:            }
155:
156:            /**
157:             * Return the value of the attribute "align".  Refer to the
158:             * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
159:             * documentation for details on the use of this attribute.
160:             *
161:             * @return The value of the attribute "align"
162:             * or an empty string if that attribute isn't defined.
163:             */
164:            public final String getAlignAttribute() {
165:                return getAttributeValue("align");
166:            }
167:
168:            /**
169:             * Return the value of the attribute "char".  Refer to the
170:             * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
171:             * documentation for details on the use of this attribute.
172:             *
173:             * @return The value of the attribute "char"
174:             * or an empty string if that attribute isn't defined.
175:             */
176:            public final String getCharAttribute() {
177:                return getAttributeValue("char");
178:            }
179:
180:            /**
181:             * Return the value of the attribute "charoff".  Refer to the
182:             * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
183:             * documentation for details on the use of this attribute.
184:             *
185:             * @return The value of the attribute "charoff"
186:             * or an empty string if that attribute isn't defined.
187:             */
188:            public final String getCharoffAttribute() {
189:                return getAttributeValue("charoff");
190:            }
191:
192:            /**
193:             * Return the value of the attribute "valign".  Refer to the
194:             * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
195:             * documentation for details on the use of this attribute.
196:             *
197:             * @return The value of the attribute "valign"
198:             * or an empty string if that attribute isn't defined.
199:             */
200:            public final String getValignAttribute() {
201:                return getAttributeValue("valign");
202:            }
203:
204:            /**
205:             * Return the value of the attribute "nowrap".  Refer to the
206:             * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
207:             * documentation for details on the use of this attribute.
208:             *
209:             * @return The value of the attribute "nowrap"
210:             * or an empty string if that attribute isn't defined.
211:             */
212:            public final String getNoWrapAttribute() {
213:                return getAttributeValue("nowrap");
214:            }
215:
216:            /**
217:             * Return the value of the attribute "bgcolor".  Refer to the
218:             * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
219:             * documentation for details on the use of this attribute.
220:             *
221:             * @return The value of the attribute "bgcolor"
222:             * or an empty string if that attribute isn't defined.
223:             */
224:            public final String getBgcolorAttribute() {
225:                return getAttributeValue("bgcolor");
226:            }
227:
228:            /**
229:             * Return the value of the attribute "width".  Refer to the
230:             * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
231:             * documentation for details on the use of this attribute.
232:             *
233:             * @return The value of the attribute "width"
234:             * or an empty string if that attribute isn't defined.
235:             */
236:            public final String getWidthAttribute() {
237:                return getAttributeValue("width");
238:            }
239:
240:            /**
241:             * Return the value of the attribute "height".  Refer to the
242:             * <a href='http://www.w3.org/TR/html401/'>HTML 4.01</a>
243:             * documentation for details on the use of this attribute.
244:             *
245:             * @return The value of the attribute "height"
246:             * or an empty string if that attribute isn't defined.
247:             */
248:            public final String getHeightAttribute() {
249:                return getAttributeValue("height");
250:            }
251:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.