langtools/test/tools/javac/MethodParameters/AttributeVisitor.java
author emc
Thu, 22 Aug 2013 12:47:46 -0400
changeset 19657 48226ff07b84
parent 16307 3027c91f329a
child 36526 3b41f1c69604
permissions -rw-r--r--
8020745: Suspicious MethodParameters attribute generated for local classes capturing local variables Summary: Corrected an error in a previous patch that caused captured locals to be added to the beginning, not the end of a parameter list. Reviewed-by: jjg, mcimadamore, ksrini, abuckley
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16307
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     1
/*
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     2
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     4
 *
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     7
 * published by the Free Software Foundation.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     8
 *
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    13
 * accompanied this code).
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    14
 *
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    18
 *
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    21
 * questions.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    22
 */
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    23
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    24
import com.sun.tools.classfile.*;
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    25
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    26
/**
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    27
 * Trivial {@code Attribute.Visitor} implementation, to make it easy to
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    28
 * write visitors for specific attributes.
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    29
 */
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    30
class AttributeVisitor<R, P> implements Attribute.Visitor<R, P> {
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    31
    public R visitBootstrapMethods(BootstrapMethods_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    32
    public R visitDefault(DefaultAttribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    33
    public R visitAnnotationDefault(AnnotationDefault_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    34
    public R visitCharacterRangeTable(CharacterRangeTable_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    35
    public R visitCode(Code_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    36
    public R visitCompilationID(CompilationID_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    37
    public R visitConstantValue(ConstantValue_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    38
    public R visitDeprecated(Deprecated_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    39
    public R visitEnclosingMethod(EnclosingMethod_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    40
    public R visitExceptions(Exceptions_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    41
    public R visitInnerClasses(InnerClasses_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    42
    public R visitLineNumberTable(LineNumberTable_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    43
    public R visitLocalVariableTable(LocalVariableTable_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    44
    public R visitLocalVariableTypeTable(LocalVariableTypeTable_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    45
    public R visitMethodParameters(MethodParameters_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    46
    public R visitRuntimeVisibleAnnotations(RuntimeVisibleAnnotations_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    47
    public R visitRuntimeInvisibleAnnotations(RuntimeInvisibleAnnotations_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    48
    public R visitRuntimeVisibleParameterAnnotations(RuntimeVisibleParameterAnnotations_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    49
    public R visitRuntimeInvisibleParameterAnnotations(RuntimeInvisibleParameterAnnotations_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    50
    public R visitRuntimeVisibleTypeAnnotations(RuntimeVisibleTypeAnnotations_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    51
    public R visitRuntimeInvisibleTypeAnnotations(RuntimeInvisibleTypeAnnotations_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    52
    public R visitSignature(Signature_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    53
    public R visitSourceDebugExtension(SourceDebugExtension_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    54
    public R visitSourceFile(SourceFile_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    55
    public R visitSourceID(SourceID_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    56
    public R visitStackMap(StackMap_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    57
    public R visitStackMapTable(StackMapTable_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    58
    public R visitSynthetic(Synthetic_attribute attr, P p) { return null; }
3027c91f329a 8006582: Test for parameter names feature
strarup
parents:
diff changeset
    59
}