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

📄 ioperator.as

📁 用于flash/flex的 as3的 2D图形图像图表的动态生成
💻 AS
字号:
package flare.vis.operator
{
	import flare.animate.Transitioner;
	import flare.vis.Visualization;
	
	import mx.core.IMXMLObject;
	
	/**
	 * Interface for operators that perform processing tasks on the contents
	 * of a Visualization. These tasks include layout, and color, shape, and
	 * size encoding. Custom operators can be defined by implementing this
	 * interface;
	 */
	public interface IOperator extends IMXMLObject
	{
		/** The visualization processed by this operator. */
		function get visualization():Visualization;
		function set visualization(v:Visualization):void;
		
		/** Indicates if the operator is enabled or disabled. */
		function get enabled():Boolean;
		function set enabled(b:Boolean):void;
		
		/**
		 * Sets parameter values for this operator.
		 * @params an object containing parameter names and values.
		 */
		function set parameters(params:Object):void;
		
		/**
		 * Performs an operation over the contents of a visualization.
		 * @param t a Transitioner instance for collecting value updates.
		 */
		function operate(t:Transitioner=null):void;
		
		/**
		 * Setup method invoked whenever this operator's visualization
		 * property is set.
		 */
		function setup():void;
		
	} // end of interface IOperator
}

⌨️ 快捷键说明

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