Interface IModifier

Hierarchy

Index

Properties

Methods

Properties

optional public alias?: Array<string>

[Config Option] (String[])

optional public alternateClassName?: any

[Config Option] (String/String[])

optional public config?: any

[Config Option] (Object)

optional public extend?: string

[Config Option] (String)

optional public inheritableStatics?: any

[Config Option] (Object)

optional public mixins?: any

[Config Option] (Object)

optional public next?: IModifier

[Config Option] (Ext.draw.modifier.Modifier)

optional public platformConfig?: any

[Config Option] (Object)

optional public previous?: IModifier

[Config Option] (Ext.draw.modifier.Modifier)

optional public self?: IClass

[Property] (Ext.Class)

optional public singleton?: boolean

[Config Option] (Boolean)

optional public sprite?: ISprite

[Config Option] (Ext.draw.sprite.Sprite)

optional public statics?: any

[Config Option] (Object)

optional public uses?: Array<string>

[Config Option] (String[])

Methods

optional public callOverridden(args?: any): any

[Method] Call the original method that was previously overridden with override This method is deprecated as callParent does

Parameters

  • args?: any optional

    Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callOverridden(arguments)

Returns

any

Object Returns the result of calling the overridden method

optional public callParent(args?: any): any

[Method] Call the parent method of the current method

Parameters

  • args?: any optional

    Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callParent(arguments)

Returns

any

Object Returns the result of calling the parent method

optional public callSuper(args?: any): any

[Method] This method is used by an override to call the superclass method but bypass any overridden method

Parameters

  • args?: any optional

    Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callSuper(arguments)

Returns

any

Object Returns the result of calling the superclass method

optional public destroy()

[Method]

optional public getInitialConfig(name?: string): any

[Method] Returns the initial configuration passed to constructor

Parameters

  • name?: string optional

    String When supplied, value for particular configuration option is returned, otherwise the full config object is returned.

Returns

any

Object/Mixed

optional public getNext(): IModifier

[Method] Returns the value of next

Returns

IModifier

Ext.draw.modifier.Modifier

optional public getPrevious(): IModifier

[Method] Returns the value of previous

Returns

IModifier

Ext.draw.modifier.Modifier

optional public getSprite(): ISprite

[Method] Returns the value of sprite

Returns

ISprite

Ext.draw.sprite.Sprite

optional public initConfig(instanceConfig?: any): any

[Method] Initialize configuration for this class

Parameters

  • instanceConfig?: any optional

    Object

Returns

any

Object mixins The mixin prototypes as key - value pairs

optional public popUp(attributes?: any, changes?: any)

[Method] Invoked when changes need to be popped up to the top

Parameters

  • attributes?: any optional

    Object The source attributes.

  • changes?: any optional

    Object The changes to be popped up.

optional public prepareAttributes(attr?: any)

[Method] Validate attribute set before use

Parameters

  • attr?: any optional

    Object The attribute to be validated. Note that it may be already initialized, so do not override properties that has already be used.

optional public pushDown(attr?: any, changes?: any): any

[Method] Invoked when changes need to pushed down to the sprite

Parameters

  • attr?: any optional

    Object The source attributes.

  • changes?: any optional

    Object The changes to make. This object might be changed unexpectedly inside the method.

Returns

any

Mixed

optional public setNext(next?: IModifier)

[Method] Sets the value of next

Parameters

  • next?: IModifier optional

    Ext.draw.modifier.Modifier

optional public setPrevious(previous?: IModifier)

[Method] Sets the value of previous

Parameters

  • previous?: IModifier optional

    Ext.draw.modifier.Modifier

optional public setSprite(sprite?: ISprite)

[Method] Sets the value of sprite

Parameters

  • sprite?: ISprite optional

    Ext.draw.sprite.Sprite