]> git.mxchange.org Git - jcore-swing.git/commitdiff
Continued:
authorRoland Haeder <roland@mxchange.org>
Thu, 24 Sep 2015 13:18:57 +0000 (15:18 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 24 Sep 2015 13:18:57 +0000 (15:18 +0200)
- auto-reformatted many files
- updated jars
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore.jar
src/org/mxchange/jswingcore/client/gui/ClientFrame.java
src/org/mxchange/jswingcore/model/BaseModel.java
src/org/mxchange/jswingcore/model/swing/contact/ContactTableModel.java

index 57dc0a07e9ad739e6f82121851bb5ecdf7291de2..c0bdbee1e02a1d6bf6ef6af3c07a3bd7c43e06fe 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index a67be402b604dc81f7ef75cdd5dc98d99fabed4b..86f3becd943e682dd589361b8cf2e0c023d6a502 100644 (file)
@@ -31,7 +31,7 @@ public interface ClientFrame extends FrameworkInterface {
 
        /**
         * Shows the user the "add contact" form with some special text
-        * 
+        *
         * @return Contact instance
         */
        public Contact doEnterOwnData ();
@@ -58,7 +58,8 @@ public interface ClientFrame extends FrameworkInterface {
        /**
         * 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;
 
index e397c4871d69f1d4451d09e0a06ee900ad820b9b..899c2c19273c4d677151be71659839cb4762a1ea 100644 (file)
@@ -23,6 +23,7 @@ import javax.swing.event.TableModelListener;
 import org.mxchange.jcore.BaseFrameworkSystem;
 
 /**
+ * A general model class
  *
  * @author Roland Haeder
  */
index 5ed28a8b91e4b307b75e14177c5c6118e6e7eb64..fdef3e1b1889ba56fa6be59bba1a8019da84e348 100644 (file)
@@ -40,7 +40,7 @@ public class ContactTableModel extends BaseModel implements Model, TableModel {
                this.getLogger().trace(MessageFormat.format("manager={1} - CALLED!", manager)); //NOI18N
 
                // Manager must not be null
-               if (null == manager)  {
+               if (null == manager) {
                        // Abort here
                        throw new NullPointerException("manager is null"); //NOI18N
                }