|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectde.uni_paderborn.fujaba.codegen.digester.XRule
de.uni_paderborn.fujaba.codegen.digester.rules.XCallMethodRule
Rule implementation that calls a method on the top (parent) object, passing arguments collected
from subsequent CallParamRule
rules or from the body of this element.
Field Summary | |
protected java.lang.String |
bodyText
The body text collected from this element. |
protected java.lang.String |
methodName
The method name to call on the parent object. |
protected int |
paramCount
The number of parameters to collect from MethodParam rules. |
protected java.lang.Class[] |
paramTypes
The parameter types of the parameters to be collected. |
Fields inherited from class de.uni_paderborn.fujaba.codegen.digester.XRule |
digester |
Constructor Summary | |
XCallMethodRule(XDigester digester,
java.lang.String methodName,
int paramCount)
Construct a "call method" rule with the specified method name. |
|
XCallMethodRule(XDigester digester,
java.lang.String methodName,
int paramCount,
java.lang.Class[] paramTypes)
Construct a "call method" rule with the specified method name. |
|
XCallMethodRule(XDigester digester,
java.lang.String methodName,
int paramCount,
java.lang.String[] paramTypes)
Construct a "call method" rule with the specified method name. |
Method Summary | |
void |
begin(org.xml.sax.Attributes attributes)
Process the start of this element. |
void |
body(java.lang.String bodyText)
Process the body text of this element. |
void |
end()
Process the end of this element. |
void |
finish()
Clean up after parsing is complete. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected java.lang.String bodyText
protected java.lang.String methodName
protected int paramCount
MethodParam
rules. If this value
is zero, a single parameter will be collected from the body of this element.
protected java.lang.Class[] paramTypes
Constructor Detail |
public XCallMethodRule(XDigester digester, java.lang.String methodName, int paramCount)
digester
- The associated DigestermethodName
- Method name of the parent method to callparamCount
- The number of parameters to collect, or zero for a single argument
from the body of this element.public XCallMethodRule(XDigester digester, java.lang.String methodName, int paramCount, java.lang.String[] paramTypes)
digester
- The associated DigestermethodName
- Method name of the parent method to callparamCount
- The number of parameters to collect, or zero for a single argument
from the body of ths elementparamTypes
- The Java class names of the arguments (if you wish to use a primitive
type, specify the corresonding Java wrapper class instead, such as java.lang.Boolean
for a boolean
parameter)public XCallMethodRule(XDigester digester, java.lang.String methodName, int paramCount, java.lang.Class[] paramTypes)
digester
- The associated DigestermethodName
- Method name of the parent method to callparamCount
- The number of parameters to collect, or zero for a single argument
from the body of ths elementparamTypes
- The Java classes that represent the parameter types of the method
arguments (if you wish to use a primitive type, specify the corresonding Java wrapper
class instead, such as java.lang.Boolean.TYPE
for a boolean
parameter)Method Detail |
public void begin(org.xml.sax.Attributes attributes) throws java.lang.Exception
begin
in class XRule
attributes
- The attribute list for this element
java.lang.Exception
- Exception description not providedpublic void body(java.lang.String bodyText) throws java.lang.Exception
body
in class XRule
bodyText
- The body text of this element
java.lang.Exception
- Exception description not providedpublic void end() throws java.lang.Exception
end
in class XRule
java.lang.Exception
- Exception description not providedpublic void finish() throws java.lang.Exception
finish
in class XRule
java.lang.Exception
- Exception description not provided
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |