langtools/src/share/classes/javax/lang/model/util/AbstractElementVisitor7.java
changeset 10192 378321489bea
parent 5841 7a8448425bb7
child 14258 8d2148961366
equal deleted inserted replaced
10191:9e93a8e0a880 10192:378321489bea
     1 /*
     1 /*
     2  * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2010, 2011, 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
    60  * @param <P> the type of the additional parameter to this visitor's
    60  * @param <P> the type of the additional parameter to this visitor's
    61  *            methods.  Use {@code Void} for visitors that do not need an
    61  *            methods.  Use {@code Void} for visitors that do not need an
    62  *            additional parameter.
    62  *            additional parameter.
    63  *
    63  *
    64  * @see AbstractElementVisitor6
    64  * @see AbstractElementVisitor6
       
    65  * @see AbstractElementVisitor8
    65  * @since 1.7
    66  * @since 1.7
    66  */
    67  */
    67 @SupportedSourceVersion(RELEASE_7)
    68 @SupportedSourceVersion(RELEASE_7)
    68 public abstract class AbstractElementVisitor7<R, P> extends AbstractElementVisitor6<R, P> {
    69 public abstract class AbstractElementVisitor7<R, P> extends AbstractElementVisitor6<R, P> {
    69     /**
    70     /**