blob: 5187cc6bd8730081a851b85fa754921780007dd7 [file] [log] [blame]
package org.eclipse.osbp.runtime.common.annotations;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/*
* This annotation adds an extra style to a field derived from the annotated entity attribute
*/
@Retention(RUNTIME)
@Target(FIELD)
public @interface ExtraStyle {
/**
* The name of the style.
*
* @return
*/
String name();
}