?? objectfactory.java
字號:
package com.sysu.service;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the com.sysu.service package.
* <p>An ObjectFactory allows you to programatically
* construct new instances of the Java representation
* for XML content. The Java representation of XML
* content can consist of schema derived interfaces
* and classes representing the binding of schema
* type definitions, element declarations and model
* groups. Factory methods for each of these are
* provided in this class.
*
*/
@XmlRegistry
public class ObjectFactory {
private final static QName _FindAll_QNAME = new QName("http://service.sysu.com/", "findAll");
private final static QName _Remove_QNAME = new QName("http://service.sysu.com/", "remove");
private final static QName _Edit_QNAME = new QName("http://service.sysu.com/", "edit");
private final static QName _FindResponse_QNAME = new QName("http://service.sysu.com/", "findResponse");
private final static QName _Find_QNAME = new QName("http://service.sysu.com/", "find");
private final static QName _FindAllResponse_QNAME = new QName("http://service.sysu.com/", "findAllResponse");
private final static QName _Create_QNAME = new QName("http://service.sysu.com/", "create");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.sysu.service
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link FindResponse }
*
*/
public FindResponse createFindResponse() {
return new FindResponse();
}
/**
* Create an instance of {@link Create }
*
*/
public Create createCreate() {
return new Create();
}
/**
* Create an instance of {@link Account }
*
*/
public Account createAccount() {
return new Account();
}
/**
* Create an instance of {@link Remove }
*
*/
public Remove createRemove() {
return new Remove();
}
/**
* Create an instance of {@link Find }
*
*/
public Find createFind() {
return new Find();
}
/**
* Create an instance of {@link FindAllResponse }
*
*/
public FindAllResponse createFindAllResponse() {
return new FindAllResponse();
}
/**
* Create an instance of {@link FindAll }
*
*/
public FindAll createFindAll() {
return new FindAll();
}
/**
* Create an instance of {@link Edit }
*
*/
public Edit createEdit() {
return new Edit();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link FindAll }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://service.sysu.com/", name = "findAll")
public JAXBElement<FindAll> createFindAll(FindAll value) {
return new JAXBElement<FindAll>(_FindAll_QNAME, FindAll.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Remove }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://service.sysu.com/", name = "remove")
public JAXBElement<Remove> createRemove(Remove value) {
return new JAXBElement<Remove>(_Remove_QNAME, Remove.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Edit }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://service.sysu.com/", name = "edit")
public JAXBElement<Edit> createEdit(Edit value) {
return new JAXBElement<Edit>(_Edit_QNAME, Edit.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link FindResponse }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://service.sysu.com/", name = "findResponse")
public JAXBElement<FindResponse> createFindResponse(FindResponse value) {
return new JAXBElement<FindResponse>(_FindResponse_QNAME, FindResponse.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Find }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://service.sysu.com/", name = "find")
public JAXBElement<Find> createFind(Find value) {
return new JAXBElement<Find>(_Find_QNAME, Find.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link FindAllResponse }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://service.sysu.com/", name = "findAllResponse")
public JAXBElement<FindAllResponse> createFindAllResponse(FindAllResponse value) {
return new JAXBElement<FindAllResponse>(_FindAllResponse_QNAME, FindAllResponse.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Create }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://service.sysu.com/", name = "create")
public JAXBElement<Create> createCreate(Create value) {
return new JAXBElement<Create>(_Create_QNAME, Create.class, null, value);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -