langtools/src/share/classes/com/sun/tools/javac/parser/Lexer.java
changeset 13844 56339cf983a3
parent 11143 9dbe313bfb74
equal deleted inserted replaced
13843:1ac97278d72b 13844:56339cf983a3
     1 /*
     1 /*
     2  * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2005, 2012, 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
    59      */
    59      */
    60     Token prevToken();
    60     Token prevToken();
    61 
    61 
    62     /**
    62     /**
    63      * Splits the current token in two and return the first (splitted) token.
    63      * Splits the current token in two and return the first (splitted) token.
    64      * For instance '<<<' is splitted into two tokens '<' and '<<' respectively,
    64      * For instance {@literal '<<<'} is split into two tokens
       
    65      * {@literal '<'} and {@literal '<<'} respectively,
    65      * and the latter is returned.
    66      * and the latter is returned.
    66      */
    67      */
    67     Token split();
    68     Token split();
    68 
    69 
    69     /**
    70     /**