ProGuard

proguard.classfile
Interface VisitorAccepter

All Known Subinterfaces:
ClassFile, FieldInfo, MemberInfo, MethodInfo
All Known Implementing Classes:
AttrInfo, CpInfo, ExceptionInfo, InnerClassesInfo, LibraryClassFile, LibraryFieldInfo, LibraryMemberInfo, LibraryMethodInfo, ProgramClassFile, ProgramFieldInfo, ProgramMemberInfo, ProgramMethodInfo

public interface VisitorAccepter

This interface is a base interface for visitor accepters. It allows visitors to set and get any temporary information they desire on the objects they are visiting. Note that every visitor accepter has only one such property, so visitors will have to take care not to overwrite each other's information, if it is still required.


Method Summary
 Object getVisitorInfo()
          Gets the visitor information of the visitor accepter.
 void setVisitorInfo(Object visitorInfo)
          Sets the visitor information of the visitor accepter.
 

Method Detail

getVisitorInfo

public Object getVisitorInfo()
Gets the visitor information of the visitor accepter.


setVisitorInfo

public void setVisitorInfo(Object visitorInfo)
Sets the visitor information of the visitor accepter.


ProGuard