17 lines
438 B
Java
17 lines
438 B
Java
package com.bib.essensbestellungsverwaltung;
|
|
|
|
/**
|
|
* Acts as a launcher required to make it a .jar
|
|
* It is also used to select either the cli or the gui depending on starting arguments
|
|
* @author Malte Schulze Hobeling
|
|
*/
|
|
public class SuperMain {
|
|
public static void main(String[] args) {
|
|
if(args.length > 0){
|
|
ConsoleMain.main(args);
|
|
}else {
|
|
StartViewApplication.main(args);
|
|
}
|
|
}
|
|
}
|