]> git.mxchange.org Git - jcore.git/blobdiff - src/org/mxchange/jcore/client/gui/ClientFrame.java
Added Boolean type
[jcore.git] / src / org / mxchange / jcore / client / gui / ClientFrame.java
index 6f4f22caa0e50b41d6f758471f40d7947ab9cd17..8674d68976fd221f63a2cf75504c3494238d92a2 100644 (file)
  */
 package org.mxchange.jcore.client.gui;
 
+import java.io.IOException;
 import org.mxchange.jcore.FrameworkInterface;
 import org.mxchange.jcore.client.Client;
 import org.mxchange.jcore.contact.Contact;
+import org.mxchange.jcore.exceptions.BadTokenException;
 import org.mxchange.jcore.exceptions.FrameAlreadyInitializedException;
 
 /**
@@ -50,15 +52,15 @@ public interface ClientFrame extends FrameworkInterface {
         * call this method.
         *
         * @param client Client instance
+        * @throws java.io.IOException If an IO error was found
+        * @throws org.mxchange.jcore.exceptions.BadTokenException If a bad token was found
         */
-       public void setupFrame (final Client client);
+       public void setupFrame (final Client client) throws IOException, BadTokenException;
 
        /**
         * Initializes frame
         *
-        * @throws
-        * org.mxchange.jcore.exceptions.FrameAlreadyInitializedException If
-        * this method has been called twice
+        * @throws org.mxchange.jcore.exceptions.FrameAlreadyInitializedException If  this method has been called twice
         */
        public void init () throws FrameAlreadyInitializedException;