org.apache.beehive.netui.tags

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 » Library » Apache beehive 1.0.2 src » org.apache.beehive.netui.tags 
org.apache.beehive.netui.tags

Provides the classes and interfaces fundamental to the NetUI tags. The primary abstract base class is {@link org.apache.beehive.netui.tags.AbstractClassicTag}, which most tags extend from. This class provides implementation of most of the basic services used by the NetUI tags. There are three basic types of NetUI Tags based upon how they data bind to objects:

  • Read-only -- These tags bind to their primary value through the value attribute. In addition, many other attributes on tags provide read-only binding.
  • Read-Write -- These values provide read/write access to variables on the server. Tags bind their primary value through the dataSource attribute.
  • Read-Write Multiple Values -- This type of tag may read and write multiple values. Typically, these tags support a optionsDataSource attribute allowing the full set of options to be specified.
In addition, to these common attributes, many tags provide a defaultValue attribute which can provide the default value if the dataSource object is null.

AbstractBaseTag provides base features allowing the implementation of dataSource, defaultValue, and optionsDataSource. There are also base classes in both this package and the {@link org.apache.beehive.netui.tags.html} package which support these attributes.

The primary base classes are:

  • AbstractBaseTag -- This is an abstract base class for all tags. I provides support for generic tag features, expression management, naming support, generic attribute support, error reporting and JavaScript services.
  • DataSourceTag --
  • DefaultableDataSourceTag --
  • OptionsDataSourceTag --

There are a number of supporting interfaces provided by the package. These interfaces allow tags to provide services or participate in provided services. These are the primary interfaces:

  • DataAccessProvider -- This interfaces allows object to provide their children with a relative binding context using the 'container' binding context.
  • ErrorReporter -- This interfaces allows objects to act as a container for reporting errors generated by their children.
  • ScriptReporter -- This interfaces allows objects to act as a container for JavaScript for their children.
Java Source File NameTypeComment
AbstractClassicTag.javaClass AbstractBaseTag is the base tag for most of the NetUI tags.
AbstractClientRequestInterceptor.javaClass
AbstractPageError.javaClass This is a "struct" class that contains the base information for an error occuring in a tag on a page.
AbstractSimpleTag.javaClass
ByRef.javaClass
ErrorHandling.javaClass
EvalErrorInfo.javaClass This is a "struct" class that contains the information for an expression evaluation error.
ExpressionHandling.javaClass
HtmlUtils.javaClass This class provides a set of static methods that provide HTML utility code.
IAttributeConsumer.javaInterface This interfaces is implemented by tags that allow attributes to be set externally to the tag.
IBehaviorConsumer.javaInterface This interfaces is implemented by tags that allow a behavior to added and/or modified through an open ended set of name/value pairs.
IDocumentTypeProducer.javaInterface This interface will produce a Document type, defined in the enum TagRenderBase.
IErrorCollector.javaInterface An IErrorCollector collects errors generated by the children and reports them.
IErrorReporter.javaInterface An ErrorReporter acts as a container allowing a tag to gather up all errors reported by it's children and report them as a single group.
IHtmlAccessable.javaInterface This is an interface that defines the accessability properties defined by HTML accessability.
IHtmlAttrs.javaInterface
IHtmlCore.javaInterface This interface defines the HTML 4.0 core attributes.
IHtmlEvents.javaInterface
IHtmlI18n.javaInterface Interface which inforces that the HTML i18n attributes are found on an HTML element as defined by the HTML 4.0 specification.
INetuiTag.javaInterface
RequestUtils.javaClass This class contains utility methods that deal with requests.
TagConfig.javaClass This class implements a series of static method that will return configuration information.
TagErrorInfo.javaClass This is a "struct" class that contains the information for an expression evaluation error.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.