//////////////////////////////////////////////////////////////////////////////// // // ADOBE SYSTEMS INCORPORATED // Copyright 2005-2007 Adobe Systems Incorporated // All Rights Reserved. // // NOTICE: Adobe permits you to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. // //////////////////////////////////////////////////////////////////////////////// package mx.styles { /** * This interface describes the properties and methods that an object * must implement so that it can participate in the style subsystem. * This interface is intended to be used by classes that obtain their * style values from other objects rather than through locally set values * and type selectors. * This interface is implemented by ProgrammaticSkin. * * @see mx.styles.IStyleClient * @see mx.styles.CSSStyleDeclaration * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ public interface ISimpleStyleClient { //-------------------------------------------------------------------------- // // Properties // //-------------------------------------------------------------------------- //---------------------------------- // styleName //---------------------------------- /** * The source of this object's style values. * The value of the styleName property can be one of three possible types: * * * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ function get styleName():Object /** * @private */ function set styleName(value:Object):void //-------------------------------------------------------------------------- // // Methods // //-------------------------------------------------------------------------- /** * Called when the value of a style property is changed. * * @param styleProp The name of the style property that changed. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ function styleChanged(styleProp:String):void; } }