org.apache.tapestry.services

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.services 
org.apache.tapestry.services
Java Source File NameTypeComment
ActionResponseGenerator.javaInterface An object that can generate the final response sent to the client as part of an action request.
Alias.javaInterface Primarily, the Alias service is an ObjectProvider that fits into the command chain and disambiguates injections on type.
AliasContribution.javaClass A contribution into the Alias or AliasOverride service configuration.
AliasContributionTest.javaClass
AliasManager.javaInterface A thin wrapper around a set of org.apache.tapestry.services.AliasContribution s.
ApplicationGlobals.javaInterface Stores global information about the application and its environment.
ApplicationInitializer.javaInterface Service interface for initializing Tapestry for the application.
ApplicationInitializerFilter.javaInterface Filter interface for org.apache.tapestry.services.ApplicationInitializer .
ApplicationStateContribution.javaClass A contribution to the configuration of the ApplicationStateManager , identifying the strategy and creator for a particular ASO (identified by the ASO's class).
ApplicationStateCreator.javaInterface Used by ApplicationStateManager and ApplicationStatePersistenceStrategy to create an application state object on demand.
ApplicationStateManager.javaInterface Responsible for managing application state objects, objects which persist between requests, but are not tied to any individual page or component.
ApplicationStatePersistenceStrategy.javaInterface Used by ApplicationStateManager to manage a specific kind of ASO persistence.
ApplicationStatePersistenceStrategySource.javaInterface Used to provide access to stategies via a logical name for the stategy, such as "session".
AssetFactory.javaInterface Used by AssetSource to create new Asset s as needed.
AssetSource.javaInterface Used to find or create an Asset with a given path.
BeanBlockContribution.javaClass A contribution to the BeanBlockSource service, defining a page name and block id (within the page) that can edit or display a particular type of property.
BeanBlockSource.javaInterface A source of Block s used to display the properties of a bean (used by the Grid component), or to edit the properties of a bean (used by the BeanEditForm component).
BeanModelSource.javaInterface Used by a component to create a default BeanModel for a particular bean class.
BindingFactory.javaInterface Creates a binding of a particular type.
BindingSource.javaInterface Used to acquire bindings for component parameters.
ClasspathAssetAliasManager.javaInterface
ClassTransformation.javaInterface Contains class-specific information used when transforming an raw class into an executable class. Much of this information is somewhat like ordinary reflection, but applies to a class that has not yet been loaded.

Transformation is primarily about identifying annotations on fields and on methods and changing the class, adding new interfaces, fields and methods, and deleting some existing fields.

A ClassTransformation contains all the state data specific to a particular class being transformed.

ComponentActionRequestFilter.javaInterface Filter interface for ComponentActionRequestHandler .
ComponentActionRequestHandler.javaInterface Handler interface for action requests.
ComponentClassResolver.javaInterface Resolves page names and component types to fully qualified class names.
ComponentClassTransformWorker.javaInterface Interface for a set of objects that can perform component class transformations.
ComponentDefaultProvider.javaInterface A service that can be injected into a component to provide common defaults for various parameters.
ComponentEventResultProcessor.javaInterface Responsible for handling the return value provided by a component event handler.
ComponentMessagesSource.javaInterface Used to connect a Tapestry component to its message catalog.
ComponentSource.javaInterface Used by classes that need to retrieve a component by its complete id, or a page by its logical page name or root component class.
Context.javaInterface An API agnostic version of javax.servlet.ServletContext , used to bridge the gaps between the Servlet API and the Portlet API.
Cookies.javaInterface Used by other services to obtain cookie values for the current request.
DataTypeAnalyzer.javaInterface Used by BeanModelSource to identify the type of data associated with a particular property (represented as a PropertyAdapter ).
DefaultPageRenderCommand.javaClass Default implementation of PageRenderCommand that does nothing.
Dispatcher.javaInterface A dispatcher is responsible for recognizing an incoming request.
Environment.javaInterface Provides access to environment services, which are almost always provided to enclosed components by enclosing components.

The Environment acts like a collection of stacks.

EnvironmentalShadowBuilder.javaInterface Much like PropertyShadowBuilder , except that instead of accessing a property of some other service, it accesses a value from within the Environment service.
ExceptionReporter.javaInterface Interface implemented by a page used for reporting exceptions.
FieldFilter.javaInterface Used by ClassTransformation.findFields(FieldFilter) to identify which fields to keep.
FieldValidatorDefaultSource.javaInterface For a particular field, geenerates the default validation for the field, in accordance with a number of factors and contributions.
FieldValidatorSource.javaInterface Used to create FieldValidator s for a particular Field component.
FormSupport.javaInterface Services provided by an enclosing Form control component to the various form element components it encloses.
Heartbeat.javaInterface Allow for deferred execution of logic, useful when trying to get multiple components to coordinate behavior.
HttpServletRequestFilter.javaInterface
HttpServletRequestHandler.javaInterface Service interface for the tapestry.request.HttpServletRequestHandler pipeline service.
InjectionProvider.javaInterface Provides some form of injection when the value for an org.apache.tapestry.annotations.Inject annotation is blank.
LibraryMapping.javaClass Used to configure the ComponentClassResolver , to allow it to map prefixes to library root packages (the application namespace is a special case of this).
MarkupWriterFactory.javaInterface Source for org.apache.tapestry.MarkupWriter instances.
MetaDataLocator.javaInterface Used to lookup meta data concerning a particular component.
MethodFilter.javaInterface Used by ClassTransformation.findMethods(MethodFilter) to accept or reject each method.
MethodSignature.javaClass A representation of a method signature, which consists of its name, modifiers (primarily, visibility), return type, parameter types, and declared exception types.

Types are stored as class names (or primitive names) because the MethodSignature is often used in situations where the actual class has not been loaded yet.

MethodSignatureTest.javaClass
ObjectRenderer.javaInterface A strategy interface used for converting an object into markup that describes that object.
PageRenderCommand.javaInterface Page render commands are invoked at the start of the page render cycle and at the end.
PageRenderInitializer.javaInterface Responsible for setup and cleanup of the rendering of a page.
PageRenderRequestFilter.javaInterface Filter interface for PageRenderRequestHandler , which allows extra behaviors to be injected into the processing of a page render request.
PageRenderRequestHandler.javaInterface Handles a invocation related to rendering out a pages complete content.
PersistentFieldBundle.javaInterface Encapsulates persisted property information for an entire page.
PersistentFieldChange.javaInterface Represents a previously stored change to a persistent field, within the context of a particular page of the application.
PersistentFieldManager.javaInterface Handle persistent property changes.
PersistentFieldStrategy.javaInterface
PersistentLocale.javaInterface It represents the persistent locale stored as a cookie in the browser.
PersistentLocaleImpl.javaClass
PropertyConduitSource.javaInterface A source for PropertyConduit s, which can be thought of as a compiled property path expression.
PropertyDisplayContext.javaInterface Provides context information needed when displaying a value in the context of a Grid component (or, really, the GridCell component).
PropertyEditContext.javaInterface Defines a context for editting a property of a bean via BeanEditForm .
Request.javaInterface Generic version of javax.servlet.http.HttpServletRequest , used to encapsulate the Servlet API version, and to help bridge the differences between Servlet API and Porlet API.
RequestExceptionHandler.javaInterface Service invoked when an uncaught exception occurs.
RequestFilter.javaInterface Filter interface for org.apache.tapestry.services.RequestHandler .
RequestGlobals.javaInterface Service used to store the current request objects, both the Servlet API versions, and the Tapestry generic versions.
RequestHandler.javaInterface Service interface for the tapestry.RequestHandler pipeline service.
ResourceDigestGenerator.javaInterface Responsible for determining which classpath resources require checksums, and for generating checksums for such resources.
Response.javaInterface API agnostic wrapper for generating a response.
ServletApplicationInitializer.javaInterface Service interface for initializing a servlet application.
ServletApplicationInitializerFilter.javaInterface Filter interface for org.apache.tapestry.services.ServletApplicationInitializer .
Session.javaInterface Generic version of HttpSession , used to bridge the gaps between the Servlet API and the Portlet API.
SyncCostBench.javaClass Tests single-thread synchronization overhead using different techniques.
TapestryModule.javaClass The root module for Tapestry.
TransformConstants.javaClass Constants used by implementations of org.apache.tapestry.services.ComponentClassTransformWorker .
TransformUtils.javaClass Support code for generating code (used when transforming component classes).
TransformUtilsTest.javaClass
TranslatorDefaultSource.javaInterface Used by certain form-control element component to obtain a default translator appropriate to the type of property editted by the component.
TranslatorSource.javaInterface A source for Translator s, either by name.
ValidationConstraintGenerator.javaInterface Invoked to generate a list of validation constraint strings for a property.
ValidationMessagesSource.javaInterface Source for validation messages, within a particular locale.
ValueEncoderFactory.javaInterface
ValueEncoderSource.javaInterface A source for value encoders based on a property type.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.