com.microsoft.schemas.office.office.ButtonAttribute Maven / Gradle / Ivy
/*
* An XML attribute type.
* Localname: button
* Namespace: urn:schemas-microsoft-com:office:office
* Java type: com.microsoft.schemas.office.office.ButtonAttribute
*
* Automatically generated - do not modify.
*/
package com.microsoft.schemas.office.office;
import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
/**
* A document containing one button(@urn:schemas-microsoft-com:office:office) attribute.
*
* This is a complex type.
*/
public interface ButtonAttribute extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "button59dbattrtypetype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "button" attribute
*/
org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STTrueFalse.Enum getButton();
/**
* Gets (as xml) the "button" attribute
*/
org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STTrueFalse xgetButton();
/**
* True if has "button" attribute
*/
boolean isSetButton();
/**
* Sets the "button" attribute
*/
void setButton(org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STTrueFalse.Enum button);
/**
* Sets (as xml) the "button" attribute
*/
void xsetButton(org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STTrueFalse button);
/**
* Unsets the "button" attribute
*/
void unsetButton();
}