本文整理匯總了Java中org.apache.commons.digester.CallMethodRule類的典型用法代碼示例。如果您正苦於以下問題:Java CallMethodRule類的具體用法?Java CallMethodRule怎麽用?Java CallMethodRule使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
CallMethodRule類屬於org.apache.commons.digester包,在下文中一共展示了CallMethodRule類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: addMyRule
import org.apache.commons.digester.CallMethodRule; //導入依賴的package包/類
/**
* Adds a CallMethodRule for a method in the object at the bottom of the stack.
*
* @param pathRule
* Element matching pattern, telling when this rule will be fired
* @param nameMethod
* name of the method (in the object at the bottom of the stack) to be called.
* @param numParam
* number of parameters this method requires -1. 0 means only the content of pathRule is required and passed. -1 means method accepts
* no parameters.
*/
public void addMyRule(String pathRule, String nameMethod, int numParam) {
// -1 specifies the position in the stack, in our case, in the bottom.
if (numParam >= 0) {
addRule(pathRule, new CallMethodRule(-1, nameMethod, numParam + 1));
addCallParam(pathRule, 0);
} else {
addRule(pathRule, new CallMethodRule(-1, nameMethod));
}
}