Package com.google.code.magja.model.region

Examples of com.google.code.magja.model.region.Region


    if(remote_list == null) return regions;

    for (Map<String, Object> map : remote_list) {

      Region region = new Region();

      for (Map.Entry<String, Object> attr : map.entrySet())
        region.set(attr.getKey(), attr.getValue());

      regions.add(region);
    }

    return regions;
View Full Code Here

TOP

Related Classes of com.google.code.magja.model.region.Region

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.