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;
05:
06: /**
07: * Marker interface for staticinitializer member info.
08: * There cannot be other exposed info than the declaring type.
09: *
10: * @author <a href="mailto:the_mindstorm@evolva.ro">Alex Popescu</a>
11: */
12: public interface StaticInitializationInfo extends MemberInfo {
13:
14: }
|