1 32 33 package it.businesslogic.ireport.gui.event; 34 import it.businesslogic.ireport.*; 35 import it.businesslogic.ireport.CrosstabReportElement; 36 import it.businesslogic.ireport.gui.*; 37 import java.util.*; 38 43 public class ReportDocumentStatusChangedEvent { 44 45 private Report report; 46 47 48 public ReportDocumentStatusChangedEvent(Report report) { 49 this.report = report; 50 } 51 52 56 public it.businesslogic.ireport.Report getJReport() { 57 return report; 58 } 59 } 60 | Popular Tags |