arez.browser.extras.spy.CssRules Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arez-browser-extras Show documentation
Show all versions of arez-browser-extras Show documentation
Arez Browser based Extras and Addons
package arez.browser.extras.spy;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.intellij.lang.annotations.Language;
import static java.lang.annotation.ElementType.*;
/**
* An annotation that ensures the the IDEA IDE will treat annotated elements as containing css rules.
*/
@Retention( RetentionPolicy.CLASS )
@Target( { METHOD, FIELD, PARAMETER, LOCAL_VARIABLE, ANNOTATION_TYPE } )
@Language( value = "CSS", prefix = ".a {", suffix = "}" )
public @interface CssRules
{
}