From f9e47830029045e21ba8bbab6d2a920e25e35273 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Fri, 28 Aug 2015 12:11:34 +0200 Subject: [PATCH] =?utf8?q?More=20tpyos=20fixed=20...=20;-)=20Signed-off-by?= =?utf8?q?:Roland=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/org/mxchange/jcore/BaseFrameworkSystem.java | 4 ++-- src/org/mxchange/jcore/contact/BaseContact.java | 2 +- .../database/backend/base64/Base64CsvDatabaseBackend.java | 2 +- .../mxchange/jcore/database/frontend/DatabaseFrontend.java | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/org/mxchange/jcore/BaseFrameworkSystem.java b/src/org/mxchange/jcore/BaseFrameworkSystem.java index d4887f1..35462af 100644 --- a/src/org/mxchange/jcore/BaseFrameworkSystem.java +++ b/src/org/mxchange/jcore/BaseFrameworkSystem.java @@ -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 diff --git a/src/org/mxchange/jcore/contact/BaseContact.java b/src/org/mxchange/jcore/contact/BaseContact.java index b0da086..1640447 100644 --- a/src/org/mxchange/jcore/contact/BaseContact.java +++ b/src/org/mxchange/jcore/contact/BaseContact.java @@ -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 diff --git a/src/org/mxchange/jcore/database/backend/base64/Base64CsvDatabaseBackend.java b/src/org/mxchange/jcore/database/backend/base64/Base64CsvDatabaseBackend.java index 345427c..9cc676e 100644 --- a/src/org/mxchange/jcore/database/backend/base64/Base64CsvDatabaseBackend.java +++ b/src/org/mxchange/jcore/database/backend/base64/Base64CsvDatabaseBackend.java @@ -195,7 +195,7 @@ public class Base64CsvDatabaseBackend extends BaseDatabaseBackend implements Dat Map 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 diff --git a/src/org/mxchange/jcore/database/frontend/DatabaseFrontend.java b/src/org/mxchange/jcore/database/frontend/DatabaseFrontend.java index 511750e..0bf066b 100644 --- a/src/org/mxchange/jcore/database/frontend/DatabaseFrontend.java +++ b/src/org/mxchange/jcore/database/frontend/DatabaseFrontend.java @@ -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 map) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException; + public Storable toStorable (final Map map) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException; /** * Some getter for name of id column -- 2.39.5