Good morning Class (programming joke) I'm trying to write asdoc comments for properties on a class that i'm extending but don't know how.
Example,
public class SetProperty extends mx.states.SetProperty {
public function SetProperty(target:Object = null, name:String =
null, value:Object = null) {
super(target, name, value);
}
}
So you see my SetProperty class is extending mx.states.SetProperty. I am
repurposing it and have to update the asdocs comments "target", "value",
etc.

