[flexcoders] Flex SDK - /* @copy mx.core.UIComponent ??

2007-01-17 Thread Rick Schmitty
Just wondering what the terminology means when you see the following

UITextField.as


//--
//  percentWidth
//--

/**
 *  @copy mx.core.UIComponent#percentWidth
 */
public function get percentWidth():Number
{
return NaN;
}

/**
 *  @private
 */
 public function set percentWidth(value:Number):void
 {
 }




Does that copy the functionality from UIComponent or is that something
that is to be done still?


RE: [flexcoders] Flex SDK - /* @copy mx.core.UIComponent ??

2007-01-17 Thread Beverly Guillermo
Nope, it means to copy the ASDoc comment from the referenced location... per
the ASDoc description of the @copy tag. :)
 
http://labs.adobe.com/wiki/index.php/ASDoc:Creating_ASDoc_Comments#ASDoc_Tag
s
 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Rick Schmitty
Sent: Wednesday, January 17, 2007 12:48 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex SDK - /* @copy mx.core.UIComponent ??



Just wondering what the terminology means when you see the following

UITextField.as

//--
// percentWidth
//--

/**
* @copy mx.core.UIComponent#percentWidth
*/
public function get percentWidth():Number
{
return NaN;
}

/**
* @private
*/
public function set percentWidth(value:Number):void
{
}

Does that copy the functionality from UIComponent or is that something
that is to be done still?