Skip to content

Commit

Permalink
🚀 Add Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Cleymax committed Apr 12, 2020
1 parent 02b0f77 commit 17f88c3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/main/java/fr/cleymax/clibrary/Dependencies.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package fr.cleymax.clibrary;

import java.lang.annotation.*;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
* File <b>Dependencies</b> located on fr.cleymax.clibrary is a part of CLibrary. Created the 12/04/2020
* <p>
* @author Clément P. (Cleymax) Class to load multiple dependencies.
*/
@Documented
@Target(TYPE)
@Retention(RUNTIME)
public @interface Dependencies {

/**
* A table representing a list of dependencies.
* @return dependencies.
*/
Dependency[] value();
}

0 comments on commit 17f88c3

Please sign in to comment.