/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

  1. package name.carter.mark.flex.util.icon
  2. {
  3. internal class IconDescriptor
  4. {
  5. internal var path:String;
  6. internal var width:int;
  7. internal var height:int;
  8. internal var defaultIconClass:Class;
  9. public function IconDescriptor(path:String, width:int = -1, height:int = -1, defaultIconClass:Class = null) {
  10. this.path = path;
  11. this.width = width;
  12. this.height = height;
  13. this.defaultIconClass = defaultIconClass;
  14. }
  15. }
  16. }