org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTDrawing 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_Drawing
* Namespace: http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing
* Java type: org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTDrawing
*
* Automatically generated - do not modify.
*/
package org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing;
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_Drawing(@http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing).
*
* This is a complex type.
*/
public interface CTDrawing extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctdrawing2748type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets a List of "twoCellAnchor" elements
*/
java.util.List getTwoCellAnchorList();
/**
* Gets array of all "twoCellAnchor" elements
*/
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTTwoCellAnchor[] getTwoCellAnchorArray();
/**
* Gets ith "twoCellAnchor" element
*/
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTTwoCellAnchor getTwoCellAnchorArray(int i);
/**
* Returns number of "twoCellAnchor" element
*/
int sizeOfTwoCellAnchorArray();
/**
* Sets array of all "twoCellAnchor" element
*/
void setTwoCellAnchorArray(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTTwoCellAnchor[] twoCellAnchorArray);
/**
* Sets ith "twoCellAnchor" element
*/
void setTwoCellAnchorArray(int i, org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTTwoCellAnchor twoCellAnchor);
/**
* Inserts and returns a new empty value (as xml) as the ith "twoCellAnchor" element
*/
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTTwoCellAnchor insertNewTwoCellAnchor(int i);
/**
* Appends and returns a new empty value (as xml) as the last "twoCellAnchor" element
*/
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTTwoCellAnchor addNewTwoCellAnchor();
/**
* Removes the ith "twoCellAnchor" element
*/
void removeTwoCellAnchor(int i);
/**
* Gets a List of "oneCellAnchor" elements
*/
java.util.List getOneCellAnchorList();
/**
* Gets array of all "oneCellAnchor" elements
*/
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTOneCellAnchor[] getOneCellAnchorArray();
/**
* Gets ith "oneCellAnchor" element
*/
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTOneCellAnchor getOneCellAnchorArray(int i);
/**
* Returns number of "oneCellAnchor" element
*/
int sizeOfOneCellAnchorArray();
/**
* Sets array of all "oneCellAnchor" element
*/
void setOneCellAnchorArray(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTOneCellAnchor[] oneCellAnchorArray);
/**
* Sets ith "oneCellAnchor" element
*/
void setOneCellAnchorArray(int i, org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTOneCellAnchor oneCellAnchor);
/**
* Inserts and returns a new empty value (as xml) as the ith "oneCellAnchor" element
*/
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTOneCellAnchor insertNewOneCellAnchor(int i);
/**
* Appends and returns a new empty value (as xml) as the last "oneCellAnchor" element
*/
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTOneCellAnchor addNewOneCellAnchor();
/**
* Removes the ith "oneCellAnchor" element
*/
void removeOneCellAnchor(int i);
/**
* Gets a List of "absoluteAnchor" elements
*/
java.util.List getAbsoluteAnchorList();
/**
* Gets array of all "absoluteAnchor" elements
*/
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTAbsoluteAnchor[] getAbsoluteAnchorArray();
/**
* Gets ith "absoluteAnchor" element
*/
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTAbsoluteAnchor getAbsoluteAnchorArray(int i);
/**
* Returns number of "absoluteAnchor" element
*/
int sizeOfAbsoluteAnchorArray();
/**
* Sets array of all "absoluteAnchor" element
*/
void setAbsoluteAnchorArray(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTAbsoluteAnchor[] absoluteAnchorArray);
/**
* Sets ith "absoluteAnchor" element
*/
void setAbsoluteAnchorArray(int i, org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTAbsoluteAnchor absoluteAnchor);
/**
* Inserts and returns a new empty value (as xml) as the ith "absoluteAnchor" element
*/
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTAbsoluteAnchor insertNewAbsoluteAnchor(int i);
/**
* Appends and returns a new empty value (as xml) as the last "absoluteAnchor" element
*/
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTAbsoluteAnchor addNewAbsoluteAnchor();
/**
* Removes the ith "absoluteAnchor" element
*/
void removeAbsoluteAnchor(int i);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy