Implemented in class xdoclet.modules.ejb.intf.InterfaceTagsHandler.
Evaluates the body block for each view-type of current method. Sets currentMethodViewType internal variable of tag handler class, used by nested methodIntf.
Evaluate the body block if the current method is an EJB local or remote interface method.
interface |
The type of interface to check for the methods validity in. Can be either "local" or "remote". |
[superclasses] |
Traverse superclasses too. With false value used in remote/local. Default is True. |
Evaluates the body block if ejb:interface-method defined for current method.
Evaluate the body block if the current method is not an EJB local or remote interface method.
interface |
The type of interface to check for the methods validity in. Can be either "local" or "remote". |
Evaluates the body block for each EJBean derived from one of the three EJB types: EntityBean, SessionBean or MessageDrivenBean.
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.
Returns the bean implementation class name for the interface name specified as the return type of current method or the method specified by parameter interface if any.
Returns the full qualified local or remote interface name for the bean, depending on the value of type parameter.
type |
Specifies the type of component interface. Valid Values = {remote,local} |
Returns the name of the class home interface extends.
Returns interface method name for the current interface method.
Returns "Remote" is current method has ejb:remote-method defined, "Home" otherwise.
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 unique id for current ejb.
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.