📄 updatesequencetypebinding.java
字号:
/* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
* This code is licensed under the GPL 2.0 license, availible at the root
* application directory.
*/
package org.geoserver.ows.xml.v1_0;
import net.opengis.ows.OwsFactory;
import org.geotools.xml.AbstractSimpleBinding;
import org.geotools.xml.InstanceComponent;
import javax.xml.namespace.QName;
/**
* Binding object for the type http://www.opengis.net/ows:UpdateSequenceType.
*
* <p>
* <pre>
* <code>
* <simpleType name="UpdateSequenceType">
* <annotation>
* <documentation>Service metadata document version, having values that are "increased" whenever any change is made in service metadata document. Values are selected by each server, and are always opaque to clients. See updateSequence parameter use subclause for more information. </documentation>
* </annotation>
* <restriction base="string"/>
* </simpleType>
*
* </code>
* </pre>
* </p>
*
* @generated
*/
public class UpdateSequenceTypeBinding extends AbstractSimpleBinding {
OwsFactory owsfactory;
public UpdateSequenceTypeBinding(OwsFactory owsfactory) {
this.owsfactory = owsfactory;
}
/**
* @generated
*/
public QName getTarget() {
return OWS.UPDATESEQUENCETYPE;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Class getType() {
return null;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(InstanceComponent instance, Object value)
throws Exception {
//TODO: implement
return null;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -