Like java, I want to create a method that accepts an array list of particular object type.
In java:
public void addStudents(List<Student> students) {
...
}
In actionscript
public function addStudents(students:ArrayCollection):void {
.....
}
Here I want to have public function addStudents(students:ArrayCollection).
Thanks