/[classpath]/classpath/javax/swing/text/html/parser/AttributeList.java
ViewVC logotype

Diff of /classpath/javax/swing/text/html/parser/AttributeList.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.4 by gnu_andrew, Tue Aug 2 20:12:38 2005 UTC revision 1.1.2.5 by tromey, Sat Nov 26 05:29:43 2005 UTC
# Line 122  public final class AttributeList Line 122  public final class AttributeList
122     * null, if this parameter was not specified.     * null, if this parameter was not specified.
123     * Values, defined in DTD, are case insensitive.     * Values, defined in DTD, are case insensitive.
124     */     */
125    public Vector values;    public Vector<?> values;
126    
127    /**    /**
128     * The modifier of this attribute. This field contains one of the     * The modifier of this attribute. This field contains one of the
# Line 176  public final class AttributeList Line 176  public final class AttributeList
176     * Equals to null for the last attribute definition.     * Equals to null for the last attribute definition.
177     */     */
178    public AttributeList(String a_name, int a_type, int a_modifier,    public AttributeList(String a_name, int a_type, int a_modifier,
179                         String a_default, Vector allowed_values,                         String a_default, Vector<?> allowed_values,
180                         AttributeList a_next                         AttributeList a_next
181                        )                        )
182    {    {
# Line 251  public final class AttributeList Line 251  public final class AttributeList
251    /**    /**
252     * Get the allowed values of this attribute.     * Get the allowed values of this attribute.
253     */     */
254    public Enumeration getValues()    public Enumeration<?> getValues()
255    {    {
256      return values.elements();      return values.elements();
257    }    }

Legend:
Removed from v.1.1.2.4  
changed lines
  Added in v.1.1.2.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26