src/java.compiler/share/classes/javax/lang/model/util/AbstractElementVisitor9.java
changeset 47868 5cc5b8270cad
parent 47216 71c04702a3d5
child 48227 584a3ba42176
equal deleted inserted replaced
47867:2053c5489a9e 47868:5cc5b8270cad
     1 /*
     1 /*
     2  * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2011, 2017, 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
    73     protected AbstractElementVisitor9(){
    73     protected AbstractElementVisitor9(){
    74         super();
    74         super();
    75     }
    75     }
    76 
    76 
    77     /**
    77     /**
    78      * Visits a {@code ModuleElement} in a manner defined by a
    78      * {@inheritDoc}
       
    79      *
       
    80      * @implSpec Visits a {@code ModuleElement} in a manner defined by a
    79      * subclass.
    81      * subclass.
    80      *
    82      *
    81      * @param t  {@inheritDoc}
    83      * @param t  {@inheritDoc}
    82      * @param p  {@inheritDoc}
    84      * @param p  {@inheritDoc}
    83      * @return the result of the visit as defined by a subclass
    85      * @return   {@inheritDoc}
    84      */
    86      */
    85     @Override
    87     @Override
    86     public abstract R visitModule(ModuleElement t, P p);
    88     public abstract R visitModule(ModuleElement t, P p);
    87 }
    89 }