*/
@Override
public Object getValueFromColumn (final String columnName) {
- throw new UnsupportedOperationException(MessageFormat.format("Not implemented. columnName={0}", columnName));
+ throw new UnsupportedOperationException(MessageFormat.format("Not implemented. columnName={0}", columnName)); //NOI18N
}
/**
@SuppressWarnings ("unchecked")
private Class<? extends FrameworkInterface> getClassFromTarget (final FrameworkInterface instance, final String targetClass) {
// Trace message
- this.getLogger().debug(MessageFormat.format("instance={0},targetClass={1}", instance, targetClass));
+ this.getLogger().debug(MessageFormat.format("instance={0},targetClass={1}", instance, targetClass)); //NOI18N
// Instance reflaction of this class
Class<? extends FrameworkInterface> c = instance.getClass();
// Analyze class
while (!targetClass.equals(c.getSimpleName())) {
// Debug message
- this.getLogger().debug("c=" + c.getSimpleName());
+ this.getLogger().debug(MessageFormat.format("c={0}", c.getSimpleName())); //NOI18N
// Get super class (causes unchecked warning)
c = (Class<? extends FrameworkInterface>) c.getSuperclass();
}
// Trace message
- this.getLogger().trace(MessageFormat.format("c={0} - EXIT!", c));
+ this.getLogger().trace(MessageFormat.format("c={0} - EXIT!", c)); //NOI18N
// Return it
return c;
*/
private Method getMethodFromName (final FrameworkInterface instance, final String targetClass, final String methodName) {
// Trace messahe
- this.getLogger().trace(MessageFormat.format("targetClass={0},methodName={1}", targetClass, methodName));
+ this.getLogger().trace(MessageFormat.format("targetClass={0},methodName={1}", targetClass, methodName)); //NOI18N
// Get target class instance
Class<? extends FrameworkInterface> c = this.getClassFromTarget(instance, targetClass);
}
// Assert on field
- assert (method instanceof Method) : "method is not a Method instance";
+ assert (method instanceof Method) : "method is not a Method instance"; //NOI18N
// Trace message
- this.getLogger().trace(MessageFormat.format("method={0} - EXIT!", method));
+ this.getLogger().trace(MessageFormat.format("method={0} - EXIT!", method)); //NOI18N
// Return it
return method;
@Override
public boolean isValueEqual (final String columnName, final boolean bool) {
// Not implemented
- throw new UnsupportedOperationException(MessageFormat.format("Not implemented. columnName={0},bool={1}", columnName, bool));
+ throw new UnsupportedOperationException(MessageFormat.format("Not implemented. columnName={0},bool={1}", columnName, bool)); //NOI18N
}
/**
*/
protected String convertColumnNameToAttribute (final String columnName) {
// Trace message
- this.getLogger().trace(MessageFormat.format("columnName={0} - CALLED!", columnName));
+ this.getLogger().trace(MessageFormat.format("columnName={0} - CALLED!", columnName)); //NOI18N
// First all lower case
String lower = columnName.toLowerCase();
// Then split on "_"
- StringTokenizer tokenizer = new StringTokenizer(lower, "_");
+ StringTokenizer tokenizer = new StringTokenizer(lower, "_"); //NOI18N
// Resulting string
StringBuilder builder = new StringBuilder(tokenizer.countTokens());
}
// Trace message
- this.getLogger().trace(MessageFormat.format("builder={0} - EXIT!", builder));
+ this.getLogger().trace(MessageFormat.format("builder={0} - EXIT!", builder)); //NOI18N
// Return result
return builder.toString();
*/
protected String convertColumnNameToGetterMethod (final String columnName, boolean isBool) {
// Trace message
- this.getLogger().trace(MessageFormat.format("columnName={0} - CALLED!", columnName));
+ this.getLogger().trace(MessageFormat.format("columnName={0} - CALLED!", columnName)); //NOI18N
// Then split on "_"
- StringTokenizer tokenizer = new StringTokenizer(columnName, "_");
+ StringTokenizer tokenizer = new StringTokenizer(columnName, "_"); //NOI18N
// Resulting string
StringBuilder builder = new StringBuilder(tokenizer.countTokens());
// Is it boolean?
if (isBool) {
// Append "is"
- builder.append("is");
+ builder.append("is"); //NOI18N
} else {
// Append "get"
- builder.append("get");
+ builder.append("get"); //NOI18N
}
// Walk through all
String token = tokenizer.nextToken();
// Debug message
- this.getLogger().debug(MessageFormat.format("token={0}", token));
+ this.getLogger().debug(MessageFormat.format("token={0}", token)); //NOI18N
// Make it upper-case
char c = token.charAt(0);
}
// Trace message
- this.getLogger().trace(MessageFormat.format("builder={0} - EXIT!", builder));
+ this.getLogger().trace(MessageFormat.format("builder={0} - EXIT!", builder)); //NOI18N
// Return result
return builder.toString();
*/
protected boolean getBooleanField (final FrameworkInterface instance, final String targetClass, final String methodName) {
// Trace messahe
- this.getLogger().trace(MessageFormat.format("targetClass={0},methodName={1}", targetClass, methodName));
+ this.getLogger().trace(MessageFormat.format("targetClass={0},methodName={1}", targetClass, methodName)); //NOI18N
// Get method instance
Method method = this.getMethodFromName(instance, targetClass, methodName);
*/
protected Object getField (final FrameworkInterface instance, final String targetClass, final String methodName) {
// Trace messahe
- this.getLogger().trace(MessageFormat.format("targetClass={0},methodName={1}", targetClass, methodName));
+ this.getLogger().trace(MessageFormat.format("targetClass={0},methodName={1}", targetClass, methodName)); //NOI18N
// Get method to call
Method method = this.getMethodFromName(instance, targetClass, methodName);
*/
protected String[] getArrayFromString (final String str, final String delimiter, final int size) {
// Trace message
- this.getLogger().trace(MessageFormat.format("str={0},delimiter={1},size={2} - CALLED!", str, delimiter, size));
+ this.getLogger().trace(MessageFormat.format("str={0},delimiter={1},size={2} - CALLED!", str, delimiter, size)); //NOI18N
// Get tokenizer
StringTokenizer tokenizer = new StringTokenizer(str, delimiter);
tokens[index] = tokenizer.nextToken();
// Debug message
- this.getLogger().debug(MessageFormat.format("Token at index{0}: {1}", index, tokens[1]));
+ this.getLogger().debug(MessageFormat.format("Token at index{0}: {1}", index, tokens[1])); //NOI18N
// Increment index
index++;
}
// Trace message
- this.getLogger().trace(MessageFormat.format("tokens({0})={1} - EXIT!", tokens.length, Arrays.toString(tokens)));
+ this.getLogger().trace(MessageFormat.format("tokens({0})={1} - EXIT!", tokens.length, Arrays.toString(tokens))); //NOI18N
// Return it
return tokens;
*/
protected boolean isBooleanField (final FrameworkInterface instance, final String targetClass, final String columnName) {
// Trace message
- this.getLogger().trace(MessageFormat.format("instance={0},targetCLass={1},columnName={2} - CALLED!", instance, targetClass, columnName));
+ this.getLogger().trace(MessageFormat.format("instance={0},targetCLass={1},columnName={2} - CALLED!", instance, targetClass, columnName)); //NOI18N
// Convert column name to getter name (boolean)
String methodName = this.convertColumnNameToGetterMethod(columnName, true);
Method method = c.getDeclaredMethod(methodName, new Class<?>[0]);
} catch (final NoSuchMethodException ex) {
// Debug message
- this.getLogger().debug(MessageFormat.format("Method {0} does not exist, field {1} cannot be boolean: {2}", methodName, columnName, ex));
+ this.getLogger().debug(MessageFormat.format("Method {0} does not exist, field {1} cannot be boolean: {2}", methodName, columnName, ex)); //NOI18N
// Not found
isBool = false;
}
// Trace message
- this.getLogger().trace(MessageFormat.format("isBool={0} - EXIT!", isBool));
+ this.getLogger().trace(MessageFormat.format("isBool={0} - EXIT!", isBool)); //NOI18N
// Return result
return isBool;