diff options
author | Mehdi Houshmand <mehdi@apache.org> | 2012-09-28 15:22:49 +0000 |
---|---|---|
committer | Mehdi Houshmand <mehdi@apache.org> | 2012-09-28 15:22:49 +0000 |
commit | d261730a4f7be752ae12a5ec52e6bad8ee4fa5c1 (patch) | |
tree | 1acacd7c6dd92e04e06ef6e902ee5e72b5f27523 /src/java/org/apache/fop/fo/FOValidationEventProducer.java | |
parent | aaa7da8a0dd8ce9ce4e975c4eabbadbea0a67476 (diff) | |
download | xmlgraphics-fop-d261730a4f7be752ae12a5ec52e6bad8ee4fa5c1.tar.gz xmlgraphics-fop-d261730a4f7be752ae12a5ec52e6bad8ee4fa5c1.zip |
Bugzilla#53924: Support for retrieve-table-markers, submitted by Luis Bernardo.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1391502 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/FOValidationEventProducer.java')
-rw-r--r-- | src/java/org/apache/fop/fo/FOValidationEventProducer.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/fo/FOValidationEventProducer.java b/src/java/org/apache/fop/fo/FOValidationEventProducer.java index ff005b1b4..ee6b078b5 100644 --- a/src/java/org/apache/fop/fo/FOValidationEventProducer.java +++ b/src/java/org/apache/fop/fo/FOValidationEventProducer.java @@ -90,6 +90,18 @@ public interface FOValidationEventProducer extends EventProducer { Locator loc) throws ValidationException; /** + * A valid but not yet supported child was encountered. + * + * @param source the event source + * @param elementName the name of the context node + * @param offendingNode the offending node + * @param loc the location of the error or null + * @throws ValidationException the validation error provoked by the method call + */ + void notSupportedChild(Object source, String elementName, QName offendingNode, Locator loc) + throws ValidationException; + + /** * A required child element is missing. * @param source the event source * @param elementName the name of the context node |