001    package railo.runtime.chart;
002    
003    import org.jfree.chart.imagemap.URLTagFragmentGenerator;
004    
005    public class EmptyURLTagFragmentGenerator implements URLTagFragmentGenerator {
006    
007            /**
008         * Generates a URL string to go in an HTML image map.
009         * @param urlText  the URL text (fully escaped).
010         * @return The formatted text
011         */
012        public String generateURLFragment(String urlText) {
013            return "";
014                    //return " href=\"" + urlText + "\"";
015            }
016    
017    }