org.apache.tapestry.annotations

Home
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
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Natural Language Processing
51.Net
52.Parser
53.PDF
54.Portal
55.Profiler
56.Project Management
57.Report
58.RSS RDF
59.Rule Engine
60.Science
61.Scripting
62.Search Engine
63.Security
64.Sevlet Container
65.Source Control
66.Swing Library
67.Template Engine
68.Test Coverage
69.Testing
70.UML
71.Web Crawler
72.Web Framework
73.Web Mail
74.Web Server
75.Web Services
76.Web Services apache cxf 2.2.6
77.Web Services AXIS2
78.Wiki Engine
79.Workflow Engines
80.XML
81.XML UI
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.
ww_w_.__j__av___a_2___s__.___c__o__m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.