package aQute.bnd.annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * This is a type that will be proxied. Any additions and deletions are ok. They * do not cause a version incompatibility. */ @Documented @Retention(RetentionPolicy.CLASS) @Target(ElementType.TYPE) public @interface ProxyType { }