Browse Source

Javadoc cleanup flagged by Eclipse


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197125 13f79535-47bb-0310-9956-ffa450edef68
tags/Alt-Design_pre_awt_renderer_import
Peter Bernard West 20 years ago
parent
commit
c14d4e3b6c

+ 3
- 4
src/java/org/apache/fop/xml/SyncedFoXmlEventsBuffer.java View File

@@ -129,9 +129,9 @@ public class SyncedFoXmlEventsBuffer extends SyncedCircularBuffer {

/**
* @return next event from the SyncedCircularBuffer
* @exception FOPException. The purpose of this method is to catch
* and transform any InterruptedException exceptions thrown by the
* <tt>SyncedCircularBuffer</tt>.
* @exception FOPException exception into which
* any InterruptedException exceptions thrown by the
* <tt>SyncedCircularBuffer</tt> are transformed
*/
public FoXMLEvent getEvent() throws FOPException {
FoXMLEvent ev;
@@ -1037,7 +1037,6 @@ public class SyncedFoXmlEventsBuffer extends SyncedCircularBuffer {
* @exception FOPException if buffer errors or interrupts occur
* @exception NoSuchElementException if ENDELEMENT is not the next
* event detected. The erroneous event is pushed back.
* @exception NoSuchElementException if end of buffer detected.
*/
public FoXMLEvent expectEndElement(boolean discardWhiteSpace)
throws FOPException

+ 2
- 2
src/java/org/apache/fop/xml/XMLEvent.java View File

@@ -269,7 +269,7 @@ public class XMLEvent {

/**
* Set the <tt>AttributesImpl</tt> object associated with this event.
* @param the <tt>AttributesImpl</tt> object.
* @param attributes the attributes
*/
public void setAttributes(AttributesImpl attributes) {
this.attributes = attributes;
@@ -277,7 +277,7 @@ public class XMLEvent {

/**
* Set the <tt>XMLNamespaces</tt> object associated with this event.
* @param the <tt>XMLNamespaces</tt> object.
* @param namespaces the XMLNamespaces
*/
public void setNamespaces(XMLNamespaces namespaces) {
this.namespaces = namespaces;

Loading…
Cancel
Save