blob: e14d13ae4da00a98aa8fb89d3343f3fb152a253a [file] [log] [blame]
package org.apache.flex.utilities.developerToolSuite.infrastructure.event {
import flash.events.Event;
public class SettingsWindowEvent extends Event {
public static const OPENED:String = "opened";
public static const CLOSED:String = "closed";
public function SettingsWindowEvent(type:String) {
super(type);
}
}
}