All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.schemas.compatibility.impl.MustUnderstandAttributeImpl Maven / Gradle / Ivy

Go to download

The Apache Commons Codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities.

There is a newer version: 62
Show newest version
/*
 * An XML attribute type.
 * Localname: MustUnderstand
 * Namespace: http://schemas.openxmlformats.org/markup-compatibility/2006
 * Java type: com.microsoft.schemas.compatibility.MustUnderstandAttribute
 *
 * Automatically generated - do not modify.
 */
package com.microsoft.schemas.compatibility.impl;
/**
 * A document containing one MustUnderstand(@http://schemas.openxmlformats.org/markup-compatibility/2006) attribute.
 *
 * This is a complex type.
 */
public class MustUnderstandAttributeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.microsoft.schemas.compatibility.MustUnderstandAttribute {
    private static final long serialVersionUID = 1L;
    
    public MustUnderstandAttributeImpl(org.apache.xmlbeans.SchemaType sType) {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName MUSTUNDERSTAND$0 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/markup-compatibility/2006", "MustUnderstand");
    
    
    /**
     * Gets the "MustUnderstand" attribute
     */
    public java.lang.String getMustUnderstand() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(MUSTUNDERSTAND$0);
            if (target == null) {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "MustUnderstand" attribute
     */
    public org.apache.xmlbeans.XmlString xgetMustUnderstand() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(MUSTUNDERSTAND$0);
            return target;
        }
    }
    
    /**
     * True if has "MustUnderstand" attribute
     */
    public boolean isSetMustUnderstand() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(MUSTUNDERSTAND$0) != null;
        }
    }
    
    /**
     * Sets the "MustUnderstand" attribute
     */
    public void setMustUnderstand(java.lang.String mustUnderstand) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(MUSTUNDERSTAND$0);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(MUSTUNDERSTAND$0);
            }
            target.setStringValue(mustUnderstand);
        }
    }
    
    /**
     * Sets (as xml) the "MustUnderstand" attribute
     */
    public void xsetMustUnderstand(org.apache.xmlbeans.XmlString mustUnderstand) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(MUSTUNDERSTAND$0);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(MUSTUNDERSTAND$0);
            }
            target.set(mustUnderstand);
        }
    }
    
    /**
     * Unsets the "MustUnderstand" attribute
     */
    public void unsetMustUnderstand() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(MUSTUNDERSTAND$0);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy