1 42 43 package org.jfree.chart.block; 44 45 import org.jfree.chart.entity.EntityCollection; 46 47 51 public class BlockResult implements EntityBlockResult { 52 53 54 private EntityCollection entities; 55 56 59 public BlockResult() { 60 this.entities = null; 61 } 62 63 68 public EntityCollection getEntityCollection() { 69 return this.entities; 70 } 71 72 77 public void setEntityCollection(EntityCollection entities) { 78 this.entities = entities; 79 } 80 81 } 82 | Popular Tags |