Packageqnx.fuse.ui.core
Interfacepublic interface IInvalidating
Implementors UIComponent



Public Methods
 MethodDefined By
  
Calling this method results in a call to the components validateDisplayList() method before the display list is rendered.
IInvalidating
  
Calling this method results in a call to the components validateProperties() method before the display list is rendered.
IInvalidating
  
Validates the display list of the component by calling the updateDisplayList().
IInvalidating
  
Validates the component immediately by calling validateProperties(), validateSizes(), and validateDisplayList() if necessary.
IInvalidating
  
Validates the properties of the component by calling the commitProperties() method.
IInvalidating
Method Detail
invalidateDisplayList()method
public function invalidateDisplayList():void

Calling this method results in a call to the components validateDisplayList() method before the display list is rendered. For UIComponent classes this will result in the updateDisplayList() to be called.

invalidateProperties()method 
public function invalidateProperties():void

Calling this method results in a call to the components validateProperties() method before the display list is rendered. For UIComponent classes this will result in the commitProperties() to be called.

validateDisplayList()method 
public function validateDisplayList():void

validateNow()method 
public function validateNow():void

Validates the component immediately by calling validateProperties(), validateSizes(), and validateDisplayList() if necessary.

validateProperties()method 
public function validateProperties():void

Validates the properties of the component by calling the commitProperties() method. You should not call this method directly as it is called by the framework for you. You should also not subclass this method. Instead you should subclass the commitProperties() method.