home *** CD-ROM | disk | FTP | other *** search
- package data.parser
- {
- import de.galileopress.vt.navigation.NavigationBoxItemVO;
-
- public class BoxNavigationParser
- {
- public function BoxNavigationParser()
- {
- super();
- }
-
- public function parse(param1:XMLList) : Vector.<NavigationBoxItemVO>
- {
- var _loc3_:XML = null;
- var _loc4_:NavigationBoxItemVO = null;
- var _loc2_:Vector.<NavigationBoxItemVO> = new Vector.<NavigationBoxItemVO>();
- for each(_loc3_ in param1)
- {
- _loc4_ = new NavigationBoxItemVO();
- _loc4_.label = _loc3_.label;
- _loc4_.subLabel = _loc3_.subLabel;
- _loc4_.description = _loc3_.description;
- _loc2_.push(_loc4_);
- }
- return _loc2_;
- }
- }
- }
-
-