src/share/classes/com/sun/tools/javac/parser/JavaTokenizer.java

changeset 1679
b402b93cbe38
parent 1442
fcf89720ae71
child 2525
2eb010b6cb22
equal deleted inserted replaced
1678:c635a966ce84 1679:b402b93cbe38
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;

mercurial