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); } } }