home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Darbas / kidoz_v1.air / kidoz.swf / scripts / mx / rpc / xml / IXMLDecoder.as < prev    next >
Encoding:
Text File  |  2009-05-06  |  607 b   |  23 lines

  1. package mx.rpc.xml
  2. {
  3.    public interface IXMLDecoder
  4.    {
  5.       function decode(param1:*, param2:QName = null, param3:QName = null, param4:XML = null) : *;
  6.       
  7.       function set recordXSIType(param1:Boolean) : void;
  8.       
  9.       function get recordXSIType() : Boolean;
  10.       
  11.       function get typeRegistry() : SchemaTypeRegistry;
  12.       
  13.       function set makeObjectsBindable(param1:Boolean) : void;
  14.       
  15.       function get makeObjectsBindable() : Boolean;
  16.       
  17.       function set typeRegistry(param1:SchemaTypeRegistry) : void;
  18.       
  19.       function reset() : void;
  20.    }
  21. }
  22.  
  23.