01: /*
02: * ProGuard -- shrinking, optimization, obfuscation, and preverification
03: * of Java bytecode.
04: *
05: * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
06: *
07: * This library is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU General Public License as published by the Free
09: * Software Foundation; either version 2 of the License, or (at your option)
10: * any later version.
11: *
12: * This library is distributed in the hope that it will be useful, but WITHOUT
13: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
15: * for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public License
18: * along with this library; if not, write to the Free Software Foundation,
19: * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20: */
21: package proguard.classfile;
22:
23: import proguard.classfile.visitor.*;
24:
25: /**
26: * Representation of a field or method from a program class.
27: *
28: * @author Eric Lafortune
29: */
30: public interface Member extends VisitorAccepter {
31: /**
32: * Returns access flags.
33: */
34: public int getAccessFlags();
35:
36: /**
37: * Returns method/field string name.
38: */
39: public String getName(Clazz clazz);
40:
41: /**
42: * Returns descriptor string.
43: */
44: public String getDescriptor(Clazz clazz);
45:
46: /**
47: * Accepts the given class visitor.
48: */
49: public void accept(Clazz clazz, MemberVisitor memberVisitor);
50:
51: /**
52: * Lets the Clazz objects referenced in the descriptor string
53: * accept the given visitor.
54: */
55: public void referencedClassesAccept(ClassVisitor classVisitor);
56: }
|