Annotation Type CallMethod
-
@Documented @Retention(RUNTIME) @Target(METHOD) @DigesterRule(reflectsRule=CallMethodRule.class, handledBy=CallMethodHandler.class) public @interface CallMethod
Methods annotated withCallMethodwill be bound withCallMethodRuledigester rule.- Since:
- 2.1
- See Also:
Digester.addCallMethod(String,String,int,Class[])
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.StringpatternThe element matching pattern.
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.StringnamespaceURIThe namespace URI for which this Rule is relevant, if any.booleanusingElementBodyAsArgumentMarks theCallMethodRuleto be invoked using the matching element body as argument.
-
-
-
Element Detail
-
pattern
java.lang.String pattern
The element matching pattern.
-
-
-
namespaceURI
java.lang.String namespaceURI
The namespace URI for which this Rule is relevant, if any.- Since:
- 3.0
- Default:
- ""
-
-
-
usingElementBodyAsArgument
boolean usingElementBodyAsArgument
Marks theCallMethodRuleto be invoked using the matching element body as argument.- Default:
- false
-
-