home *** CD-ROM | disk | FTP | other *** search
- package data.parser
- {
- import com.je.data.parser.IParser;
- import com.je.model.vo.IData;
- import com.je.model.vo.LessonInformation;
-
- public class LessonInfoParser implements IParser
- {
- public function LessonInfoParser()
- {
- super();
- }
-
- public function parse(param1:XMLList) : IData
- {
- var _loc2_:IData = new LessonInformation();
- LessonInformation(_loc2_).description = param1.infoText;
- LessonInformation(_loc2_).previewImagePath = param1.infoPic;
- return _loc2_;
- }
- }
- }
-
-