169e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal/*
269e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal * Javassist, a Java-bytecode translator toolkit.
369e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal * Copyright (C) 2004 Bill Burke. All Rights Reserved.
469e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal *
569e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal * The contents of this file are subject to the Mozilla Public License Version
669e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal * 1.1 (the "License"); you may not use this file except in compliance with
769e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal * the License.  Alternatively, the contents of this file may be used under
869e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal * the terms of the GNU Lesser General Public License Version 2.1 or later.
969e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal *
1069e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal * Software distributed under the License is distributed on an "AS IS" basis,
1169e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
1269e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal * for the specific language governing rights and limitations under the
1369e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal * License.
1469e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal */
1569e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal
1669e17611504376e4d4603925f8528dfc890fd2c6Luis Sigalpackage javassist.bytecode.annotation;
1769e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal
1869e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal/**
1969e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal * Visitor for traversing member values included in an annotation.
2069e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal *
2169e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal * @see MemberValue#accept(MemberValueVisitor)
2269e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal * @author <a href="mailto:bill@jboss.org">Bill Burke</a>
2369e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal */
2469e17611504376e4d4603925f8528dfc890fd2c6Luis Sigalpublic interface MemberValueVisitor {
2569e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal   public void visitAnnotationMemberValue(AnnotationMemberValue node);
2669e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal   public void visitArrayMemberValue(ArrayMemberValue node);
2769e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal   public void visitBooleanMemberValue(BooleanMemberValue node);
2869e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal   public void visitByteMemberValue(ByteMemberValue node);
2969e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal   public void visitCharMemberValue(CharMemberValue node);
3069e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal   public void visitDoubleMemberValue(DoubleMemberValue node);
3169e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal   public void visitEnumMemberValue(EnumMemberValue node);
3269e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal   public void visitFloatMemberValue(FloatMemberValue node);
3369e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal   public void visitIntegerMemberValue(IntegerMemberValue node);
3469e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal   public void visitLongMemberValue(LongMemberValue node);
3569e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal   public void visitShortMemberValue(ShortMemberValue node);
3669e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal   public void visitStringMemberValue(StringMemberValue node);
3769e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal   public void visitClassMemberValue(ClassMemberValue node);
3869e17611504376e4d4603925f8528dfc890fd2c6Luis Sigal}
39