001    package net.sf.tacos.binding;
002    
003    /**
004     * Iterface that represents a javascript function to connect client side event to 
005     * 
006     * @author Igor Drobiazko
007     * @since 4.1
008     *
009     */
010    public interface ICallbackFunction {
011            
012        /**
013         * Returns the function name to be connected.
014         */
015        String getFunctionName();
016    }