All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bibliothek.notes.Application Maven / Gradle / Ivy

package bibliothek.notes;


/**
 * The startup-class if this application should be treated
 * as a stand-alone, non-restricted application.
 * @author Benjamin Sigg
 *
 */
public class Application {
    /**
     * Entrypoint
     * @param args ignored
     */
	public static void main( String[] args ){
		Core core = new Core( false, null );
		core.startup();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy