Hi All,
Which is the simplest method to move all variable values from parent
class to child class
*Example:*
*Parent*
public class *BaseVO *{
public var display_name:String;
public var id:String;
..........
..........
.........
.........
public function BaseVO():void{
}
}
*Child*
public class *GroupVO* extends *BaseVO*{
public function GroupVO():void{
}
}
*App*
var baseVO:BaseVO = new BaseVO();
baseVO.displayname = "DisplayName";
baseVO.id = "BaseID";
................
var groupVO:GroupVO = Which is simplest method to move all variable values
from BaseVO to GroupVO
Cheers,
-SK
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders