blob: 38cc76fb9c3a80170fa5d24633d0ed3035b7ca6d [file] [log] [blame]
package org.apache.flex.runtimelocale.event {
import flash.events.Event;
public class SaveConfigurationEvent extends Event {
public static const SAVE_CONFIGURATION_REQUEST:String = "saveConfigurationRequest";
public function SaveConfigurationEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false) {
super(type, bubbles, cancelable);
}
}
}