com.microsoft.schemas.office.office.ForcedashAttribute Maven / Gradle / Ivy
/*
* An XML attribute type.
* Localname: forcedash
* Namespace: urn:schemas-microsoft-com:office:office
* Java type: com.microsoft.schemas.office.office.ForcedashAttribute
*
* 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 forcedash(@urn:schemas-microsoft-com:office:office) attribute.
*
* This is a complex type.
*/
public interface ForcedashAttribute extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "forcedash7ef0attrtypetype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "forcedash" attribute
*/
org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STTrueFalse.Enum getForcedash();
/**
* Gets (as xml) the "forcedash" attribute
*/
org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STTrueFalse xgetForcedash();
/**
* True if has "forcedash" attribute
*/
boolean isSetForcedash();
/**
* Sets the "forcedash" attribute
*/
void setForcedash(org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STTrueFalse.Enum forcedash);
/**
* Sets (as xml) the "forcedash" attribute
*/
void xsetForcedash(org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STTrueFalse forcedash);
/**
* Unsets the "forcedash" attribute
*/
void unsetForcedash();
}