[as2api-dev] Problem documenting getter/setter with Inspectable meta tag

Xavi Beumala xavi at code4net.com
Thu Sep 1 14:35:24 UTC 2005


Hi all,
I'm having problems when documenting a getter/setter property wich has  
a [Inspectable] meta tag associated:

<code>
/**
* Getter/Setter
*/
public function get myVar():String {
  return _myVar;
}

public function set myVar(mr:String) {
 _myVar = m;
}
</code>

The code above generates correctly the documentation for the class, but 
if the code changes to:

<code>
[Inspectable]
/**
* Getter/Setter
*/
public function get myVar():String {
  return _myVar;
}

public function set myVar(mr:String) {
 _myVar = m;
}
</code>

Then as2api doesn't add the comments to the documentation.

I'm missing something?

Thanks in advance
Xavi Beumala



More information about the as2api-dev mailing list