Annotation Type CallMethod
-
@Documented @Retention(RUNTIME) @Target(METHOD) @DigesterRule(reflectsRule=CallMethodRule.class, handledBy=CallMethodHandler.class) public @interface CallMethod
Methods annotated withCallMethod
will be bound withCallMethodRule
digester 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.String
pattern
The element matching pattern.
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.String
namespaceURI
The namespace URI for which this Rule is relevant, if any.boolean
usingElementBodyAsArgument
Marks theCallMethodRule
to be invoked using the matching element body as argument.
-
-
-
-
usingElementBodyAsArgument
boolean usingElementBodyAsArgument
Marks theCallMethodRule
to be invoked using the matching element body as argument.- Default:
- false
-
-