📄 album.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{ /** * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -