/[classpath]/classpath/java/io/StreamTokenizer.java
ViewVC logotype

Diff of /classpath/java/io/StreamTokenizer.java

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

revision 1.16 by mkoch, Mon Apr 12 14:46:57 2004 UTC revision 1.17 by mkoch, Tue Nov 16 11:32:36 2004 UTC
# Line 122  public class StreamTokenizer Line 122  public class StreamTokenizer
122     * them.  For details on how this method operates by default, see     * them.  For details on how this method operates by default, see
123     * <code>StreamTokenizer(Reader)</code>.     * <code>StreamTokenizer(Reader)</code>.
124     *     *
125     * @param in The <code>InputStream</code> to read from     * @param is The <code>InputStream</code> to read from
126     *     *
127     * @deprecated Since JDK 1.1.     * @deprecated Since JDK 1.1.
128     */     */
# Line 150  public class StreamTokenizer Line 150  public class StreamTokenizer
150     * <li>C  and C++ (//) comments are not recognized</li>     * <li>C  and C++ (//) comments are not recognized</li>
151     * </ul>     * </ul>
152     *     *
153     * @param in The <code>Reader</code> to read chars from     * @param r The <code>Reader</code> to read chars from
154     */     */
155    public StreamTokenizer(Reader r)    public StreamTokenizer(Reader r)
156    {    {
# Line 170  public class StreamTokenizer Line 170  public class StreamTokenizer
170     * This method sets the comment attribute on the specified     * This method sets the comment attribute on the specified
171     * character.  Other attributes for the character are cleared.     * character.  Other attributes for the character are cleared.
172     *     *
173     * @param c The character to set the comment attribute for, passed as an int     * @param ch The character to set the comment attribute for, passed as an int
174     */     */
175    public void commentChar(int ch)    public void commentChar(int ch)
176    {    {
# Line 517  public class StreamTokenizer Line 517  public class StreamTokenizer
517     * quote, or comment) will be set on this character.  This character will     * quote, or comment) will be set on this character.  This character will
518     * parse as its own token.     * parse as its own token.
519     *     *
520     * @param c The character to make ordinary, passed as an int     * @param ch The character to make ordinary, passed as an int
521     */     */
522    public void ordinaryChar(int ch)    public void ordinaryChar(int ch)
523    {    {
# Line 533  public class StreamTokenizer Line 533  public class StreamTokenizer
533     * range parse as its own token.     * range parse as its own token.
534     *     *
535     * @param low The low end of the range of values to set the whitespace     * @param low The low end of the range of values to set the whitespace
536     *            attribute for     * attribute for
537     * @param high The high end of the range of values to set the whitespace     * @param hi The high end of the range of values to set the whitespace
538     *            attribute for     * attribute for
539     */     */
540    public void ordinaryChars(int low, int hi)    public void ordinaryChars(int low, int hi)
541    {    {
# Line 575  public class StreamTokenizer Line 575  public class StreamTokenizer
575     * This method sets the quote attribute on the specified character.     * This method sets the quote attribute on the specified character.
576     * Other attributes for the character are cleared.     * Other attributes for the character are cleared.
577     *     *
578     * @param c The character to set the quote attribute for, passed as an int.     * @param ch The character to set the quote attribute for, passed as an int.
579     */     */
580    public void quoteChar(int ch)    public void quoteChar(int ch)
581    {    {
# Line 670  public class StreamTokenizer Line 670  public class StreamTokenizer
670     * specified range, range terminators included.     * specified range, range terminators included.
671     *     *
672     * @param low The low end of the range of values to set the whitespace     * @param low The low end of the range of values to set the whitespace
673     *            attribute for     * attribute for
674     * @param high The high end of the range of values to set the whitespace     * @param hi The high end of the range of values to set the whitespace
675     *             attribute for     * attribute for
676     */     */
677    public void whitespaceChars(int low, int hi)    public void whitespaceChars(int low, int hi)
678    {    {
# Line 692  public class StreamTokenizer Line 692  public class StreamTokenizer
692     * specified range, range terminators included.     * specified range, range terminators included.
693     *     *
694     * @param low The low end of the range of values to set the alphabetic     * @param low The low end of the range of values to set the alphabetic
695     *            attribute for     * attribute for
696     * @param high The high end of the range of values to set the alphabetic     * @param hi The high end of the range of values to set the alphabetic
697     *             attribute for     * attribute for
698     */     */
699    public void wordChars(int low, int hi)    public void wordChars(int low, int hi)
700    {    {

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17

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