* @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
* @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
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
* @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
* @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