]> git.mxchange.org Git - jcore-swing.git/commitdiff
Cleanup through inspection + updated jar(s)
authorRoland Haeder <roland@mxchange.org>
Thu, 15 Oct 2015 07:44:06 +0000 (09:44 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 15 Oct 2015 07:44:06 +0000 (09:44 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore.jar
src/org/mxchange/jcoreswing/client/gui/ClientFrame.java
src/org/mxchange/jcoreswing/model/Model.java

index a6eb677503c0d30b4193df4b45c57ed7216d2652..1c2e5700bc02644df1ffeab194e3f5068109e9bc 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index 710c0cd1694eda5519ddc5fe41226a7edce94cb1..efb37ff7d5f12f40d1e7dbdbb24862e3be6c2390 100644 (file)
@@ -34,17 +34,17 @@ public interface ClientFrame extends FrameworkInterface {
         * <p>
         * @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 {
         * <p>
         * @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 {
         * <p>
         * @return Field isInitialized
         */
-       public boolean isInitialized ();
+       boolean isInitialized ();
 
        /**
         * Logs any exceptions or errors
         * <p>
         * @param throwable Throwable
         */
-       public void logException (final Throwable throwable);
+       void logException (final Throwable throwable);
 
        /**
         * Shuts down application
         */
-       public void shutdownApplication ();
+       void shutdownApplication ();
 }
index 38c3a2a9fc11b1e550d8559223d4cba1bf014c3b..8ad0aeae405ced36e55e826ea637596a9d23993e 100644 (file)
@@ -32,26 +32,26 @@ public interface Model extends FrameworkInterface {
         * <p>
         * @param listener Listener instance
         */
-       public void addListDataListener (final ListDataListener listener);
+       void addListDataListener (final ListDataListener listener);
 
        /**
         * Adds a TableModel listener instance to the event list.
         * <p>
         * @param listener Lister instance
         */
-       public void addTableModelListener (final TableModelListener listener);
+       void addTableModelListener (final TableModelListener listener);
 
        /**
         * Removes given listener
         * <p>
         * @param listener Listener instance
         */
-       public void removeListDataListener (final ListDataListener listener);
+       void removeListDataListener (final ListDataListener listener);
 
        /**
         * Removes a TableModel listener instance from the event list.
         * <p>
         * @param listener Listener instance
         */
-       public void removeTableModelListener (final TableModelListener listener);
+       void removeTableModelListener (final TableModelListener listener);
 }