X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=Addressbook%2Fsrc%2Forg%2Fmxchange%2Faddressbook%2Fclient%2Fgui%2FClientFrame.java;fp=Addressbook%2Fsrc%2Forg%2Fmxchange%2Faddressbook%2Fclient%2Fgui%2FClientFrame.java;h=6a7d6b0b6b232df76c59b6952e3668e30031ab35;hb=ea30fd0dc674dcd10c3aead1acd47000a99d7334;hp=24bec9870cb0ac279e49ffbfd955efbad4fe2abd;hpb=2ad04803a6ef72f2ab29e655647b08a410e3bb58;p=addressbook-lib.git diff --git a/Addressbook/src/org/mxchange/addressbook/client/gui/ClientFrame.java b/Addressbook/src/org/mxchange/addressbook/client/gui/ClientFrame.java index 24bec98..6a7d6b0 100644 --- a/Addressbook/src/org/mxchange/addressbook/client/gui/ClientFrame.java +++ b/Addressbook/src/org/mxchange/addressbook/client/gui/ClientFrame.java @@ -27,32 +27,35 @@ import org.mxchange.addressbook.exceptions.FrameAlreadyInitializedException; */ public interface ClientFrame extends FrameworkInterface { - /** - * Shutdown this frame - */ - public void doShutdown (); + /** + * Shutdown this frame + */ + public void doShutdown (); - /** - * Setups the frame (and starts it). You have to call init() before you - can call this method. - * - * @param client Client instance - */ - public void setupFrame (final Client client); + /** + * Setups the frame (and starts it). You have to call init() before you can + * call this method. + * + * @param client Client instance + */ + public void setupFrame (final Client client); - /** - * Initializes frame - * - * @throws org.mxchange.addressbook.exceptions.FrameAlreadyInitializedException If this method has been called twice - */ - public void init () throws FrameAlreadyInitializedException; + /** + * Initializes frame + * + * @throws + * org.mxchange.addressbook.exceptions.FrameAlreadyInitializedException If + * this method has been called twice + */ + public void init () throws FrameAlreadyInitializedException; - /** - * Returns field isInitialized. This flag indicates whether this frame has been initialized or not. - * - * @return Field isInitialized - */ - public boolean isInitialized (); + /** + * Returns field isInitialized. This flag indicates whether this frame has + * been initialized or not. + * + * @return Field isInitialized + */ + public boolean isInitialized (); - public void shutdownApplication (); + public void shutdownApplication (); }