org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apache-poi-ooxml Show documentation
Show all versions of apache-poi-ooxml Show documentation
The Apache Commons Codec package contains simple encoder and decoders for
various formats such as Base64 and Hexadecimal. In addition to these
widely used encoders and decoders, the codec package also maintains a
collection of phonetic encoding utilities.
/*
* XML Type: CT_Comment
* Namespace: http://schemas.openxmlformats.org/spreadsheetml/2006/main
* Java type: org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment
*
* Automatically generated - do not modify.
*/
package org.openxmlformats.schemas.spreadsheetml.x2006.main;
/**
* An XML CT_Comment(@http://schemas.openxmlformats.org/spreadsheetml/2006/main).
*
* This is a complex type.
*/
public interface CTComment extends org.apache.xmlbeans.XmlObject
{
org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
Factory.getTypeLoader().resolveHandle("ctcomment7bfetype");
/**
* Gets the "text" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTRst getText();
/**
* Sets the "text" element
*/
void setText(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTRst text);
/**
* Appends and returns a new empty "text" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTRst addNewText();
/**
* Gets the "commentPr" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCommentPr getCommentPr();
/**
* True if has "commentPr" element
*/
boolean isSetCommentPr();
/**
* Sets the "commentPr" element
*/
void setCommentPr(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCommentPr commentPr);
/**
* Appends and returns a new empty "commentPr" element
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCommentPr addNewCommentPr();
/**
* Unsets the "commentPr" element
*/
void unsetCommentPr();
/**
* Gets the "ref" attribute
*/
java.lang.String getRef();
/**
* Gets (as xml) the "ref" attribute
*/
org.openxmlformats.schemas.spreadsheetml.x2006.main.STRef xgetRef();
/**
* Sets the "ref" attribute
*/
void setRef(java.lang.String ref);
/**
* Sets (as xml) the "ref" attribute
*/
void xsetRef(org.openxmlformats.schemas.spreadsheetml.x2006.main.STRef ref);
/**
* Gets the "authorId" attribute
*/
long getAuthorId();
/**
* Gets (as xml) the "authorId" attribute
*/
org.apache.xmlbeans.XmlUnsignedInt xgetAuthorId();
/**
* Sets the "authorId" attribute
*/
void setAuthorId(long authorId);
/**
* Sets (as xml) the "authorId" attribute
*/
void xsetAuthorId(org.apache.xmlbeans.XmlUnsignedInt authorId);
/**
* Gets the "guid" attribute
*/
java.lang.String getGuid();
/**
* Gets (as xml) the "guid" attribute
*/
org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STGuid xgetGuid();
/**
* True if has "guid" attribute
*/
boolean isSetGuid();
/**
* Sets the "guid" attribute
*/
void setGuid(java.lang.String guid);
/**
* Sets (as xml) the "guid" attribute
*/
void xsetGuid(org.openxmlformats.schemas.officeDocument.x2006.sharedTypes.STGuid guid);
/**
* Unsets the "guid" attribute
*/
void unsetGuid();
/**
* Gets the "shapeId" attribute
*/
long getShapeId();
/**
* Gets (as xml) the "shapeId" attribute
*/
org.apache.xmlbeans.XmlUnsignedInt xgetShapeId();
/**
* True if has "shapeId" attribute
*/
boolean isSetShapeId();
/**
* Sets the "shapeId" attribute
*/
void setShapeId(long shapeId);
/**
* Sets (as xml) the "shapeId" attribute
*/
void xsetShapeId(org.apache.xmlbeans.XmlUnsignedInt shapeId);
/**
* Unsets the "shapeId" attribute
*/
void unsetShapeId();
/**
* A factory class with static methods for creating instances
* of this type.
*/
final class Factory
{
private static synchronized org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder getTypeLoader() {
return org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem;
}
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment newInstance() {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().newInstance( type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment newInstance(org.apache.xmlbeans.XmlOptions options) {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().parse( xmlAsString, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().parse( xmlAsString, type, options ); }
/** @param file the file from which to load an xml document */
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().parse( file, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().parse( file, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().parse( u, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().parse( u, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().parse( is, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().parse( is, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().parse( r, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().parse( r, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().parse( sr, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().parse( sr, type, options ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().parse( node, type, null ); }
public static org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTComment) getTypeLoader().parse( node, type, options ); }
private Factory() { } // No instance of this class allowed
}
}