langtools/src/share/classes/com/sun/tools/javac/parser/JavaTokenizer.java
changeset 16810 670d880283e2
parent 14801 d66cab4ef397
child 22163 3651128c74eb
equal deleted inserted replaced
16809:5acfcb821d65 16810:670d880283e2
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   768     * Scan a documentation comment; determine if a deprecated tag is present.
   768     * Scan a documentation comment; determine if a deprecated tag is present.
   769     * Called once the initial /, * have been skipped, positioned at the second *
   769     * Called once the initial /, * have been skipped, positioned at the second *
   770     * (which is treated as the beginning of the first line).
   770     * (which is treated as the beginning of the first line).
   771     * Stops positioned at the closing '/'.
   771     * Stops positioned at the closing '/'.
   772     */
   772     */
   773     protected class BasicComment<U extends UnicodeReader> implements Comment {
   773     protected static class BasicComment<U extends UnicodeReader> implements Comment {
   774 
   774 
   775         CommentStyle cs;
   775         CommentStyle cs;
   776         U comment_reader;
   776         U comment_reader;
   777 
   777 
   778         protected boolean deprecatedFlag = false;
   778         protected boolean deprecatedFlag = false;