com.microsoft.schemas.office.drawing.x2014.chartex.CTAxisTitle Maven / Gradle / Ivy
/*
* XML Type: CT_AxisTitle
* Namespace: http://schemas.microsoft.com/office/drawing/2014/chartex
* Java type: com.microsoft.schemas.office.drawing.x2014.chartex.CTAxisTitle
*
* 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_AxisTitle(@http://schemas.microsoft.com/office/drawing/2014/chartex).
*
* This is a complex type.
*/
public interface CTAxisTitle extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctaxistitle2819type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "tx" element
*/
com.microsoft.schemas.office.drawing.x2014.chartex.CTText getTx();
/**
* True if has "tx" element
*/
boolean isSetTx();
/**
* Sets the "tx" element
*/
void setTx(com.microsoft.schemas.office.drawing.x2014.chartex.CTText tx);
/**
* Appends and returns a new empty "tx" element
*/
com.microsoft.schemas.office.drawing.x2014.chartex.CTText addNewTx();
/**
* Unsets the "tx" element
*/
void unsetTx();
/**
* Gets the "spPr" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties getSpPr();
/**
* True if has "spPr" element
*/
boolean isSetSpPr();
/**
* Sets the "spPr" element
*/
void setSpPr(org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties spPr);
/**
* Appends and returns a new empty "spPr" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties addNewSpPr();
/**
* Unsets the "spPr" element
*/
void unsetSpPr();
/**
* Gets the "txPr" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTTextBody getTxPr();
/**
* True if has "txPr" element
*/
boolean isSetTxPr();
/**
* Sets the "txPr" element
*/
void setTxPr(org.openxmlformats.schemas.drawingml.x2006.main.CTTextBody txPr);
/**
* Appends and returns a new empty "txPr" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTTextBody addNewTxPr();
/**
* Unsets the "txPr" element
*/
void unsetTxPr();
/**
* 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();
}