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

com.microsoft.schemas.vml.impl.CTFImpl 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
/*
 * XML Type:  CT_F
 * Namespace: urn:schemas-microsoft-com:vml
 * Java type: com.microsoft.schemas.vml.CTF
 *
 * Automatically generated - do not modify.
 */
package com.microsoft.schemas.vml.impl;
/**
 * An XML CT_F(@urn:schemas-microsoft-com:vml).
 *
 * This is a complex type.
 */
public class CTFImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.microsoft.schemas.vml.CTF {
    private static final long serialVersionUID = 1L;
    
    public CTFImpl(org.apache.xmlbeans.SchemaType sType) {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName EQN$0 = 
        new javax.xml.namespace.QName("", "eqn");
    
    
    /**
     * Gets the "eqn" attribute
     */
    public java.lang.String getEqn() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(EQN$0);
            if (target == null) {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "eqn" attribute
     */
    public org.apache.xmlbeans.XmlString xgetEqn() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(EQN$0);
            return target;
        }
    }
    
    /**
     * True if has "eqn" attribute
     */
    public boolean isSetEqn() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(EQN$0) != null;
        }
    }
    
    /**
     * Sets the "eqn" attribute
     */
    public void setEqn(java.lang.String eqn) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(EQN$0);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(EQN$0);
            }
            target.setStringValue(eqn);
        }
    }
    
    /**
     * Sets (as xml) the "eqn" attribute
     */
    public void xsetEqn(org.apache.xmlbeans.XmlString eqn) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(EQN$0);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(EQN$0);
            }
            target.set(eqn);
        }
    }
    
    /**
     * Unsets the "eqn" attribute
     */
    public void unsetEqn() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(EQN$0);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy