javax.annotation |
|
Java Source File Name | Type | Comment |
Generated.java | Annotation | The Generated annoation is used to mark source code that has been generated.
It can also be used to differentiate user written code from generated code
in a single file. |
PostConstruct.java | Annotation | The PostConstruct annotation is used on a method that needs to be executed
after dependency injection is done to perform any initialization. |
PreDestroy.java | Annotation | The PreDestroy annotation is used on methods as a callback notification to
signal that the instance is in the process of being removed by the
container. |
Resource.java | Annotation | The Resource annotation marks a resource that is needed
by the application. |
Resources.java | Annotation | This class is used to allow multiple resources declarations. |