]> git.mxchange.org Git - jcore.git/commitdiff
More tpyos fixed ... ;-)
authorRoland Haeder <roland@mxchange.org>
Fri, 28 Aug 2015 10:11:34 +0000 (12:11 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 28 Aug 2015 10:11:34 +0000 (12:11 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/org/mxchange/jcore/BaseFrameworkSystem.java
src/org/mxchange/jcore/contact/BaseContact.java
src/org/mxchange/jcore/database/backend/base64/Base64CsvDatabaseBackend.java
src/org/mxchange/jcore/database/frontend/DatabaseFrontend.java

index d4887f160748af1bfce90f6f5ff38c50ec24c9ec..35462af8436f270d5a0e2a788873c8ce31108e94 100644 (file)
@@ -1130,7 +1130,7 @@ public class BaseFrameworkSystem implements FrameworkInterface {
         * @throws java.lang.IllegalAccessException If the setter cannot be accessed
         * @throws java.lang.reflect.InvocationTargetException Any other problem?
         */
-       protected void setValueInStoreableFromColumn (final Storable instance, final String targetClass, final String columnName, final Object value) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
+       protected void setValueInStorableFromColumn (final Storable instance, final String targetClass, final String columnName, final Object value) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
                // Trace message
                this.getLogger().trace(MessageFormat.format("instance={0},targetClass={1},columnName={2},value={3} - CALLED!", instance, targetClass, columnName, value)); //NOI18N
 
@@ -1173,7 +1173,7 @@ public class BaseFrameworkSystem implements FrameworkInterface {
         * @throws java.lang.IllegalAccessException If the getter cannot be accessed
         * @throws java.lang.reflect.InvocationTargetException Some other problems?
         */
-       protected Object getValueInStoreableFromColumn (final Storable instance, final String targetClass, final String columnName) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
+       protected Object getValueInStorableFromColumn (final Storable instance, final String targetClass, final String columnName) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
                // Trace message
                this.getLogger().trace(MessageFormat.format("instance={0},targetClass={1},columnName={2} - CALLED!", instance, targetClass, columnName)); //NOI18N
 
index b0da086666e315eebdf6b3fed8855ec1f0dd0ddb..16404471b4c29002f924d7c74d3e7af7b68f165e 100644 (file)
@@ -600,7 +600,7 @@ public class BaseContact extends BaseFrameworkSystem implements Contact, Compara
                this.getLogger().trace(MessageFormat.format("columnName={0},value={1} - CALLED!", columnName, value)); //NOI18N
                
                // Call super method
-               this.setValueInStoreableFromColumn(this, "BaseContact", columnName, value); //NOI18N
+               this.setValueInStorableFromColumn(this, "BaseContact", columnName, value); //NOI18N
                
                // Trace message
                this.getLogger().trace("EXIT!"); //NOI18N
index 345427c2587565e8584709e9ff7ad939db229c3f..9cc676ec535535d990e026762e4aa6f31de6dca7 100644 (file)
@@ -195,7 +195,7 @@ public class Base64CsvDatabaseBackend extends BaseDatabaseBackend implements Dat
                        Map<String, String> map = this.getMapFromLine(line);
 
                        // Convert it to a Storable instance
-                       Storable storeable = this.getFrontend().toStoreable(map);
+                       Storable storeable = this.getFrontend().toStorable(map);
 
                        // Debug message
                        this.getLogger().debug(MessageFormat.format("storeable={0}", storeable)); //NOI18N
index 511750e3b43345007b9b451ff31cca83c9978dfa..0bf066bdfbe2d983c23ba28df4ec04624d75bfa5 100644 (file)
@@ -56,7 +56,7 @@ public interface DatabaseFrontend extends FrameworkInterface {
         * @param rowIndex Row index too look for
         * @return A Storable instance
         */
-       public Storable getStoreableAtRow (final int rowIndex);
+       public Storable getStorableAtRow (final int rowIndex);
 
        /**
         * Name of used database table, handled over to backend
@@ -84,7 +84,7 @@ public interface DatabaseFrontend extends FrameworkInterface {
         * @throws java.lang.IllegalAccessException If the method cannot be accessed
         * @throws java.lang.reflect.InvocationTargetException Any other problems?
         */
-       public Storable toStoreable (final Map<String, String> map) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException;
+       public Storable toStorable (final Map<String, String> map) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException;
 
        /**
         * Some getter for name of id column