|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||||
@Target(value={SUPERPACKAGE,TYPE})
@Retention(value=RUNTIME)
public @interface MainClassIndicates the main class of a module definition. The main class name must not have the .class extension appended. This metadata annotation is applied to the development module, i.e. the superpackage construct.
For example,
@MainClass("com.wombat.xyz.Main")
superpackage com.wombat.xyz {
...
}
Note that being a main class does not imply the class is exported from the module definition. The main class must be declared as exported separately. For example,
@MainClass("com.wombat.xyz.Main")
superpackage com.wombat.xyz {
export com.wombat.xyz.*;
...
}
| Required Element Summary | |
|---|---|
String |
value
Main class name. |
| Element Detail |
|---|
public abstract String value
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||||