X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=Addressbook%2Fsrc%2Forg%2Fmxchange%2Faddressbook%2Fapplication%2FApplication.java;h=5aa4a2344bdd5c7e174aa4e5666474877faf9a7a;hb=ea30fd0dc674dcd10c3aead1acd47000a99d7334;hp=503cfe5258a52bf1b4b16be42eddb68ef37ce51b;hpb=3d62a931aaed1be63a675d5562588733329fcec2;p=jaddressbook-share-lib.git diff --git a/Addressbook/src/org/mxchange/addressbook/application/Application.java b/Addressbook/src/org/mxchange/addressbook/application/Application.java index 503cfe5..5aa4a23 100644 --- a/Addressbook/src/org/mxchange/addressbook/application/Application.java +++ b/Addressbook/src/org/mxchange/addressbook/application/Application.java @@ -1,35 +1,41 @@ -/* - * Copyright (C) 2015 Roland Haeder - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package org.mxchange.addressbook.application; - -import org.mxchange.addressbook.FrameworkInterface; - -/** - * - * @author Roland Haeder - */ -public interface Application extends FrameworkInterface { - /** - * Bootstraps the application - */ - public void doBootstrap(); - - /** - * Run the main loop - */ - public void doMainLoop(); -} +/* + * Copyright (C) 2015 Roland Haeder + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +package org.mxchange.addressbook.application; + +import org.mxchange.addressbook.FrameworkInterface; + +/** + * + * @author Roland Haeder + */ +public interface Application extends FrameworkInterface { + + /** + * Bootstraps the application + */ + public void doBootstrap (); + + /** + * Run the main loop + */ + public void doMainLoop (); + + /** + * Shutdown the application + */ + public void doShutdown (); +}