album.as

来自「Yahoo!search API. 用于搜索引擎接口」· AS 代码 · 共 63 行

AS
63
字号
/*Copyright (c) 2007, Yahoo! Inc. All rights reserved.Code licensed under the BSD License:http://developer.yahoo.com/flash/license.html*/package com.yahoo.webapis.search{	/**	 * Album is a Value Object for the Search API.	 * @langversion ActionScript 3.0	 * @playerversion Flash 9	 * @author Alaric Cole 02/22/07	 */	public class Album	{				private var _name:String;		private var _id:String;				/**		 * Construct a new Album instance.		 */		public function Album()		{			// Do Nothing.		}				/**		 * The name of the Album.		 */		public function get name():String		{			return _name;		}				public function set name( value:String ):void		{			_name = value;		} 				/**		 * The id of the Album.		 */		public function get id():String		{			return _id;		}				public function set id( value:String ):void		{			_id = value;		}						/**		 * The label of the Album.		 */		public function toString():String		{			return _name;		}	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?