From: Roland Haeder Date: Thu, 15 Oct 2015 07:44:06 +0000 (+0200) Subject: Cleanup through inspection + updated jar(s) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a1697316d886e89a224812e3a4696f6e7ba32fa5;p=jcore-swing.git Cleanup through inspection + updated jar(s) Signed-off-by:Roland Häder --- diff --git a/lib/jcore.jar b/lib/jcore.jar index a6eb677..1c2e570 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/src/org/mxchange/jcoreswing/client/gui/ClientFrame.java b/src/org/mxchange/jcoreswing/client/gui/ClientFrame.java index 710c0cd..efb37ff 100644 --- a/src/org/mxchange/jcoreswing/client/gui/ClientFrame.java +++ b/src/org/mxchange/jcoreswing/client/gui/ClientFrame.java @@ -34,17 +34,17 @@ public interface ClientFrame extends FrameworkInterface { *

* @return Contact instance */ - public Contact doEnterOwnData (); + Contact doEnterOwnData (); /** * Shutdown this frame */ - public void doShutdown (); + void doShutdown (); /** * Enables main window (frame) */ - public void enableMainWindow (); + void enableMainWindow (); /** * Setups the frame (and starts it). You have to call init() before you can @@ -54,7 +54,7 @@ public interface ClientFrame extends FrameworkInterface { *

* @throws java.io.IOException If an IO error was found */ - public void setupFrame (final Client client) throws IOException; + void setupFrame (final Client client) throws IOException; /** * Initializes frame @@ -62,7 +62,7 @@ public interface ClientFrame extends FrameworkInterface { * @throws org.mxchange.jcore.exceptions.FrameAlreadyInitializedException If * this method has been called twice */ - public void init () throws FrameAlreadyInitializedException; + void init () throws FrameAlreadyInitializedException; /** * Returns field isInitialized. This flag indicates whether this frame has @@ -70,17 +70,17 @@ public interface ClientFrame extends FrameworkInterface { *

* @return Field isInitialized */ - public boolean isInitialized (); + boolean isInitialized (); /** * Logs any exceptions or errors *

* @param throwable Throwable */ - public void logException (final Throwable throwable); + void logException (final Throwable throwable); /** * Shuts down application */ - public void shutdownApplication (); + void shutdownApplication (); } diff --git a/src/org/mxchange/jcoreswing/model/Model.java b/src/org/mxchange/jcoreswing/model/Model.java index 38c3a2a..8ad0aea 100644 --- a/src/org/mxchange/jcoreswing/model/Model.java +++ b/src/org/mxchange/jcoreswing/model/Model.java @@ -32,26 +32,26 @@ public interface Model extends FrameworkInterface { *

* @param listener Listener instance */ - public void addListDataListener (final ListDataListener listener); + void addListDataListener (final ListDataListener listener); /** * Adds a TableModel listener instance to the event list. *

* @param listener Lister instance */ - public void addTableModelListener (final TableModelListener listener); + void addTableModelListener (final TableModelListener listener); /** * Removes given listener *

* @param listener Listener instance */ - public void removeListDataListener (final ListDataListener listener); + void removeListDataListener (final ListDataListener listener); /** * Removes a TableModel listener instance from the event list. *

* @param listener Listener instance */ - public void removeTableModelListener (final TableModelListener listener); + void removeTableModelListener (final TableModelListener listener); }