Skip to content

Commit

Permalink
Missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudroques committed Dec 20, 2020
1 parent 5dab086 commit 11a9317
Show file tree
Hide file tree
Showing 10 changed files with 120 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
.idea
*.iml
out
gen

# Ant result file
plantuml.jar
Expand Down
14 changes: 14 additions & 0 deletions src/gen/annotation/Comment.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package gen.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.CONSTRUCTOR, ElementType.METHOD })
public @interface Comment {

String comment();

}
11 changes: 11 additions & 0 deletions src/gen/annotation/Difficult.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package gen.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.CONSTRUCTOR, ElementType.METHOD })
public @interface Difficult {
}
14 changes: 14 additions & 0 deletions src/gen/annotation/Doc.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package gen.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.CONSTRUCTOR, ElementType.METHOD })
public @interface Doc {

String value();

}
11 changes: 11 additions & 0 deletions src/gen/annotation/HasND_Rank.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package gen.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.CONSTRUCTOR, ElementType.METHOD })
public @interface HasND_Rank {
}
21 changes: 21 additions & 0 deletions src/gen/annotation/Original.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package gen.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.CONSTRUCTOR, ElementType.METHOD })
public @interface Original {

String path();

String name();

String key();

String definition();

String version();
}
13 changes: 13 additions & 0 deletions src/gen/annotation/Reviewed.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package gen.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.CONSTRUCTOR, ElementType.METHOD })
public @interface Reviewed {

String when();
}
14 changes: 14 additions & 0 deletions src/gen/annotation/Todo.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package gen.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.CONSTRUCTOR, ElementType.METHOD })
public @interface Todo {

String what();

}
11 changes: 11 additions & 0 deletions src/gen/annotation/Untraced.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package gen.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.CONSTRUCTOR, ElementType.METHOD })
public @interface Untraced {
}
11 changes: 11 additions & 0 deletions src/gen/annotation/Unused.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package gen.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.CONSTRUCTOR, ElementType.METHOD })
public @interface Unused {
}

0 comments on commit 11a9317

Please sign in to comment.