package org.togglz.core.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * * Identifies an annotation type as an feature group annotation * * @author Christian Kaltepoth * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface FeatureGroup { }