Package jaxb
Class Roadgeom
- java.lang.Object
-
- jaxb.Roadgeom
-
public class Roadgeom extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{opentrafficmodels}add_lanes" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}long" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Roadgeom()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AddLanes>
getAddLanes()
Gets the value of the addLanes property.long
getId()
Gets the value of the id property.void
setId(long value)
Sets the value of the id property.
-
-
-
Method Detail
-
getAddLanes
public List<AddLanes> getAddLanes()
Gets the value of the addLanes property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
set
method for the addLanes property.For example, to add a new item, do as follows:
getAddLanes().add(newItem);
Objects of the following type(s) are allowed in the list
AddLanes
-
getId
public long getId()
Gets the value of the id property.
-
setId
public void setId(long value)
Sets the value of the id property.
-
-