File tree Expand file tree Collapse file tree 3 files changed +39
-0
lines changed
sources/net.sf.j2s.ajax/annotation/net/sf/j2s/ajax/annotation Expand file tree Collapse file tree 3 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ package net .sf .j2s .ajax .annotation ;
2
+
3
+ import static java .lang .annotation .ElementType .FIELD ;
4
+
5
+ import java .lang .annotation .Retention ;
6
+ import java .lang .annotation .RetentionPolicy ;
7
+ import java .lang .annotation .Target ;
8
+
9
+ @ Target (FIELD )
10
+ @ Retention (RetentionPolicy .SOURCE )
11
+ public @interface SimpleIn {
12
+
13
+ }
Original file line number Diff line number Diff line change
1
+ package net .sf .j2s .ajax .annotation ;
2
+
3
+ import static java .lang .annotation .ElementType .FIELD ;
4
+
5
+ import java .lang .annotation .Retention ;
6
+ import java .lang .annotation .RetentionPolicy ;
7
+ import java .lang .annotation .Target ;
8
+
9
+ @ Target (FIELD )
10
+ @ Retention (RetentionPolicy .SOURCE )
11
+ public @interface SimpleInOut {
12
+
13
+ }
Original file line number Diff line number Diff line change
1
+ package net .sf .j2s .ajax .annotation ;
2
+
3
+ import static java .lang .annotation .ElementType .FIELD ;
4
+
5
+ import java .lang .annotation .Retention ;
6
+ import java .lang .annotation .RetentionPolicy ;
7
+ import java .lang .annotation .Target ;
8
+
9
+ @ Target (FIELD )
10
+ @ Retention (RetentionPolicy .SOURCE )
11
+ public @interface SimpleOut {
12
+
13
+ }
You can’t perform that action at this time.
0 commit comments