]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Made fontFamilyNames protected.
authorPeter Bernard West <pbwest@apache.org>
Mon, 5 Jan 2004 02:08:15 +0000 (02:08 +0000)
committerPeter Bernard West <pbwest@apache.org>
Mon, 5 Jan 2004 02:08:15 +0000 (02:08 +0000)
Javadoc fixes.
Flagged by Eclipse.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197119 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/datatypes/FontFamilySet.java

index f331b71ab1c1771301b899cd7efede6bbc852c5d..a8dad4de41a0d740fdd54aceba1c78fb34303791 100644 (file)
@@ -77,15 +77,15 @@ public class FontFamilySet extends AbstractPropertyValue {
      * An array of <tt>String</tt>s containing a prioritized list of
      * font family or generic font family names.
      */
-    private String[] fontFamilyNames;
+    protected final String[] fontFamilyNames;
 
     /**
      * @param property <tt>int</tt> index of the property.
-     * @param fontNames an array of <tt>String</tt>s containing a
+     * @param fontFamilyNames  contains a
      * prioritized list of font names, as literals or <tt>NCName</tt>s,
      * being either the full name of a font, or an enumeration token
      * representing a font family.
-     * @exception PropertyException.
+     * @exception PropertyException
      */
     public FontFamilySet(int property, String[] fontFamilyNames)
         throws PropertyException
@@ -96,11 +96,11 @@ public class FontFamilySet extends AbstractPropertyValue {
 
     /**
      * @param propertyName <tt>String</tt> name of the property.
-     * @param fontNames an array of <tt>String</tt>s containing a
+     * @param fontFamilyNames  contains a
      * prioritized list of font names, as literals or <tt>NCName</tt>s,
      * being either the full name of a font, or an enumeration token
      * representing a font family.
-     * @exception PropertyException.
+     * @exception PropertyException
      */
     public FontFamilySet(String propertyName, String[] fontFamilyNames)
         throws PropertyException
@@ -132,7 +132,7 @@ public class FontFamilySet extends AbstractPropertyValue {
         }
 
         public Object next() {
-            if (hasNext()) return (Object)fontFamilyNames[index++];
+            if (hasNext()) return fontFamilyNames[index++];
             throw new NoSuchElementException();
         }