1 42 43 package org.jfree.chart.entity; 44 45 import java.awt.Shape ; 46 import java.io.Serializable ; 47 48 51 public class TickLabelEntity extends ChartEntity implements Cloneable , 52 Serializable { 53 54 55 private static final long serialVersionUID = 681583956588092095L; 56 57 65 public TickLabelEntity(Shape area, String toolTipText, String urlText) { 66 super(area, toolTipText, urlText); 67 } 68 69 } 70 | Popular Tags |