Package org.fao.geonet.services.region

Examples of org.fao.geonet.services.region.List


  //--------------------------------------------------------------------------

  public Element exec(Element params, ServiceContext context) throws Exception
  {
      if(regions == null){
          regions = new List().exec(params, context);
          @SuppressWarnings("unchecked")
            java.util.List<Element> children = regions.getChildren(Region.REGION_EL);
          for (Element element : children) {
                element.setName("record");
                element.addContent(new Element("id").setText(element.getAttributeValue("id")));
View Full Code Here

TOP

Related Classes of org.fao.geonet.services.region.List

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.