/[classpath]/classpath/java/util/Properties.java
ViewVC logotype

Diff of /classpath/java/util/Properties.java

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

revision 1.26 by robilad, Thu Apr 22 11:24:39 2004 UTC revision 1.26.2.1 by tromey, Sat Oct 9 23:34:45 2004 UTC
# Line 90  s16=1,3</pre> Line 90  s16=1,3</pre>
90   * @see PropertyResourceBundle   * @see PropertyResourceBundle
91   * @status updated to 1.4   * @status updated to 1.4
92   */   */
93  public class Properties extends Hashtable  public class Properties extends Hashtable<Object, Object>
94  {  {
95    // WARNING: Properties is a CORE class in the bootstrap cycle. See the    // WARNING: Properties is a CORE class in the bootstrap cycle. See the
96    // comments in vm/reference/java/lang/Runtime for implications of this fact.    // comments in vm/reference/java/lang/Runtime for implications of this fact.
# Line 332  label   = Name:\\u0020</pre> Line 332  label   = Name:\\u0020</pre>
332     *         value that are not strings     *         value that are not strings
333     * @deprecated use {@link #store(OutputStream, String)} instead     * @deprecated use {@link #store(OutputStream, String)} instead
334     */     */
335      @Deprecated
336    public void save(OutputStream out, String header)    public void save(OutputStream out, String header)
337    {    {
338      try      try
# Line 448  label   = Name:\\u0020</pre> Line 449  label   = Name:\\u0020</pre>
449     *     *
450     * @return an Enumeration of all defined keys     * @return an Enumeration of all defined keys
451     */     */
452    public Enumeration propertyNames()    public Enumeration<?> propertyNames()
453    {    {
454      // We make a new Set that holds all the keys, then return an enumeration      // We make a new Set that holds all the keys, then return an enumeration
455      // for that. This prevents modifications from ruining the enumeration,      // for that. This prevents modifications from ruining the enumeration,

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.26.2.1

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