⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 searchresult.as

📁 yahoo api,包括各版本的
💻 AS
字号:
/*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{	/**	 * SearchResult is a Value Object for the Search API.	 * @langversion ActionScript 3.0	 * @playerversion Flash 9	 * @author Alaric Cole 02/22/07	 */	public class SearchResult	{		private var _id:String;		private var _name:String;		private var _index:uint;				/**		 * Construct a new SearchResult instance.		 */		public function SearchResult()		{			// Do Nothing.		}				/**		 * The ID.		 */		public function get id():String		{			return _id;		}				public function set id( value:String ):void		{			_id = value;		}				/**		 * The name of the SearchResult.		 */		public function get name():String		{			return _name;		}				public function set name( value:String ):void		{			_name = value;		} 				/**		 * The index of the SearchResult.		 */		public function get index():uint		{			return _index;		}				public function set index( value:uint ):void		{			_index = value;		}						/**		 * The label of the SearchResult.		 */		public function toString():String		{			return _name;		}	}}

⌨️ 快捷键说明

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