1
2
3
4 package net.sourceforge.jsh3modtool.mod;
5
6 import java.net.URL;
7
8 /***
9 * Interface for defining an author of a mod.
10 * @author redsolo
11 */
12 public interface ModAuthor
13 {
14 /***
15 * Returns the alias of the author.
16 * @return the alias of the author.
17 */
18 String getAlias();
19
20 /***
21 * Returns the full name of the author.
22 * @return the full name of the author.
23 */
24 String getName();
25
26 /***
27 * Returns the email of the author.
28 * @return the email of the author.
29 */
30 String getEmail();
31
32 /***
33 * Returns the web site.
34 * @return the web site.
35 */
36 URL getWebsite();
37 }