decimaldocumentimpl.java
来自「本光盘包含了本书各章中出现的所有程序的源代码。 1. 如果是Java程序」· Java 代码 · 共 81 行
JAVA
81 行
/*
* An XML document type.
* Localname: decimal
* Namespace: http://schemas.xmlsoap.org/soap/encoding/
* Java type: org.xmlsoap.schemas.soap.encoding.DecimalDocument
*
* Automatically generated - do not modify.
*/
package org.xmlsoap.schemas.soap.encoding.impl;
/**
* A document containing one decimal(@http://schemas.xmlsoap.org/soap/encoding/) element.
*
* This is a complex type.
*/
public class DecimalDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl
implements org.xmlsoap.schemas.soap.encoding.DecimalDocument {
private static final javax.xml.namespace.QName DECIMAL$0 = new javax.xml.namespace.QName("http://schemas.xmlsoap.org/soap/encoding/",
"decimal");
public DecimalDocumentImpl(org.apache.xmlbeans.SchemaType sType) {
super(sType);
}
/**
* Gets the "decimal" element
*/
public org.xmlsoap.schemas.soap.encoding.Decimal getDecimal() {
synchronized (monitor()) {
check_orphaned();
org.xmlsoap.schemas.soap.encoding.Decimal target = null;
target = (org.xmlsoap.schemas.soap.encoding.Decimal) get_store()
.find_element_user(DECIMAL$0,
0);
if (target == null) {
return null;
}
return target;
}
}
/**
* Sets the "decimal" element
*/
public void setDecimal(org.xmlsoap.schemas.soap.encoding.Decimal decimal) {
synchronized (monitor()) {
check_orphaned();
org.xmlsoap.schemas.soap.encoding.Decimal target = null;
target = (org.xmlsoap.schemas.soap.encoding.Decimal) get_store()
.find_element_user(DECIMAL$0,
0);
if (target == null) {
target = (org.xmlsoap.schemas.soap.encoding.Decimal) get_store()
.add_element_user(DECIMAL$0);
}
target.set(decimal);
}
}
/**
* Appends and returns a new empty "decimal" element
*/
public org.xmlsoap.schemas.soap.encoding.Decimal addNewDecimal() {
synchronized (monitor()) {
check_orphaned();
org.xmlsoap.schemas.soap.encoding.Decimal target = null;
target = (org.xmlsoap.schemas.soap.encoding.Decimal) get_store()
.add_element_user(DECIMAL$0);
return target;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?