Skip to content

Commit

Permalink
补充enhance/target
Browse files Browse the repository at this point in the history
  • Loading branch information
dongchenxu committed Dec 12, 2019
1 parent 01b17d8 commit 4c45b17
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ sandbox-mgr-module/target/
sandbox-mgr-provider/target/
sandbox-module-starter/target/
target/
!sandbox-core/src/test/java/com/alibaba/jvm/sandbox/qatest/core/enhance/target

## for eclipse and vscode
.classpath
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.alibaba.jvm.sandbox.qatest.core.enhance.target;

import java.lang.annotation.*;

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Computer {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package com.alibaba.jvm.sandbox.qatest.core.enhance.target;

import java.lang.annotation.*;

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface InheritedComputer {
}

0 comments on commit 4c45b17

Please sign in to comment.