All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.oma.protocols.mlp.svc_result.Polygon Maven / Gradle / Ivy


package org.oma.protocols.mlp.svc_result;

import java.util.ArrayList;
import java.util.List;

/** 
 * Schema fragment(s) for this class:
 * 
 * <xs:element xmlns:ns="MLP_SVC_RESULT_310.dtd" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="Polygon">
 *   <xs:complexType>
 *     <xs:sequence>
 *       <xs:element ref="ns:outerBoundaryIs"/>
 *       <xs:element ref="ns:innerBoundaryIs" minOccurs="0" maxOccurs="unbounded"/>
 *     </xs:sequence>
 *     <xs:attribute type="xs:string" name="gid"/>
 *     <xs:attribute type="xs:string" name="srsName"/>
 *   </xs:complexType>
 * </xs:element>
 * 
*/ public class Polygon { private OuterBoundaryIs outerBoundaryIs; private List innerBoundaryIList = new ArrayList(); private String gid; private String srsName; /** * Get the 'outerBoundaryIs' element value. * * @return value */ public OuterBoundaryIs getOuterBoundaryIs() { return outerBoundaryIs; } /** * Set the 'outerBoundaryIs' element value. * * @param outerBoundaryIs */ public void setOuterBoundaryIs(OuterBoundaryIs outerBoundaryIs) { this.outerBoundaryIs = outerBoundaryIs; } /** * Get the list of 'innerBoundaryIs' element items. * * @return list */ public List getInnerBoundaryIList() { return innerBoundaryIList; } /** * Set the list of 'innerBoundaryIs' element items. * * @param list */ public void setInnerBoundaryIList(List list) { innerBoundaryIList = list; } /** * Get the 'gid' attribute value. * * @return value */ public String getGid() { return gid; } /** * Set the 'gid' attribute value. * * @param gid */ public void setGid(String gid) { this.gid = gid; } /** * Get the 'srsName' attribute value. * * @return value */ public String getSrsName() { return srsName; } /** * Set the 'srsName' attribute value. * * @param srsName */ public void setSrsName(String srsName) { this.srsName = srsName; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy