Package flashgateway.io

Examples of flashgateway.io.ASObject


            map.put(key,toAMFObject(value));
        }
        return map;
    }
    private Object toAMFObject(Component c) throws PageException {
      ASObject aso = new ASObject();
      if(c instanceof ComponentAccess) {
        Property[] prop = c.getProperties(false);
          if(prop!=null)for(int i=0;i<prop.length;i++) {
            aso.put(prop[i].getName().toUpperCase(), toAMFObject(c.get(prop[i].getName(),null)));
          }
      }
      return aso;
    }
View Full Code Here

TOP

Related Classes of flashgateway.io.ASObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.