com.microsoft.schemas.office.drawing.x2014.chartex.CTTickMarks Maven / Gradle / Ivy
/*
* XML Type: CT_TickMarks
* Namespace: http://schemas.microsoft.com/office/drawing/2014/chartex
* Java type: com.microsoft.schemas.office.drawing.x2014.chartex.CTTickMarks
*
* 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_TickMarks(@http://schemas.microsoft.com/office/drawing/2014/chartex).
*
* This is a complex type.
*/
public interface CTTickMarks extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "cttickmarkscfe7type");
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();
/**
* Gets the "type" attribute
*/
com.microsoft.schemas.office.drawing.x2014.chartex.STTickMarksType.Enum getType();
/**
* Gets (as xml) the "type" attribute
*/
com.microsoft.schemas.office.drawing.x2014.chartex.STTickMarksType xgetType();
/**
* True if has "type" attribute
*/
boolean isSetType();
/**
* Sets the "type" attribute
*/
void setType(com.microsoft.schemas.office.drawing.x2014.chartex.STTickMarksType.Enum type);
/**
* Sets (as xml) the "type" attribute
*/
void xsetType(com.microsoft.schemas.office.drawing.x2014.chartex.STTickMarksType type);
/**
* Unsets the "type" attribute
*/
void unsetType();
}