📄 hotareainfo.as
字号:
/**
* Description 版权所有2006@qz http://www.quick35.com
* @author crlnet
* @version 0.1
* @discription:热感应信息类,用于存储热感应所需的信息;
*/
package crlclr.data{
public class HotAreaInfo {
private var shape:String;
private var coords:Array;
private var href:String;
private var alt:String;
/**
*
* @param shape
* @param coords
* @param href
* @param alt
*/
public function HotAreaInfo(shape:String,coords:Array,href:String,alt:String) {
this.Shape=shape;
this.Coords=coords;
this.Href=href;
this.Alt=alt;
}
public function get Shape():String{
return this.shape;
}
public function set Shape(shape:String):void{
this.shape=shape;
}
public function get Coords():Array{
return this.coords;
}
public function set Coords(arr:Array):void{
this.coords=arr;
}
public function get Href():String{
return this.href;
}
public function set Href(href:String):void{
this.href=href;
}
public function set Alt(alt:String):void{
this.alt=alt;
}
public function get Alt():String{
return this.alt;
}
public function toString():String{
return "crlnet热区信息类."
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -