/src/name/carter/mark/flex/util/icon/IconDescriptor.as
http://transcriptstudio4isha.googlecode.com/ · ActionScript · 18 lines · 16 code · 2 blank · 0 comment · 0 complexity · 16d4025f1e484fc2661e139b112c0b90 MD5 · raw file
- package name.carter.mark.flex.util.icon
- {
- internal class IconDescriptor
- {
- internal var path:String;
- internal var width:int;
- internal var height:int;
- internal var defaultIconClass:Class;
-
- public function IconDescriptor(path:String, width:int = -1, height:int = -1, defaultIconClass:Class = null) {
- this.path = path;
- this.width = width;
- this.height = height;
- this.defaultIconClass = defaultIconClass;
- }
-
- }
- }