|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object
|
+--xdoclet.template.TemplateTagHandler
|
+--xdoclet.XDocletTagSupport
|
+--xdoclet.ejb.tags.EjbTagsHandler
|
+--xdoclet.ejb.tags.InterfaceTagsHandler
| Fields inherited from class xdoclet.ejb.tags.EjbTagsHandler |
LOCAL_SUFFIX |
| Fields inherited from class xdoclet.XDocletTagSupport |
FOR_CLASS, FOR_CONSTRUCTOR, FOR_FIELD, FOR_METHOD, PARAMETER_DELIMITER |
| Constructor Summary | |
InterfaceTagsHandler()
|
|
| Method Summary | |
java.lang.String |
beanClassNameFromInterfaceName(java.util.Properties attributes)
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. |
java.lang.String |
componentInterface(java.util.Properties attributes)
Returns the full qualified local or remote interface name for the bean, depending on the value of type parameter. |
java.lang.String |
extendsFrom(java.util.Properties attributes)
Returns the name of the class home interface extends. |
void |
forAllInterfaceViewTypes(java.lang.String template,
java.util.Properties attributes)
Evaluates the body block for each view-type of current method. |
protected java.lang.String |
fromInterfaceToBean(java.lang.String value)
Loops over all classes and if value equals to local or remote interface name of an EJBean full qualified name of that EJB is returned. |
static java.lang.String |
getBeanClassNameFromInterfaceNameFor(java.lang.String return_type)
|
static java.lang.String |
getComponentInterface(java.lang.String type,
com.sun.javadoc.ClassDoc clazz)
Return the fully qualified name of the component interface of type specified. |
protected java.lang.String |
getDependentClassFor(com.sun.javadoc.ClassDoc clazz,
java.lang.String type)
sub-classes which deal with patternized class names return a reasonable value |
protected java.lang.String |
getInterfaceMethodName(java.lang.String name)
Returns the interface method name depending on its type. |
protected static java.lang.String |
getLocalClassPattern()
|
protected static java.lang.String |
getRemoteClassPattern()
|
void |
ifIsInterfaceMethod(java.lang.String template)
Evaluates the body block if ejb:interface-method defined for current method. |
void |
ifIsInterfaceMethod(java.lang.String template,
java.util.Properties attributes)
Evaluate the body block if the current method is an EJB local or remote interface method. |
void |
ifIsNotInterfaceMethod(java.lang.String template,
java.util.Properties attributes)
Evaluate the body block if the current method is not an EJB local or remote interface method. |
java.lang.String |
interfaceMethodName()
Returns interface method name for the current interface method. |
static boolean |
isComponentInterfaceMethod(com.sun.javadoc.MethodDoc method)
Returns true if method is a component interface method, false otherwise. |
static boolean |
isInterfaceMethod(com.sun.javadoc.MethodDoc method)
Returns true if method is an interface method, false otherwise. |
protected boolean |
isInterfaceMethod(java.lang.String intFace)
Implements functionality required by ifIsInterfaceMethod(java.lang.String, java.util.Properties) and ifIsNotInterfaceMethod(java.lang.String, java.util.Properties). |
static boolean |
isLocalMethod(com.sun.javadoc.MethodDoc method)
Returns true if method is a local interface method by looking at view-type parameter. |
static boolean |
isRemoteMethod(com.sun.javadoc.MethodDoc method)
Returns true if method is a remote interface method by looking at view-type parameter. |
java.lang.String |
methodIntf(java.util.Properties attributes)
Returns "Remote" is current method has ejb:remote-method defined, "Home" otherwise. |
| Methods inherited from class xdoclet.template.TemplateTagHandler |
generate, getContext, getEngine, getParser, setContext, setEngine, setParser |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public InterfaceTagsHandler()
| Method Detail |
public static java.lang.String getComponentInterface(java.lang.String type,
com.sun.javadoc.ClassDoc clazz)
throws XDocletException
ejb:interface class level tag.
Relevant parameters for the ejb:interface tag are:
type - Can be remote or local. Defaults to remote.clazz - Description of ParameterXDocletException - Description of Exception
public static boolean isInterfaceMethod(com.sun.javadoc.MethodDoc method)
throws XDocletException
method - Description of ParameterXDocletException - Description of Exception
public static boolean isComponentInterfaceMethod(com.sun.javadoc.MethodDoc method)
throws XDocletException
method - Description of ParameterXDocletException - Description of Exception
public static java.lang.String getBeanClassNameFromInterfaceNameFor(java.lang.String return_type)
throws XDocletException
public static boolean isRemoteMethod(com.sun.javadoc.MethodDoc method)
throws XDocletException
method - Description of ParameterXDocletException - Description of Exception
public static boolean isLocalMethod(com.sun.javadoc.MethodDoc method)
throws XDocletException
method - Description of ParameterXDocletException - Description of Exceptionprotected static java.lang.String getRemoteClassPattern()
protected static java.lang.String getLocalClassPattern()
public java.lang.String componentInterface(java.util.Properties attributes)
throws XDocletException
attributes - The attributes of the template tagXDocletException - Description of Exception
public void ifIsNotInterfaceMethod(java.lang.String template,
java.util.Properties attributes)
throws XDocletException
template - The body of the block tagattributes - The attributes of the template tagXDocletException - Description of Exception
public void ifIsInterfaceMethod(java.lang.String template,
java.util.Properties attributes)
throws XDocletException
template - The body of the block tagattributes - The attributes of the template tagXDocletException - Description of Exception
public void forAllInterfaceViewTypes(java.lang.String template,
java.util.Properties attributes)
throws XDocletException
template - The body of the block tagattributes - The attributes of the template tagXDocletException - Description of Exception
public void ifIsInterfaceMethod(java.lang.String template)
throws XDocletException
template - The body of the block tagXDocletException - Description of ExceptionisInterfaceMethod(com.sun.javadoc.MethodDoc)
public java.lang.String methodIntf(java.util.Properties attributes)
throws XDocletException
attributes - The attributes of the template tagXDocletException - Description of ExceptionisRemoteMethod(com.sun.javadoc.MethodDoc)
public java.lang.String interfaceMethodName()
throws XDocletException
XDocletException - Description of ExceptiongetInterfaceMethodName(java.lang.String)
public java.lang.String beanClassNameFromInterfaceName(java.util.Properties attributes)
throws XDocletException
attributes - XDocletException - Description of Exception
public java.lang.String extendsFrom(java.util.Properties attributes)
throws XDocletException
attributes - XDocletException - Description of Exception
protected boolean isInterfaceMethod(java.lang.String intFace)
throws XDocletException
ifIsInterfaceMethod(java.lang.String, java.util.Properties) and ifIsNotInterfaceMethod(java.lang.String, java.util.Properties). To determine what interfaces the method should
appear in, check the first for a view-type parameter to the
method level ejb:interface-method tag. If that is absent use
the view-type tag from ejb:bean .intFace - The type of interface to test the method for.XDocletException - Description of Exception
protected java.lang.String getInterfaceMethodName(java.lang.String name)
throws XDocletException
name - Description of ParameterXDocletException - Description of Exception
protected java.lang.String getDependentClassFor(com.sun.javadoc.ClassDoc clazz,
java.lang.String type)
throws XDocletException
EjbTagsHandlergetDependentClassFor in class EjbTagsHandlerxdoclet.ejb.tags.EjbTagsHandlerclazz - the classtype - type value used for view-type of remote/localXDocletException -
protected java.lang.String fromInterfaceToBean(java.lang.String value)
throws XDocletException
value - Description of ParameterXDocletException - Description of Exception
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||