/* * An XML attribute type. * Localname: href * Namespace: http://schemas.openxmlformats.org/officeDocument/2006/relationships * Java type: org.openxmlformats.schemas.officeDocument.x2006.relationships.HrefAttribute * * Automatically generated - do not modify. */ package org.openxmlformats.schemas.officeDocument.x2006.relationships.impl; /** * A document containing one href(@http://schemas.openxmlformats.org/officeDocument/2006/relationships) attribute. * * This is a complex type. */ public class HrefAttributeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.officeDocument.x2006.relationships.HrefAttribute { public HrefAttributeImpl(org.apache.xmlbeans.SchemaType sType) { super(sType); } private static final javax.xml.namespace.QName HREF$0 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/officeDocument/2006/relationships", "href"); /** * 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$0); if (target == null) { return null; } return target.getStringValue(); } } /** * Gets (as xml) the "href" attribute */ public org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId xgetHref() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId target = null; target = (org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId)get_store().find_attribute_user(HREF$0); return target; } } /** * True if has "href" attribute */ public boolean isSetHref() { synchronized (monitor()) { check_orphaned(); return get_store().find_attribute_user(HREF$0) != 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$0); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(HREF$0); } target.setStringValue(href); } } /** * Sets (as xml) the "href" attribute */ public void xsetHref(org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId href) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId target = null; target = (org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId)get_store().find_attribute_user(HREF$0); if (target == null) { target = (org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId)get_store().add_attribute_user(HREF$0); } target.set(href); } } /** * Unsets the "href" attribute */ public void unsetHref() { synchronized (monitor()) { check_orphaned(); get_store().remove_attribute(HREF$0); } } }