public @interface Before
Modifier and Type | Required Element and Description |
---|---|
java.lang.Class<? extends Marker> |
marker
Marker class defines a region where the snippet is applied.
|
Modifier and Type | Optional Element and Description |
---|---|
java.lang.String |
args
Argument for the marker (as string).
|
boolean |
dynamicBypass
You can in general disable dynamic bypass on snippets, that are not using
any other class.
|
java.lang.Class<? extends java.lang.Object> |
guard
The guard class defining if the snippet will be inlined in particular
region or not.
|
int |
order
Defines ordering of the snippets.
|
java.lang.String |
scope
Scope of the methods, where the snippet is applied.
|
public abstract java.lang.Class<? extends Marker> marker
public abstract java.lang.String args
public abstract java.lang.String scope
public abstract java.lang.Class<? extends java.lang.Object> guard
public abstract int order
public abstract boolean dynamicBypass