Hi Stephen, I don't want to copy the comment from the parent class, I want to over write it. BTW thank you the link. I didn't know about @copy and @inheritDoc.
Judah On Tue, Feb 17, 2009 at 5:01 PM, Stephen Gilson <[email protected]> wrote: > Hi, > > > > Do you mean you don't know how to format the comment, or you want to copy > the comment from the parent class to your class? > > > > The doc on ASDoc explains both of these. You can see it here: > http://livedocs.adobe.com/flex/3/html/asdoc_1.html > > > > Stephen > > > > *From:* [email protected] [mailto:[email protected]] *On > Behalf Of *dorkie dork from dorktown > *Sent:* Tuesday, February 17, 2009 5:09 PM > *To:* [email protected] > *Subject:* [flexcoders] [flexcomponents]Writing comments for properties on > parent classes > > > > 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. > > >

