public class PickFestivalArtist extends ERDCustomComponent {
public FestivalArtist theFestivalArtist;
public FestivalArtist aFestivalArtist;
public PickFestivalArtist(WOContext context) {
super(context);
}
public boolean isStateless() { return false; }
public Performance thePerformance() { return (Performance)valueForBinding("object"); }
public void setTheFestivalArtist(FestivalArtist newValue) throws Exception {
thePerformance().takeStoredValueForKey(newValue, "festivalArtist");
}
public FestivalArtist theFestivalArtist(){
return (FestivalArtist)thePerformance().festivalArtist();
}
}