langtools/src/jdk.compiler/share/classes/com/sun/source/doctree/DocTreeVisitor.java
changeset 37009 476d8d615222
parent 34916 16043fc1d90b
child 42831 feff6f296019
equal deleted inserted replaced
37008:55c73d04e57c 37009:476d8d615222
     1 /*
     1 /*
     2  * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2011, 2016, 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
   127      * @return a result value
   127      * @return a result value
   128      */
   128      */
   129     R visitErroneous(ErroneousTree node, P p);
   129     R visitErroneous(ErroneousTree node, P p);
   130 
   130 
   131     /**
   131     /**
       
   132      * Visits a HiddenTree node.
       
   133      * @param node the node being visited
       
   134      * @param p a parameter value
       
   135      * @return a result value
       
   136      */
       
   137     R visitHidden(HiddenTree node, P p);
       
   138 
       
   139     /**
   132      * Visits an IdentifierTree node.
   140      * Visits an IdentifierTree node.
   133      * @param node the node being visited
   141      * @param node the node being visited
   134      * @param p a parameter value
   142      * @param p a parameter value
   135      * @return a result value
   143      * @return a result value
   136      */
   144      */