1 36 37 package org.jfree.chart; 38 39 import java.awt.Graphics2D ; 40 import java.awt.geom.Rectangle2D ; 41 42 51 public abstract class LegendTitle extends AbstractTitle { 52 53 54 private LegendItemCollection items; 55 56 60 62 65 public LegendTitle() { 66 this(new StandardLegendItemLayout(0, 0.0)); 67 } 68 69 74 public LegendTitle(LegendItemLayout layout) { 75 } 77 78 83 public void addLegendItem(LegendItem item) { 84 items.add(item); 85 } 86 87 94 public void draw(Graphics2D g2, Rectangle2D area) { 95 96 99 102 } 106 107 } 108 | Popular Tags |