FormatChangeEvent
Controller
Format
Constructs a FormatChangeEvent.paramsource The Controller that generated this event. super(source);
super(source);
Constructs a FormatChangeEvent, indicating the old Format and the new Format.paramsource The Controller that generated this event.paramoldFormat The Controller object's old Format.paramnewFormat The Controller object's new Format. super(source); this.oldFormat = oldFormat; this.newFormat = newFormat;
super(source); this.oldFormat = oldFormat; this.newFormat = newFormat;
Gets the object's new Format.returnA Format that describes the Controller object's new format. return newFormat;
return newFormat;
Gets the object's old Format.returnA Format that describes the Controller object's original format. return oldFormat;
return oldFormat;