]> git.mxchange.org Git - jcore.git/blobdiff - src/org/mxchange/jcore/FrameworkInterface.java
Sorted imports (NetBeans' choice?)
[jcore.git] / src / org / mxchange / jcore / FrameworkInterface.java
index 28bcfe192f718dc9a351ad14ea5d3e49cdb1a726..bf9b1e8f7ca8fa144c6c63504817f87b7b928730 100644 (file)
@@ -92,17 +92,4 @@ public interface FrameworkInterface {
         * @throws java.lang.reflect.InvocationTargetException Any other problems?
         */
        public boolean isFieldValueEqual (final String columnName, final boolean bool) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException;
-
-       /**
-        * Some "getter for a value from given column name. This name will be
-        * translated into a method name and then this method is called.
-        *
-        * @param columnName Column name
-        * @return Value from field
-        * @throws IllegalArgumentException Some implementations may throw this
-        * @throws java.lang.NoSuchMethodException If the invoked method was not found
-        * @throws java.lang.IllegalAccessException If the method cannot be accessed
-        * @throws java.lang.reflect.InvocationTargetException Any other problems?
-        */
-       public Object getValueFromColumn (final String columnName) throws IllegalArgumentException, NoSuchMethodException, IllegalAccessException, InvocationTargetException;
 }