org.openxmlformats.schemas.officeDocument.x2006.math.CTM Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/*
* XML Type: CT_M
* Namespace: http://schemas.openxmlformats.org/officeDocument/2006/math
* Java type: org.openxmlformats.schemas.officeDocument.x2006.math.CTM
*
* Automatically generated - do not modify.
*/
package org.openxmlformats.schemas.officeDocument.x2006.math;
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_M(@http://schemas.openxmlformats.org/officeDocument/2006/math).
*
* This is a complex type.
*/
public interface CTM extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctm3f8ftype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "mPr" element
*/
org.openxmlformats.schemas.officeDocument.x2006.math.CTMPr getMPr();
/**
* True if has "mPr" element
*/
boolean isSetMPr();
/**
* Sets the "mPr" element
*/
void setMPr(org.openxmlformats.schemas.officeDocument.x2006.math.CTMPr mPr);
/**
* Appends and returns a new empty "mPr" element
*/
org.openxmlformats.schemas.officeDocument.x2006.math.CTMPr addNewMPr();
/**
* Unsets the "mPr" element
*/
void unsetMPr();
/**
* Gets a List of "mr" elements
*/
java.util.List getMrList();
/**
* Gets array of all "mr" elements
*/
org.openxmlformats.schemas.officeDocument.x2006.math.CTMR[] getMrArray();
/**
* Gets ith "mr" element
*/
org.openxmlformats.schemas.officeDocument.x2006.math.CTMR getMrArray(int i);
/**
* Returns number of "mr" element
*/
int sizeOfMrArray();
/**
* Sets array of all "mr" element
*/
void setMrArray(org.openxmlformats.schemas.officeDocument.x2006.math.CTMR[] mrArray);
/**
* Sets ith "mr" element
*/
void setMrArray(int i, org.openxmlformats.schemas.officeDocument.x2006.math.CTMR mr);
/**
* Inserts and returns a new empty value (as xml) as the ith "mr" element
*/
org.openxmlformats.schemas.officeDocument.x2006.math.CTMR insertNewMr(int i);
/**
* Appends and returns a new empty value (as xml) as the last "mr" element
*/
org.openxmlformats.schemas.officeDocument.x2006.math.CTMR addNewMr();
/**
* Removes the ith "mr" element
*/
void removeMr(int i);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy