From luke at back.net.au Thu Mar 8 05:25:19 2007 From: luke at back.net.au (Luke Schreur) Date: Thu Mar 8 05:26:10 2007 Subject: [as2api-dev] Comments for getter/setter pairs Message-ID: Hi, I was trying to add some documentation to my class this afternoon but I got confused when I needed to comment a getter/setter pair. The as2api documentation doesn't seem to give an example of this (at least not that I can find) and the comments I put in don't not show up in the final generated documentation. This is the structure I currently use: Class MyClass { private var m_property : Type; /** * comments here. */ public function set property(property : Type) : Void { m_property = property; } public function get property() : Type { return( m_property ); } } Basically, what is the correct way to add the documentation for 'property' in this situation? Thanks, Luke