org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph 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_TextParagraph
* Namespace: http://schemas.openxmlformats.org/drawingml/2006/main
* Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph
*
* Automatically generated - do not modify.
*/
package org.openxmlformats.schemas.drawingml.x2006.main;
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_TextParagraph(@http://schemas.openxmlformats.org/drawingml/2006/main).
*
* This is a complex type.
*/
public interface CTTextParagraph extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "cttextparagraphcaf2type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "pPr" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraphProperties getPPr();
/**
* True if has "pPr" element
*/
boolean isSetPPr();
/**
* Sets the "pPr" element
*/
void setPPr(org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraphProperties pPr);
/**
* Appends and returns a new empty "pPr" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraphProperties addNewPPr();
/**
* Unsets the "pPr" element
*/
void unsetPPr();
/**
* Gets a List of "r" elements
*/
java.util.List getRList();
/**
* Gets array of all "r" elements
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTRegularTextRun[] getRArray();
/**
* Gets ith "r" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTRegularTextRun getRArray(int i);
/**
* Returns number of "r" element
*/
int sizeOfRArray();
/**
* Sets array of all "r" element
*/
void setRArray(org.openxmlformats.schemas.drawingml.x2006.main.CTRegularTextRun[] rArray);
/**
* Sets ith "r" element
*/
void setRArray(int i, org.openxmlformats.schemas.drawingml.x2006.main.CTRegularTextRun r);
/**
* Inserts and returns a new empty value (as xml) as the ith "r" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTRegularTextRun insertNewR(int i);
/**
* Appends and returns a new empty value (as xml) as the last "r" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTRegularTextRun addNewR();
/**
* Removes the ith "r" element
*/
void removeR(int i);
/**
* Gets a List of "br" elements
*/
java.util.List getBrList();
/**
* Gets array of all "br" elements
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTTextLineBreak[] getBrArray();
/**
* Gets ith "br" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTTextLineBreak getBrArray(int i);
/**
* Returns number of "br" element
*/
int sizeOfBrArray();
/**
* Sets array of all "br" element
*/
void setBrArray(org.openxmlformats.schemas.drawingml.x2006.main.CTTextLineBreak[] brArray);
/**
* Sets ith "br" element
*/
void setBrArray(int i, org.openxmlformats.schemas.drawingml.x2006.main.CTTextLineBreak br);
/**
* Inserts and returns a new empty value (as xml) as the ith "br" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTTextLineBreak insertNewBr(int i);
/**
* Appends and returns a new empty value (as xml) as the last "br" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTTextLineBreak addNewBr();
/**
* Removes the ith "br" element
*/
void removeBr(int i);
/**
* Gets a List of "fld" elements
*/
java.util.List getFldList();
/**
* Gets array of all "fld" elements
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTTextField[] getFldArray();
/**
* Gets ith "fld" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTTextField getFldArray(int i);
/**
* Returns number of "fld" element
*/
int sizeOfFldArray();
/**
* Sets array of all "fld" element
*/
void setFldArray(org.openxmlformats.schemas.drawingml.x2006.main.CTTextField[] fldArray);
/**
* Sets ith "fld" element
*/
void setFldArray(int i, org.openxmlformats.schemas.drawingml.x2006.main.CTTextField fld);
/**
* Inserts and returns a new empty value (as xml) as the ith "fld" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTTextField insertNewFld(int i);
/**
* Appends and returns a new empty value (as xml) as the last "fld" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTTextField addNewFld();
/**
* Removes the ith "fld" element
*/
void removeFld(int i);
/**
* Gets the "endParaRPr" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTTextCharacterProperties getEndParaRPr();
/**
* True if has "endParaRPr" element
*/
boolean isSetEndParaRPr();
/**
* Sets the "endParaRPr" element
*/
void setEndParaRPr(org.openxmlformats.schemas.drawingml.x2006.main.CTTextCharacterProperties endParaRPr);
/**
* Appends and returns a new empty "endParaRPr" element
*/
org.openxmlformats.schemas.drawingml.x2006.main.CTTextCharacterProperties addNewEndParaRPr();
/**
* Unsets the "endParaRPr" element
*/
void unsetEndParaRPr();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy