Interface CTComment
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
public interface CTComment extends XmlObject
An XML CT_Comment(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CTComment.Factory
A factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaType
type
-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CTRst
addNewText()
Appends and returns a new empty "text" elementlong
getAuthorId()
Gets the "authorId" attributejava.lang.String
getGuid()
Gets the "guid" attributejava.lang.String
getRef()
Gets the "ref" attributeCTRst
getText()
Gets the "text" elementboolean
isSetGuid()
True if has "guid" attributevoid
setAuthorId(long authorId)
Sets the "authorId" attributevoid
setGuid(java.lang.String guid)
Sets the "guid" attributevoid
setRef(java.lang.String ref)
Sets the "ref" attributevoid
setText(CTRst text)
Sets the "text" elementvoid
unsetGuid()
Unsets the "guid" attributeXmlUnsignedInt
xgetAuthorId()
Gets (as xml) the "authorId" attributeSTGuid
xgetGuid()
Gets (as xml) the "guid" attributeSTRef
xgetRef()
Gets (as xml) the "ref" attributevoid
xsetAuthorId(XmlUnsignedInt authorId)
Sets (as xml) the "authorId" attributevoid
xsetGuid(STGuid guid)
Sets (as xml) the "guid" attributevoid
xsetRef(STRef ref)
Sets (as xml) the "ref" attribute-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getText
CTRst getText()
Gets the "text" element
-
setText
void setText(CTRst text)
Sets the "text" element
-
addNewText
CTRst addNewText()
Appends and returns a new empty "text" element
-
getRef
java.lang.String getRef()
Gets the "ref" attribute
-
xgetRef
STRef xgetRef()
Gets (as xml) the "ref" attribute
-
setRef
void setRef(java.lang.String ref)
Sets the "ref" attribute
-
xsetRef
void xsetRef(STRef ref)
Sets (as xml) the "ref" attribute
-
getAuthorId
long getAuthorId()
Gets the "authorId" attribute
-
xgetAuthorId
XmlUnsignedInt xgetAuthorId()
Gets (as xml) the "authorId" attribute
-
setAuthorId
void setAuthorId(long authorId)
Sets the "authorId" attribute
-
xsetAuthorId
void xsetAuthorId(XmlUnsignedInt authorId)
Sets (as xml) the "authorId" attribute
-
getGuid
java.lang.String getGuid()
Gets the "guid" attribute
-
xgetGuid
STGuid xgetGuid()
Gets (as xml) the "guid" attribute
-
isSetGuid
boolean isSetGuid()
True if has "guid" attribute
-
setGuid
void setGuid(java.lang.String guid)
Sets the "guid" attribute
-
xsetGuid
void xsetGuid(STGuid guid)
Sets (as xml) the "guid" attribute
-
unsetGuid
void unsetGuid()
Unsets the "guid" attribute
-
-