org.apache.tapestry.annotations

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 » Web Framework » Tapestry » org.apache.tapestry.annotations 
org.apache.tapestry.annotations
Java Source File NameTypeComment
AfterRender.javaAnnotation Marker annotation for methods associated with the AfterRender phase.
AfterRenderBody.javaAnnotation Corresponds to BeforeRenderBody , allowing additional markup after rendering the body of a component, but before rendering the rest of the component's template.
AfterRenderTemplate.javaAnnotation Corresponds to BeforeRenderTemplate , allowing additional markup after rendering the component's template.
ApplicationState.javaAnnotation Marker annotation for a field that is an application state object as controlled by the ApplicationStateManager .

An ASO file may have a companion field, of type boolean, used to see if the ASO has been created yet. If another field exists with the same name, suffixed with "Exists" (i.e., "_aso" for the ASO field, and "_asoExists" for the companion field) and the type of that field is boolean, then access to the field will determine whether the ASO has already been created.

BeforeRenderBody.javaAnnotation Marks methods to be invoked when the component rendering state machine hits the point in the component's template where the body element occurs.
BeforeRenderTemplate.javaAnnotation Associated with components that have a template, this phase is invoked to allow the component to decorate its template with additional markup.
BeginRender.javaAnnotation Marker annotation for methods that should be executed at the start of rendering the component. This usually includes rendering of the component's start tag.

Such methods may optionally take a org.apache.tapestry.MarkupWriter parameter, and may return void or boolean.

CleanupRender.javaAnnotation Marker annotation for component methods associated with the terminal phase for the component rendering state machine.
Component.javaAnnotation Used to define an embedded component within another component.
Environmental.javaAnnotation Defines a field that is replaced at runtime with a read-only value obtained from the Environment service.
Id.javaAnnotation Optional annotation, used with Inject , which exists to provide the id of an object when it can not be determined by other means (such as from the field name).
Inject.javaAnnotation Allows injection of various objects into a component class.
InjectComponent.javaAnnotation Used exclusively inside a mixin to connect the mixin to the component to which it is attached.
InjectPage.javaAnnotation Allows a a page (really, the root component of the page) to be injected into another component as a read-only field.
Meta.javaAnnotation Allows for the specification of per-component meta-data.
Mixin.javaAnnotation Defines an implementation mixin for a comopnent.
MixinAfter.javaAnnotation A marker annotation applied to a mixin to indicate that the mixin's render state behavior is deferred until after the the behavior of the component to which the mixin is attached.
MixinClasses.javaAnnotation Used to attach one or more instance mixins to an embedded component.
Mixins.javaAnnotation Used to attach one ore more instance mixin to an embedded component.
OnEvent.javaAnnotation Marks a method as a handler for a client side event.
PageAttached.javaAnnotation Method annotation used for methods that should be invoked when the page is first attached to a request.
PageDetached.javaAnnotation Method annotation used for methods that should be invoked when the page is detached at the end of a request, before it is returned to the page pool for later reuse.

PageDetached methods should take no parameters and return void.

PageLoaded.javaAnnotation Method annotation used for methods that should be invoked once the page is fully loaded.
Parameter.javaAnnotation Annotation placed on a field to indicate that it is, in fact, an parameter.
Path.javaAnnotation Used in conjunction with the Inject annotation to inject an Asset based on a path.
Persist.javaAnnotation Identifies a field as persistent, meaning its value persists from one request to the next. Different strategies exist for how this is accomplished, the most common being the default, "session", which stores the field's value in the Session .

In most cases, the value will be omitted and will default to the empty string.

Retain.javaAnnotation Marker annotation placed on fields whose value should be retained past the end of the request. This is most often associated with fields that are lazily loaded.
Service.javaAnnotation Used in conjunction with the Inject annotation to identify a service by name and not by type.
SetupRender.javaAnnotation Marker annotation for methods that should be executed during the SetupRender phase.
SupportsInformalParameters.javaAnnotation Used to identify a component that can support informal parameters.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.