⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 arrayimpl.java

📁 JAVA的Web Service应用
💻 JAVA
字号:
/*
 * XML Type:  Array
 * Namespace: http://schemas.xmlsoap.org/soap/encoding/
 * Java type: org.xmlsoap.schemas.soap.encoding.Array
 *
 * Automatically generated - do not modify.
 */
package org.xmlsoap.schemas.soap.encoding.impl;

/**
 * An XML Array(@http://schemas.xmlsoap.org/soap/encoding/).
 *
 * This is a complex type.
 */
public class ArrayImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl
    implements org.xmlsoap.schemas.soap.encoding.Array {
    private static final javax.xml.namespace.QName ARRAYTYPE$0 = new javax.xml.namespace.QName("http://schemas.xmlsoap.org/soap/encoding/",
            "arrayType");
    private static final javax.xml.namespace.QName OFFSET$2 = new javax.xml.namespace.QName("http://schemas.xmlsoap.org/soap/encoding/",
            "offset");
    private static final javax.xml.namespace.QName ID$4 = new javax.xml.namespace.QName("",
            "id");
    private static final javax.xml.namespace.QName HREF$6 = new javax.xml.namespace.QName("",
            "href");

    public ArrayImpl(org.apache.xmlbeans.SchemaType sType) {
        super(sType);
    }

    /**
     * Gets the "arrayType" attribute
     */
    public java.lang.String getArrayType() {
        synchronized (monitor()) {
            check_orphaned();

            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue) get_store()
                                                           .find_attribute_user(ARRAYTYPE$0);

            if (target == null) {
                return null;
            }

            return target.getStringValue();
        }
    }

    /**
     * Gets (as xml) the "arrayType" attribute
     */
    public org.apache.xmlbeans.XmlString xgetArrayType() {
        synchronized (monitor()) {
            check_orphaned();

            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString) get_store()
                                                         .find_attribute_user(ARRAYTYPE$0);

            return target;
        }
    }

    /**
     * True if has "arrayType" attribute
     */
    public boolean isSetArrayType() {
        synchronized (monitor()) {
            check_orphaned();

            return get_store().find_attribute_user(ARRAYTYPE$0) != null;
        }
    }

    /**
     * Sets the "arrayType" attribute
     */
    public void setArrayType(java.lang.String arrayType) {
        synchronized (monitor()) {
            check_orphaned();

            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue) get_store()
                                                           .find_attribute_user(ARRAYTYPE$0);

            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue) get_store()
                                                               .add_attribute_user(ARRAYTYPE$0);
            }

            target.setStringValue(arrayType);
        }
    }

    /**
     * Sets (as xml) the "arrayType" attribute
     */
    public void xsetArrayType(org.apache.xmlbeans.XmlString arrayType) {
        synchronized (monitor()) {
            check_orphaned();

            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString) get_store()
                                                         .find_attribute_user(ARRAYTYPE$0);

            if (target == null) {
                target = (org.apache.xmlbeans.XmlString) get_store()
                                                             .add_attribute_user(ARRAYTYPE$0);
            }

            target.set(arrayType);
        }
    }

    /**
     * Unsets the "arrayType" attribute
     */
    public void unsetArrayType() {
        synchronized (monitor()) {
            check_orphaned();
            get_store().remove_attribute(ARRAYTYPE$0);
        }
    }

    /**
     * Gets the "offset" attribute
     */
    public java.lang.String getOffset() {
        synchronized (monitor()) {
            check_orphaned();

            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue) get_store()
                                                           .find_attribute_user(OFFSET$2);

            if (target == null) {
                return null;
            }

            return target.getStringValue();
        }
    }

    /**
     * Gets (as xml) the "offset" attribute
     */
    public org.xmlsoap.schemas.soap.encoding.ArrayCoordinate xgetOffset() {
        synchronized (monitor()) {
            check_orphaned();

            org.xmlsoap.schemas.soap.encoding.ArrayCoordinate target = null;
            target = (org.xmlsoap.schemas.soap.encoding.ArrayCoordinate) get_store()
                                                                             .find_attribute_user(OFFSET$2);

            return target;
        }
    }

    /**
     * True if has "offset" attribute
     */
    public boolean isSetOffset() {
        synchronized (monitor()) {
            check_orphaned();

            return get_store().find_attribute_user(OFFSET$2) != null;
        }
    }

    /**
     * Sets the "offset" attribute
     */
    public void setOffset(java.lang.String offset) {
        synchronized (monitor()) {
            check_orphaned();

            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue) get_store()
                                                           .find_attribute_user(OFFSET$2);

            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue) get_store()
                                                               .add_attribute_user(OFFSET$2);
            }

            target.setStringValue(offset);
        }
    }

    /**
     * Sets (as xml) the "offset" attribute
     */
    public void xsetOffset(
        org.xmlsoap.schemas.soap.encoding.ArrayCoordinate offset) {
        synchronized (monitor()) {
            check_orphaned();

            org.xmlsoap.schemas.soap.encoding.ArrayCoordinate target = null;
            target = (org.xmlsoap.schemas.soap.encoding.ArrayCoordinate) get_store()
                                                                             .find_attribute_user(OFFSET$2);

            if (target == null) {
                target = (org.xmlsoap.schemas.soap.encoding.ArrayCoordinate) get_store()
                                                                                 .add_attribute_user(OFFSET$2);
            }

            target.set(offset);
        }
    }

    /**
     * Unsets the "offset" attribute
     */
    public void unsetOffset() {
        synchronized (monitor()) {
            check_orphaned();
            get_store().remove_attribute(OFFSET$2);
        }
    }

    /**
     * Gets the "id" attribute
     */
    public java.lang.String getId() {
        synchronized (monitor()) {
            check_orphaned();

            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue) get_store()
                                                           .find_attribute_user(ID$4);

            if (target == null) {
                return null;
            }

            return target.getStringValue();
        }
    }

    /**
     * Gets (as xml) the "id" attribute
     */
    public org.apache.xmlbeans.XmlID xgetId() {
        synchronized (monitor()) {
            check_orphaned();

            org.apache.xmlbeans.XmlID target = null;
            target = (org.apache.xmlbeans.XmlID) get_store()
                                                     .find_attribute_user(ID$4);

            return target;
        }
    }

    /**
     * True if has "id" attribute
     */
    public boolean isSetId() {
        synchronized (monitor()) {
            check_orphaned();

            return get_store().find_attribute_user(ID$4) != null;
        }
    }

    /**
     * Sets the "id" attribute
     */
    public void setId(java.lang.String id) {
        synchronized (monitor()) {
            check_orphaned();

            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue) get_store()
                                                           .find_attribute_user(ID$4);

            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue) get_store()
                                                               .add_attribute_user(ID$4);
            }

            target.setStringValue(id);
        }
    }

    /**
     * Sets (as xml) the "id" attribute
     */
    public void xsetId(org.apache.xmlbeans.XmlID id) {
        synchronized (monitor()) {
            check_orphaned();

            org.apache.xmlbeans.XmlID target = null;
            target = (org.apache.xmlbeans.XmlID) get_store()
                                                     .find_attribute_user(ID$4);

            if (target == null) {
                target = (org.apache.xmlbeans.XmlID) get_store()
                                                         .add_attribute_user(ID$4);
            }

            target.set(id);
        }
    }

    /**
     * Unsets the "id" attribute
     */
    public void unsetId() {
        synchronized (monitor()) {
            check_orphaned();
            get_store().remove_attribute(ID$4);
        }
    }

    /**
     * Gets the "href" attribute
     */
    public java.lang.String getHref() {
        synchronized (monitor()) {
            check_orphaned();

            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue) get_store()
                                                           .find_attribute_user(HREF$6);

            if (target == null) {
                return null;
            }

            return target.getStringValue();
        }
    }

    /**
     * Gets (as xml) the "href" attribute
     */
    public org.apache.xmlbeans.XmlAnyURI xgetHref() {
        synchronized (monitor()) {
            check_orphaned();

            org.apache.xmlbeans.XmlAnyURI target = null;
            target = (org.apache.xmlbeans.XmlAnyURI) get_store()
                                                         .find_attribute_user(HREF$6);

            return target;
        }
    }

    /**
     * True if has "href" attribute
     */
    public boolean isSetHref() {
        synchronized (monitor()) {
            check_orphaned();

            return get_store().find_attribute_user(HREF$6) != null;
        }
    }

    /**
     * Sets the "href" attribute
     */
    public void setHref(java.lang.String href) {
        synchronized (monitor()) {
            check_orphaned();

            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue) get_store()
                                                           .find_attribute_user(HREF$6);

            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue) get_store()
                                                               .add_attribute_user(HREF$6);
            }

            target.setStringValue(href);
        }
    }

    /**
     * Sets (as xml) the "href" attribute
     */
    public void xsetHref(org.apache.xmlbeans.XmlAnyURI href) {
        synchronized (monitor()) {
            check_orphaned();

            org.apache.xmlbeans.XmlAnyURI target = null;
            target = (org.apache.xmlbeans.XmlAnyURI) get_store()
                                                         .find_attribute_user(HREF$6);

            if (target == null) {
                target = (org.apache.xmlbeans.XmlAnyURI) get_store()
                                                             .add_attribute_user(HREF$6);
            }

            target.set(href);
        }
    }

    /**
     * Unsets the "href" attribute
     */
    public void unsetHref() {
        synchronized (monitor()) {
            check_orphaned();
            get_store().remove_attribute(HREF$6);
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -