Implemented in class xdoclet.modules.ejb.entity.CmpTagsHandler.
Evaluates the body block for each EJBean derived from one of the three EJB types: EntityBean, SessionBean or MessageDrivenBean.
Evaluates the body block for each EJBean derived from EntityBean which is CMP.
Evaluates the body block for each persistent field of current class (if entity CMP). Looks at super classes as well. Searches for the getter methods which has ejb:persistent-field defined.
Evaluates the body block for each ejbSelect
Evaluates the body block for each EJBean derived from EntityBean.
Evaluate the body block if current class is of an entity type.
Evaluates the body block if current class is an CMP entity bean.
Evaluates the body block if current bean is a concrete bean meaning the generate parameter of ejb:bean is either not specified or equals to "true", otherwise the bean is just an abstract base class bean not meant to be used as a EJBean but serve as the base for other EJBeans.
Evaluate the body block if not using EJB 2.0 or using EJB 2.0 but CMP version 1.x.
Evaluate the body block if using EJB 2.0 and CMP version 2.x.
Returns Bean type : "Entity", "Session" or "Message Driven".
Returns the full-qualified name of the current class's concrete class. This is the class that is generated and is derived from current class.
Returns the name of EJB ref.
Returns the name of current EJB bean.
[prefixWithEjbSlash] |
Specifies whether to prefix it with ejb/ or not. False by default. Valid Values = {true,false} |
Returns the name of EJB ref.
Returns the name of EJB ref.
Returns the name of generated CMP class.
Returns the cmp-version 2.x compatible cmp / cmr field name for the current method.
Returns unique id for current ejb.
Returns the persistent type of current bean.
Returns True if ejb:bean reentrant is true, False otherwise. It does the case conversion trick from true to True and false to False.
Returns short version of ejbName(). Example: "foo.bar.MyBean" ->"MyBean", "foo/bar/MyBean" ->"MyBean"
Returns the symbolic name of the current class. For an EJBean it's the value of ejb:bean's name parameter.