001    package railo.runtime.tag;
002    
003    import java.text.AttributedString;
004    
005    import org.jfree.chart.labels.PieSectionLabelGenerator;
006    import org.jfree.data.general.PieDataset;
007    
008    public class LLG implements PieSectionLabelGenerator {
009    
010            public AttributedString generateAttributedSectionLabel(PieDataset arg0,
011                            Comparable arg1) {
012                    //print.out("11111111");
013                    // TODO Auto-generated method stub
014                    return null;
015            }
016    
017            public String generateSectionLabel(PieDataset arg0, Comparable arg1) {
018                    //print.out("222222222");
019                    return "33333";
020            }
021    
022    }