/src/com/google/maps/extras/xmlparsers/kml/ItemIcon.as
http://gmaps-utility-library-flash.googlecode.com/ · ActionScript · 23 lines · 16 code · 4 blank · 3 comment · 0 complexity · c18c5c855c07dc8a27e1bf47431b8567 MD5 · raw file
- /* Added by Cecil M. Reid (cmR)
- * cecilmreid@gmail.com
- */
-
- package com.google.maps.extras.xmlparsers.kml
- {
- import com.google.maps.extras.xmlparsers.ParsingTools;
-
- public class ItemIcon extends Icon
- {
- private var _state:String;
-
- public function ItemIcon(x:XMLList)
- {
- super(x);
- this._state = ParsingTools.nullCheck(this.x.kml::state);
- }
-
- public function get state():String{
- return this._state;
- }
- }
- }