mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-21 20:45:10 +00:00
Missing files
This commit is contained in:
parent
5dab086ba1
commit
11a9317042
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,7 +6,6 @@
|
||||
.idea
|
||||
*.iml
|
||||
out
|
||||
gen
|
||||
|
||||
# Ant result file
|
||||
plantuml.jar
|
||||
|
14
src/gen/annotation/Comment.java
Normal file
14
src/gen/annotation/Comment.java
Normal file
@ -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
src/gen/annotation/Difficult.java
Normal file
11
src/gen/annotation/Difficult.java
Normal file
@ -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
src/gen/annotation/Doc.java
Normal file
14
src/gen/annotation/Doc.java
Normal file
@ -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
src/gen/annotation/HasND_Rank.java
Normal file
11
src/gen/annotation/HasND_Rank.java
Normal file
@ -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
src/gen/annotation/Original.java
Normal file
21
src/gen/annotation/Original.java
Normal file
@ -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
src/gen/annotation/Reviewed.java
Normal file
13
src/gen/annotation/Reviewed.java
Normal file
@ -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
src/gen/annotation/Todo.java
Normal file
14
src/gen/annotation/Todo.java
Normal file
@ -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
src/gen/annotation/Untraced.java
Normal file
11
src/gen/annotation/Untraced.java
Normal file
@ -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
src/gen/annotation/Unused.java
Normal file
11
src/gen/annotation/Unused.java
Normal file
@ -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 {
|
||||
}
|
Loading…
Reference in New Issue
Block a user