lForm = NumberFormat.getInstance(defaultlocale);
} else if ((this.template.toString().indexOf('!') != -1)
|| (this.template.toString().compareTo("CURRENCY") == 0)) { //$NON-NLS-1$
lForm = NumberFormat.getCurrencyInstance(defaultlocale);
} else if ((this.template.toString().compareTo("EURO_CURRENCY") == 0)) { //$NON-NLS-1$
Currency euro = Currency.getInstance("EUR"); //$NON-NLS-1$
lForm = NumberFormat.getCurrencyInstance();
lForm.setCurrency(euro);
} else if (this.template.toString().compareTo("INTEGER") == 0) { //$NON-NLS-1$
lForm = NumberFormat.getIntegerInstance(defaultlocale);
// AD:14/10/2008: KIN-9 Process any decimal points like Forte