Skip to content

Commit f4bbea3

Browse files
author
zhourenjian@gmail.com
committed
Add Simple RPC/Pipe related annotations
1 parent 8c785d7 commit f4bbea3

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
}

0 commit comments

Comments
 (0)