例如类中有私有属性
private var type:Stirng
在ASDT中按Ctrl+Shift+g
可以自动生成
/**
*@return type
*/
public function getType():String {
return type;
}
/**
*@param type
*/
public function setType(type:String):Void {
this.type = type;
}
private var type:Stirng
在ASDT中按Ctrl+Shift+g
可以自动生成
/**
*@return type
*/
public function getType():String {
return type;
}
/**
*@param type
*/
public function setType(type:String):Void {
this.type = type;
}
回复Comments
作者:
{commentrecontent}