📄 contrat.java
字号:
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.6
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2009.01.17 at 02:28:48 PM CET
//
package xmlbinding.contrats;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"spot",
"client"
})
@XmlRootElement(name = "contrat")
public class Contrat {
@XmlElement(required = true)
protected Spot spot;
@XmlElement(required = true)
protected String client;
/**
* Gets the value of the spot property.
*
* @return
* possible object is
* {@link Spot }
*
*/
public Spot getSpot() {
return spot;
}
/**
* Sets the value of the spot property.
*
* @param value
* allowed object is
* {@link Spot }
*
*/
public void setSpot(Spot value) {
this.spot = value;
}
/**
* Gets the value of the client property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClient() {
return client;
}
/**
* Sets the value of the client property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClient(String value) {
this.client = value;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -