Create dynamic class : Dynamic object « Class « Flash / Flex / ActionScript






Create dynamic class

 

dynamic class Employee {
  public var startDate:Date;
  private var age:int;
}

class Report {
  public function Report (employee:Employee) {
    employee.doReport = function (  ):void {
      trace(this.startDate);  // Access to public variable allowed
      trace(this.age);        // Access to private variable denied
    }
  }
}

        








Related examples in the same category

1.Dynamic References to Variables and Methods
2.Using Dynamic Instance Variables to Create Lookup Tables
3.Making Lookup Tables with Object Literals
4.Dynamic ActionScript: All dynamic instance variables are untyped and public
5.Processing Dynamic Instance Variables with for-each-in and for-in Loops
6.Call setPropertyIsEnumerable in dynamic object
7.Dynamically Adding New Behavior to an Instance