com.microsoft.schemas.office.drawing.x2014.chartex.CTTickLabels Maven / Gradle / Ivy
/*
* XML Type: CT_TickLabels
* Namespace: http://schemas.microsoft.com/office/drawing/2014/chartex
* Java type: com.microsoft.schemas.office.drawing.x2014.chartex.CTTickLabels
*
* Automatically generated - do not modify.
*/
package com.microsoft.schemas.office.drawing.x2014.chartex;
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;
/**
* An XML CT_TickLabels(@http://schemas.microsoft.com/office/drawing/2014/chartex).
*
* This is a complex type.
*/
public interface CTTickLabels extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctticklabelsa7catype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "extLst" element
*/
com.microsoft.schemas.office.drawing.x2014.chartex.CTExtensionList getExtLst();
/**
* True if has "extLst" element
*/
boolean isSetExtLst();
/**
* Sets the "extLst" element
*/
void setExtLst(com.microsoft.schemas.office.drawing.x2014.chartex.CTExtensionList extLst);
/**
* Appends and returns a new empty "extLst" element
*/
com.microsoft.schemas.office.drawing.x2014.chartex.CTExtensionList addNewExtLst();
/**
* Unsets the "extLst" element
*/
void unsetExtLst();
}