]> git.mxchange.org Git - addressbook-lib.git/blobdiff - Addressbook/src/org/mxchange/addressbook/client/gui/SwingClient.java
Introduced initTable()
[addressbook-lib.git] / Addressbook / src / org / mxchange / addressbook / client / gui / SwingClient.java
index c616ae9ac90186e6a75fecca6e3b7d8f538a3a06..0914828179e3844ca20acb1e5cb488afc82990b6 100644 (file)
  */
 package org.mxchange.addressbook.client.gui;
 
-import org.mxchange.addressbook.FrameAlreadyInitializedException;
-import org.mxchange.addressbook.UnhandledUserChoiceException;
 import org.mxchange.addressbook.application.Application;
 import org.mxchange.addressbook.client.BaseClient;
 import org.mxchange.addressbook.client.Client;
 import org.mxchange.addressbook.contact.Contact;
+import org.mxchange.addressbook.exceptions.FrameAlreadyInitializedException;
+import org.mxchange.addressbook.exceptions.UnhandledUserChoiceException;
 import org.mxchange.addressbook.menu.Menu;
 import org.mxchange.addressbook.menu.item.SelectableMenuItem;
 
@@ -153,7 +153,7 @@ public class SwingClient extends BaseClient implements Client {
      * Inizializes this client
      */
     @Override
-    public void initClient () {
+    public void init () {
        // Debug message
        this.getLogger().trace("CALLED!");
 
@@ -162,7 +162,7 @@ public class SwingClient extends BaseClient implements Client {
 
        try {
            // Init frame
-           this.frame.initFrame();
+           this.frame.init();
        } catch (final FrameAlreadyInitializedException ex) {
            this.getLogger().catching(ex);
            System.exit(1);