1 30 31 34 package net.sf.jasperreports.engine; 35 36 import net.sf.jasperreports.engine.fill.JRVirtualizationContext; 37 38 42 public interface JRVirtualizable { 43 46 String getUID(); 47 48 51 void setVirtualData(Object o); 52 53 56 Object getVirtualData(); 57 58 62 void removeVirtualData(); 63 64 67 void setIdentityData(Object id); 68 69 72 Object getIdentityData(); 73 74 75 78 void beforeExternalization(); 79 80 81 85 void afterExternalization(); 86 87 88 91 void afterInternalization(); 92 93 98 JRVirtualizationContext getContext(); 101 } 102 | Popular Tags |