KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3 > _2002 > _03 > xkms_ > QueryKeyBindingType


1
2 package org.w3._2002._03.xkms_;
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlType;
8
9
10 /**
11  * <p>Java class for QueryKeyBindingType complex type.
12  *
13  * <p>The following schema fragment specifies the expected content contained within this class.
14  *
15  * <pre>
16  * &lt;complexType name="QueryKeyBindingType">
17  * &lt;complexContent>
18  * &lt;extension base="{http://www.w3.org/2002/03/xkms#}KeyBindingAbstractType">
19  * &lt;sequence>
20  * &lt;element ref="{http://www.w3.org/2002/03/xkms#}TimeInstant" minOccurs="0"/>
21  * &lt;/sequence>
22  * &lt;/extension>
23  * &lt;/complexContent>
24  * &lt;/complexType>
25  * </pre>
26  *
27  *
28  */

29 @XmlAccessorType(XmlAccessType.FIELD)
30 @XmlType(name = "QueryKeyBindingType", propOrder = {
31     "timeInstant"
32 })
33 public class QueryKeyBindingType
34     extends KeyBindingAbstractType
35 {
36
37     @XmlElement(name = "TimeInstant")
38     protected TimeInstantType timeInstant;
39
40     /**
41      * Gets the value of the timeInstant property.
42      *
43      * @return
44      * possible object is
45      * {@link TimeInstantType }
46      *
47      */

48     public TimeInstantType getTimeInstant() {
49         return timeInstant;
50     }
51
52     /**
53      * Sets the value of the timeInstant property.
54      *
55      * @param value
56      * allowed object is
57      * {@link TimeInstantType }
58      *
59      */

60     public void setTimeInstant(TimeInstantType value) {
61         this.timeInstant = value;
62     }
63
64 }
65
Popular Tags