/[classpath]/classpath/java/lang/StringBuilder.java
ViewVC logotype

Diff of /classpath/java/lang/StringBuilder.java

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

revision 1.2 by gnu_andrew, Wed Jan 19 19:26:54 2005 UTC revision 1.3 by mkoch, Wed Feb 16 07:05:33 2005 UTC
# Line 1  Line 1 
1  /* StringBuilder.java -- Unsynchronized growable strings  /* StringBuilder.java -- Unsynchronized growable strings
2     Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004     Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
3     Free Software Foundation, Inc.     Free Software Foundation, Inc.
4    
5  This file is part of GNU Classpath.  This file is part of GNU Classpath.
# Line 68  import java.io.Serializable; Line 68  import java.io.Serializable;
68   * @author Paul Fisher   * @author Paul Fisher
69   * @author John Keiser   * @author John Keiser
70   * @author Tom Tromey   * @author Tom Tromey
71   * @author Eric Blake <ebb9@email.byu.edu>   * @author Eric Blake (ebb9@email.byu.edu)
72   * @see String   * @see String
73   * @see StringBuffer   * @see StringBuffer
74   *   *
# Line 106  public final class StringBuilder Line 106  public final class StringBuilder
106    /**    /**
107     * The default capacity of a buffer.     * The default capacity of a buffer.
108     */     */
109    private final static int DEFAULT_CAPACITY = 16;    private static final int DEFAULT_CAPACITY = 16;
110    
111    /**    /**
112     * Create a new StringBuilder with default capacity 16.     * Create a new StringBuilder with default capacity 16.

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

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