public class Yggdrasil
Main Yggdrasil initiation class. Always use this, either as Main-Class or through initialize to instantiate an Yggdrasil application
Created by Erik HÃ¥kansson on 2017-04-08. Copyright 2017
| Constructor and Description |
|---|
Yggdrasil()
Main Yggdrasil initiation class. Always use this, either as Main-Class or through
initialize to instantiate an Yggdrasil application
|
| Modifier and Type | Method and Description |
|---|---|
static void |
initialize(java.lang.String[] args)
Main initialization method. Use this when initializing Yggdrasil manually.
Method should not be used in conjunction with Delegated-Main-Class in Manifest as that may lead to a never ending loop of initializations.
If method is used directly instead of through Main-Class args is not used.
|
static void |
main(java.lang.String[] args)
Standard main method. If manifest contains Delegated-Main-Class, the designated Class will be loaded after
Yggdrasil initialization and args passed to it.
|
public Yggdrasil()
Main Yggdrasil initiation class. Always use this, either as Main-Class or through initialize to instantiate an Yggdrasil application
Created by Erik HÃ¥kansson on 2017-04-08. Copyright 2017
public static void main(java.lang.String[] args)
Standard main method. If manifest contains Delegated-Main-Class, the designated Class will be loaded after Yggdrasil initialization and args passed to it.
args - Array of strings to be passed to a delegated Main-Classpublic static void initialize(java.lang.String[] args)
Main initialization method. Use this when initializing Yggdrasil manually. Method should not be used in conjunction with Delegated-Main-Class in Manifest as that may lead to a never ending loop of initializations. If method is used directly instead of through Main-Class args is not used.
args - unused