diff options
author | Jordan Naftolin <jordan@apache.org> | 2000-07-13 17:33:47 +0000 |
---|---|---|
committer | Jordan Naftolin <jordan@apache.org> | 2000-07-13 17:33:47 +0000 |
commit | aad223315a4d17974d381b5a28a3130b550ca440 (patch) | |
tree | 1bc1f27c11d2b741b7574be800c71bc3c796175a | |
parent | 42c2fd5fc1798d1cab6f8ffddbb2f6cf1905dca0 (diff) | |
download | xmlgraphics-fop-aad223315a4d17974d381b5a28a3130b550ca440.tar.gz xmlgraphics-fop-aad223315a4d17974d381b5a28a3130b550ca440.zip |
Added ability to remove ID from idReferences. This is needed for keep-with-next
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193496 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/org/apache/fop/datatypes/IDReferences.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/org/apache/fop/datatypes/IDReferences.java b/src/org/apache/fop/datatypes/IDReferences.java index 083c10adb..eaf45c963 100644 --- a/src/org/apache/fop/datatypes/IDReferences.java +++ b/src/org/apache/fop/datatypes/IDReferences.java @@ -154,6 +154,19 @@ public class IDReferences { idValidation.remove(id); } + + /** + * Removes id from IDReferences + * + * @param id The id to remove + * @exception FOPException + */ + public void removeID(String id) + { + idReferences.remove(id); + } + + /** * Determines whether all id's are valid * |