]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Amended a couple javadocs and some trivial clean up
authorMehdi Houshmand <mehdi@apache.org>
Mon, 3 Sep 2012 08:38:26 +0000 (08:38 +0000)
committerMehdi Houshmand <mehdi@apache.org>
Mon, 3 Sep 2012 08:38:26 +0000 (08:38 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1380169 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/events/CompositeEventListener.java
src/java/org/apache/fop/pdf/PDFEncoding.java

index 2b5cbffb26e035f1ca695a0e9d230bf2665acd8d..d1f207c79862d9ce71e48ac02ed346ac72dfddeb 100644 (file)
@@ -19,6 +19,7 @@
 
 package org.apache.fop.events;
 
+import java.util.ArrayList;
 import java.util.List;
 
 /**
@@ -26,7 +27,7 @@ import java.util.List;
  */
 public class CompositeEventListener implements EventListener {
 
-    private List listeners = new java.util.ArrayList();
+    private List<EventListener> listeners = new ArrayList<EventListener>();
 
     /**
      * Adds an event listener to the broadcaster. It is appended to the list of previously
@@ -46,22 +47,17 @@ public class CompositeEventListener implements EventListener {
         this.listeners.remove(listener);
     }
 
-    private synchronized int getListenerCount() {
-        return this.listeners.size();
-    }
-
     /**
      * Indicates whether any listeners have been registered with the broadcaster.
      * @return true if listeners are present, false otherwise
      */
     public boolean hasEventListeners() {
-        return (getListenerCount() > 0);
+        return !listeners.isEmpty();
     }
 
-    /** {@inheritDoc} */
+    /** {@inheritDoc } */
     public synchronized void processEvent(Event event) {
-        for (int i = 0, c = getListenerCount(); i < c; i++) {
-            EventListener listener = (EventListener)this.listeners.get(i);
+        for (EventListener listener : listeners) {
             listener.processEvent(event);
         }
     }
index 25e791e0dd146ee6afa0f19953667f2260297997..64fd6f866e49eba8c2623250b712510a42bdc048 100644 (file)
@@ -153,8 +153,8 @@ public class PDFEncoding extends PDFDictionary {
         /**
          * Creates an array containing the differences between two single-byte.
          * font encodings.
-         * @param encoding_A The first single-byte encoding
-         * @param encoding_B The second single-byte encoding
+         * @param encodingA The first single-byte encoding
+         * @param encodingB The second single-byte encoding
          * @return The PDFArray of differences between encodings
          */
         public PDFArray buildDifferencesArray(SingleByteEncoding encodingA,