001    /**
002     * Implements the Cold Fusion Function lseurocurrencyformat
003     */
004    package railo.runtime.functions.international;
005    
006    import railo.runtime.PageContext;
007    import railo.runtime.exp.PageException;
008    import railo.runtime.ext.function.Function;
009    
010    public final class LSEuroCurrencyFormat implements Function { 
011    
012            private static final long serialVersionUID = -9214893090412056842L;
013            public static String call(PageContext pc , Object number) throws PageException {
014                    return LSCurrencyFormat.call(pc,number);
015            }
016            public static String call(PageContext pc , Object number, String type) throws PageException {
017                    return LSCurrencyFormat.call(pc,number,type);
018            }
019            public static String call(PageContext pc , Object number, String type,String locale) throws PageException {
020                    return LSCurrencyFormat.call(pc,number,type,locale);
021            }
022    }