org.jboss.seam.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 » JBoss » jboss seam 2.1.0.A1 » org.jboss.seam.annotations 
org.jboss.seam.annotations
Annotations for defining Seam components.
Java Source File NameTypeComment
ApplicationException.javaAnnotation Synonym for javax.ejb.ApplicationException, for use in a pre Java EE 5 environment.
AutoCreate.javaAnnotation Specifies that the annotated component should be automatically instantiated whenever it is asked for, even if @In does not specify create=true.
Begin.javaAnnotation Marks a method as beginning a long-running conversation, if none exists, and if the method returns a non-null value without throwing an exception.
Conversational.javaAnnotation Specifies that a component or method is conversational, and may only be called inside the scope of a long-running conversation.
Create.javaAnnotation Alternative to javax.annotations.PostConstruct for use in a pre Java EE 5 environment.
DataBinderClass.javaAnnotation Meta-annotation that specifies that an annotation is a databinding annotation, ie.
DataSelectorClass.javaAnnotation Meta-annotation that specifies that an annotation is a dataselection annotation, ie.
Destroy.javaAnnotation Alternative to javax.annotations.PreDestroy for use in a pre Java EE 5 environment.
End.javaAnnotation Marks a method as ending a conversation, if the method returns a non-null outcome without throwing an exception.
Factory.javaAnnotation Marks a method as a factory method for a context variable. A factory method is called whenever no value is bound to the named context variable, and is expected to initialize the value of the context variable.
FlushModeType.javaenum A full set of flush modes, including MANUAL, which is a glaring missing feature of the JPA spec.
Import.javaAnnotation Allows use of unqualified names in @In by a component or by all components in a package.
In.javaAnnotation Specifies that a seam component should be injected to the annotated field or setter method of a seam component.
Install.javaAnnotation
JndiName.javaAnnotation Specifies the JNDI name of a seam component.
Logger.javaAnnotation
Name.javaAnnotation Specifies the component name of a Seam component.
Namespace.javaAnnotation Specifies the configuration namespace of a Java package containing Seam components.
Observer.javaAnnotation Marks a method as an observer of an event type or multiple event types.
Out.javaAnnotation Specifies that a seam component should be outjected from the annotated field or getter method of a session bean.
Outcome.javaClass
package-info.java
PerNestedConversation.javaAnnotation Limit the scope of a CONVERSATION-scoped component to just the parent conversation in which it was instantiated.
RaiseEvent.javaAnnotation Causes an event to be raised after the method returns a non-null result without exception.
ReadOnly.javaAnnotation Marks a component as immutable, not needing replication once created, or a method of the component as read-only, not mutating the state.
Role.javaAnnotation Specifies the name and scope role for a seam component role. If a component has no @Role annotation, it has exactly one role, defined by @Name and @Scope.
Roles.javaAnnotation Specifies the roles of a component.
Scope.javaAnnotation Specifies the scope (context) of a seam component.
Startup.javaAnnotation Specifies that an instance of this component is created at system initialization time for an application scoped component, or when a session is started for a session scoped component.
Synchronized.javaAnnotation Specifies that a stateful component has multiple concurrent clients, and so access to the component must be synchronized.
Transactional.javaAnnotation Specifies that the transaction propagation for a JavaBean component or method of a JavaBean component.
TransactionPropagationType.javaenum Transaction propagation strategies for Seam JavaBean components.
Unwrap.javaAnnotation Specifies that the object returned by the annotated getter method is to be injected instead of the component itself.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.