/[classpath]/classpath/java/beans/FeatureDescriptor.java
ViewVC logotype

Diff of /classpath/java/beans/FeatureDescriptor.java

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

revision 1.7.2.2 by gnu_andrew, Tue Aug 2 20:12:16 2005 UTC revision 1.7.2.3 by gnu_andrew, Sun Oct 16 17:12:06 2005 UTC
# Line 68  public class FeatureDescriptor Line 68  public class FeatureDescriptor
68    boolean hidden;    boolean hidden;
69    boolean preferred;    boolean preferred;
70    
71    Hashtable valueHash;    Hashtable<String,Object> valueHash;
72    
73    /**    /**
74     * Instantiate this FeatureDescriptor with appropriate default values.     * Instantiate this FeatureDescriptor with appropriate default values.
75     */     */
76    public FeatureDescriptor()    public FeatureDescriptor()
77    {    {
78      valueHash = new Hashtable();      valueHash = new Hashtable<String,Object>();
79    }    }
80    
81    /**    /**
# Line 225  public class FeatureDescriptor Line 225  public class FeatureDescriptor
225     * @return an Enumerator over all the programmatic key names associated     * @return an Enumerator over all the programmatic key names associated
226     * with this feature.     * with this feature.
227     */     */
228    public Enumeration attributeNames()    public Enumeration<String> attributeNames()
229    {    {
230      return valueHash.keys();      return valueHash.keys();
231    }    }

Legend:
Removed from v.1.7.2.2  
changed lines
  Added in v.1.7.2.3

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