lor6 0735c03154 togglz aspect (#1743)
* togglz aspect

* formatting

* trigger travis build
2017-04-30 10:39:11 +02:00

13 lines
343 B
Java

package com.baeldung.toggle;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD, ElementType.TYPE })
public @interface FeatureAssociation {
MyFeatures value();
}