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

📄 displaypluginmodelimpl.as

📁 jquery插件
💻 AS
字号:
/*     *    Copyright (c) 2008, 2009 Flowplayer Oy * *    This file is part of Flowplayer. * *    Flowplayer is free software: you can redistribute it and/or modify *    it under the terms of the GNU General Public License as published by *    the Free Software Foundation, either version 3 of the License, or *    (at your option) any later version. * *    Flowplayer is distributed in the hope that it will be useful, *    but WITHOUT ANY WARRANTY; without even the implied warranty of *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *    GNU General Public License for more details. * *    You should have received a copy of the GNU General Public License *    along with Flowplayer.  If not, see <http://www.gnu.org/licenses/>. */package org.flowplayer.model {	import flash.display.DisplayObject;	
	
	import org.flowplayer.model.Cloneable;			/**	 * @author api	 */	public class DisplayPluginModelImpl extends DisplayPropertiesImpl implements DisplayPluginModel {		private var _config:Object;		private var _methods:Array = new Array();				public function DisplayPluginModelImpl(disp:DisplayObject, name:String, setDefaults:Boolean = true):void {			super(disp, name, setDefaults);		}		public function addMethod(method:PluginMethod):void {			_methods.push(method);		}				public function getMethod(externalName:String):PluginMethod {			return PluginMethodHelper.getMethod(_methods, externalName);		}				public function invokeMethod(externalName:String, args:Array = null):Object {			return PluginMethodHelper.invokePlugin(this, getDisplayObject(), externalName, args);		}				public function get config():Object {			return _config;		}				public function set config(config:Object):void {			_config = config;		}				public function set visible(visible:Boolean):void {			super.display = visible ? "block" : "none";		}				public override function clone():Cloneable {			var copy:DisplayPluginModelImpl = new DisplayPluginModelImpl(getDisplayObject(), name);			super.copyFields(this, copy);			copy._config = _config;			copy._methods = _methods;			return copy;		}				public function get methods():Array {			return _methods;		}				[Value(name="methods")]		public function get methodNames():Array {			return PluginMethodHelper.methodNames(_methods);		}	}}

⌨️ 快捷键说明

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