01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.aspectwerkz.reflect.impl.asm;
05:
06: /**
07: * The member info.
08: *
09: * @author <a href="mailto:jboner@codehaus.org">Jonas BonŽr </a>
10: */
11: public class MemberStruct {
12: public int modifiers;
13: public String name;
14: public String desc;
15: public String signature;
16: }
|