Packagesystem.models
Interfacepublic interface Model extends Lockable, Validator
Implementors KernelModel

The Model interface defines all models in the application.



Public Methods
 MethodDefined By
 Inherited
isLocked():Boolean
Returns true if the object is locked.
Lockable
 Inherited
lock():void
Locks the object.
Lockable
 Inherited
supports(value:*):Boolean
Returns true if the specific value is valid.
Validator
 Inherited
unlock():void
Unlocks the object.
Lockable
 Inherited
validate(value:*):void
Evaluates the specified value and throw a TypeError object if the value is not valid.
Validator