1 48 49 package org.jfree.chart.entity; 50 51 import java.util.Collection ; 52 import java.util.Iterator ; 53 54 58 public interface EntityCollection { 59 60 63 public void clear(); 64 65 70 public void add(ChartEntity entity); 71 72 77 public void addAll(EntityCollection collection); 78 79 87 public ChartEntity getEntity(double x, double y); 88 89 96 public ChartEntity getEntity(int index); 97 98 103 public int getEntityCount(); 104 105 110 public Collection getEntities(); 111 112 117 public Iterator iterator(); 118 119 } 120 | Popular Tags |