use of com.codename1.rad.events.FillSlotEvent in project CodeRAD by shannah.
the class Slot method fill.
/**
* Fires a {@link FillSlotEvent} to give the controller hierarchy an opportunity
* to fill this slot. The Controller can implement {@link Controller#fillSlot} to
* receive and respond to such notifications.
*/
void fill() {
FillSlotEvent fse = new FillSlotEvent(this);
ActionSupport.dispatchEvent(fse);
}
Aggregations