blob: d5412bce8878ac83340873acf2cd9ccaae7489f9 [file] [log] [blame]
/**
*
*/
package net.sf.taverna.t2.workbench.report;
import uk.org.taverna.scufl2.api.profiles.Profile;
/**
* @author alanrw
*/
public class ProfileReportEvent implements ReportManagerEvent {
private final Profile profile;
public ProfileReportEvent(Profile d) {
this.profile = d;
}
public Profile getProfile() {
return profile;
}
}