Package iofXml.v3
Class ClassType
- java.lang.Object
-
- iofXml.v3.ClassType
-
public class ClassType extends java.lang.Object
Defines a class type, which is used to group classes in categories.Java class for ClassType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ClassType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Id" type="{http://www.orienteering.org/datastandard/3.0}Id" minOccurs="0"/> <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/> </sequence> <attribute name="modifyTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Id
id
protected javax.xml.datatype.XMLGregorianCalendar
modifyTime
protected java.lang.String
name
-
Constructor Summary
Constructors Constructor Description ClassType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Id
getId()
Gets the value of the id property.javax.xml.datatype.XMLGregorianCalendar
getModifyTime()
Gets the value of the modifyTime property.java.lang.String
getName()
Gets the value of the name property.void
setId(Id value)
Sets the value of the id property.void
setModifyTime(javax.xml.datatype.XMLGregorianCalendar value)
Sets the value of the modifyTime property.void
setName(java.lang.String value)
Sets the value of the name property.
-
-
-
Field Detail
-
id
protected Id id
-
name
protected java.lang.String name
-
modifyTime
protected javax.xml.datatype.XMLGregorianCalendar modifyTime
-
-
Method Detail
-
setId
public void setId(Id value)
Sets the value of the id property.- Parameters:
value
- allowed object isId
-
getName
public java.lang.String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(java.lang.String value)
Sets the value of the name property.- Parameters:
value
- allowed object isString
-
getModifyTime
public javax.xml.datatype.XMLGregorianCalendar getModifyTime()
Gets the value of the modifyTime property.- Returns:
- possible object is
XMLGregorianCalendar
-
setModifyTime
public void setModifyTime(javax.xml.datatype.XMLGregorianCalendar value)
Sets the value of the modifyTime property.- Parameters:
value
- allowed object isXMLGregorianCalendar
-
-