blob: a8812e011fb9864a74f6ad6305d48220b4e1043d (
plain)
1
2
3
4
5
6
7
8
9
|
package a.b;
import c.d.DistantResource;
import e.f.SimpleAnnotation2;
// import the annotation type
aspect SimpleAspect4 {
declare @type: DistantResource: @SimpleAnnotation2(classname="oranges");
}
|