blob: 38f496dd51b77be29f2a407a579b04ca125c3643 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
import java.lang.annotation.*;
import java.io.*;
@Entity(indexed=false)
public class Foo2 {
public static void main(String []argv) {
Foo2 f = new Foo2();
Goo g = new Goo();
if (f instanceof Serializable) {
throw new RuntimeException("Foo2 should not implement it");
}
if (!(g instanceof Serializable)) {
throw new RuntimeException("Goo should implement it");
}
if (!(new Hoo() instanceof Serializable)) {
throw new RuntimeException("Hoo should implement it");
}
}
}
@Entity(indexed=true)
class Goo {
}
@Entity // default is true
class Hoo {
}
@Retention(RetentionPolicy.RUNTIME)
@interface Entity {
boolean indexed() default true;
}
aspect X {
declare parents: (@Entity(indexed=true) *) implements java.io.Serializable;
}
|