aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/FOValidationEventProducer.java
diff options
context:
space:
mode:
authorVincent Hennebert <vhennebert@apache.org>2008-07-24 09:35:34 +0000
committerVincent Hennebert <vhennebert@apache.org>2008-07-24 09:35:34 +0000
commit92df262a0778ee539c849454be2810621dac1b7e (patch)
treed5be9359cbacb91dffcab6f1a6ecfe61e9db2c6b /src/java/org/apache/fop/fo/FOValidationEventProducer.java
parent30e2ce5bee38cbc32758e0b65fa7f98f3db76baa (diff)
downloadxmlgraphics-fop-92df262a0778ee539c849454be2810621dac1b7e.tar.gz
xmlgraphics-fop-92df262a0778ee539c849454be2810621dac1b7e.zip
Fed up with all those trailing whitespaces. Let's remove them all (once... and for all?)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@679326 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.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/java/org/apache/fop/fo/FOValidationEventProducer.java b/src/java/org/apache/fop/fo/FOValidationEventProducer.java
index 61bd68340..889bf706a 100644
--- a/src/java/org/apache/fop/fo/FOValidationEventProducer.java
+++ b/src/java/org/apache/fop/fo/FOValidationEventProducer.java
@@ -37,7 +37,7 @@ public interface FOValidationEventProducer extends EventProducer {
* Provider class for the event producer.
*/
class Provider {
-
+
/**
* Returns an event producer.
* @param broadcaster the event broadcaster to use
@@ -55,12 +55,12 @@ public interface FOValidationEventProducer extends EventProducer {
* @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
+ * @throws ValidationException the validation error provoked by the method call
* @event.severity FATAL
*/
void tooManyNodes(Object source, String elementName, QName offendingNode,
Locator loc) throws ValidationException;
-
+
/**
* The node order is wrong.
* @param source the event source
@@ -74,7 +74,7 @@ public interface FOValidationEventProducer extends EventProducer {
void nodeOutOfOrder(Object source, String elementName,
String tooLateNode, String tooEarlyNode, boolean canRecover,
Locator loc) throws ValidationException;
-
+
/**
* An invalid child was encountered.
* @param source the event source
@@ -112,7 +112,7 @@ public interface FOValidationEventProducer extends EventProducer {
*/
void missingProperty(Object source, String elementName, String propertyName,
Locator loc) throws ValidationException;
-
+
/**
* An id was used twice in a document.
* @param source the event source
@@ -334,7 +334,7 @@ public interface FOValidationEventProducer extends EventProducer {
*/
void invalidFORoot(Object source, String elementName,
Locator loc) throws ValidationException;
-
+
/**
* No FO document was found.
* @param source the event source
@@ -342,7 +342,7 @@ public interface FOValidationEventProducer extends EventProducer {
* @event.severity FATAL
*/
void emptyDocument(Object source) throws ValidationException;
-
+
/**
* An unknown/unsupported formatting object has been encountered.
* @param source the event source
@@ -353,5 +353,5 @@ public interface FOValidationEventProducer extends EventProducer {
*/
void unknownFormattingObject(Object source, String elementName,
QName offendingNode, Locator loc);
-
+
}