1 Star 0 Fork 1

青大叔 / gooxml

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
EG_RunInnerContent.go 18.88 KB
一键复制 编辑 原始数据 按行查看 历史
qwj 提交于 2021-09-03 14:09 . 修改包名
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591
// Copyright 2017 Baliance. All rights reserved.
//
// DO NOT EDIT: generated by gooxml ECMA-376 generator
//
// Use of this source code is governed by the terms of the Affero GNU General
// Public License version 3.0 as published by the Free Software Foundation and
// appearing in the file LICENSE included in the packaging of this file. A
// commercial license can be purchased by contacting sales@baliance.com.
package wml
import (
"encoding/xml"
"gitee.com/jiewen/gooxml"
)
type EG_RunInnerContent struct {
// Break
Br *CT_Br
// Text
T *CT_Text
// Content Part
ContentPart *CT_Rel
// Deleted Text
DelText *CT_Text
// Field Code
InstrText *CT_Text
// Deleted Field Code
DelInstrText *CT_Text
// Non Breaking Hyphen Character
NoBreakHyphen *CT_Empty
// Optional Hyphen Character
SoftHyphen *CT_Empty
// Date Block - Short Day Format
DayShort *CT_Empty
// Date Block - Short Month Format
MonthShort *CT_Empty
// Date Block - Short Year Format
YearShort *CT_Empty
// Date Block - Long Day Format
DayLong *CT_Empty
// Date Block - Long Month Format
MonthLong *CT_Empty
// Date Block - Long Year Format
YearLong *CT_Empty
// Comment Information Block
AnnotationRef *CT_Empty
// Footnote Reference Mark
FootnoteRef *CT_Empty
// Endnote Reference Mark
EndnoteRef *CT_Empty
// Footnote/Endnote Separator Mark
Separator *CT_Empty
// Continuation Separator Mark
ContinuationSeparator *CT_Empty
// Symbol Character
Sym *CT_Sym
// Page Number Block
PgNum *CT_Empty
// Carriage Return
Cr *CT_Empty
// Tab Character
Tab *CT_Empty
// Embedded Object
Object *CT_Object
// VML Object
Pict *CT_Picture
// Complex Field Character
FldChar *CT_FldChar
// Phonetic Guide
Ruby *CT_Ruby
// Footnote Reference
FootnoteReference *CT_FtnEdnRef
// Endnote Reference
EndnoteReference *CT_FtnEdnRef
// Comment Content Reference Mark
CommentReference *CT_Markup
// DrawingML Object
Drawing *CT_Drawing
// Absolute Position Tab Character
Ptab *CT_PTab
// Position of Last Calculated Page Break
LastRenderedPageBreak *CT_Empty
}
func NewEG_RunInnerContent() *EG_RunInnerContent {
ret := &EG_RunInnerContent{}
return ret
}
func (m *EG_RunInnerContent) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if m.Br != nil {
sebr := xml.StartElement{Name: xml.Name{Local: "w:br"}}
e.EncodeElement(m.Br, sebr)
}
if m.T != nil {
set := xml.StartElement{Name: xml.Name{Local: "w:t"}}
e.EncodeElement(m.T, set)
}
if m.ContentPart != nil {
secontentPart := xml.StartElement{Name: xml.Name{Local: "w:contentPart"}}
e.EncodeElement(m.ContentPart, secontentPart)
}
if m.DelText != nil {
sedelText := xml.StartElement{Name: xml.Name{Local: "w:delText"}}
e.EncodeElement(m.DelText, sedelText)
}
if m.InstrText != nil {
seinstrText := xml.StartElement{Name: xml.Name{Local: "w:instrText"}}
e.EncodeElement(m.InstrText, seinstrText)
}
if m.DelInstrText != nil {
sedelInstrText := xml.StartElement{Name: xml.Name{Local: "w:delInstrText"}}
e.EncodeElement(m.DelInstrText, sedelInstrText)
}
if m.NoBreakHyphen != nil {
senoBreakHyphen := xml.StartElement{Name: xml.Name{Local: "w:noBreakHyphen"}}
e.EncodeElement(m.NoBreakHyphen, senoBreakHyphen)
}
if m.SoftHyphen != nil {
sesoftHyphen := xml.StartElement{Name: xml.Name{Local: "w:softHyphen"}}
e.EncodeElement(m.SoftHyphen, sesoftHyphen)
}
if m.DayShort != nil {
sedayShort := xml.StartElement{Name: xml.Name{Local: "w:dayShort"}}
e.EncodeElement(m.DayShort, sedayShort)
}
if m.MonthShort != nil {
semonthShort := xml.StartElement{Name: xml.Name{Local: "w:monthShort"}}
e.EncodeElement(m.MonthShort, semonthShort)
}
if m.YearShort != nil {
seyearShort := xml.StartElement{Name: xml.Name{Local: "w:yearShort"}}
e.EncodeElement(m.YearShort, seyearShort)
}
if m.DayLong != nil {
sedayLong := xml.StartElement{Name: xml.Name{Local: "w:dayLong"}}
e.EncodeElement(m.DayLong, sedayLong)
}
if m.MonthLong != nil {
semonthLong := xml.StartElement{Name: xml.Name{Local: "w:monthLong"}}
e.EncodeElement(m.MonthLong, semonthLong)
}
if m.YearLong != nil {
seyearLong := xml.StartElement{Name: xml.Name{Local: "w:yearLong"}}
e.EncodeElement(m.YearLong, seyearLong)
}
if m.AnnotationRef != nil {
seannotationRef := xml.StartElement{Name: xml.Name{Local: "w:annotationRef"}}
e.EncodeElement(m.AnnotationRef, seannotationRef)
}
if m.FootnoteRef != nil {
sefootnoteRef := xml.StartElement{Name: xml.Name{Local: "w:footnoteRef"}}
e.EncodeElement(m.FootnoteRef, sefootnoteRef)
}
if m.EndnoteRef != nil {
seendnoteRef := xml.StartElement{Name: xml.Name{Local: "w:endnoteRef"}}
e.EncodeElement(m.EndnoteRef, seendnoteRef)
}
if m.Separator != nil {
seseparator := xml.StartElement{Name: xml.Name{Local: "w:separator"}}
e.EncodeElement(m.Separator, seseparator)
}
if m.ContinuationSeparator != nil {
secontinuationSeparator := xml.StartElement{Name: xml.Name{Local: "w:continuationSeparator"}}
e.EncodeElement(m.ContinuationSeparator, secontinuationSeparator)
}
if m.Sym != nil {
sesym := xml.StartElement{Name: xml.Name{Local: "w:sym"}}
e.EncodeElement(m.Sym, sesym)
}
if m.PgNum != nil {
sepgNum := xml.StartElement{Name: xml.Name{Local: "w:pgNum"}}
e.EncodeElement(m.PgNum, sepgNum)
}
if m.Cr != nil {
secr := xml.StartElement{Name: xml.Name{Local: "w:cr"}}
e.EncodeElement(m.Cr, secr)
}
if m.Tab != nil {
setab := xml.StartElement{Name: xml.Name{Local: "w:tab"}}
e.EncodeElement(m.Tab, setab)
}
if m.Object != nil {
seobject := xml.StartElement{Name: xml.Name{Local: "w:object"}}
e.EncodeElement(m.Object, seobject)
}
if m.Pict != nil {
sepict := xml.StartElement{Name: xml.Name{Local: "w:pict"}}
e.EncodeElement(m.Pict, sepict)
}
if m.FldChar != nil {
sefldChar := xml.StartElement{Name: xml.Name{Local: "w:fldChar"}}
e.EncodeElement(m.FldChar, sefldChar)
}
if m.Ruby != nil {
seruby := xml.StartElement{Name: xml.Name{Local: "w:ruby"}}
e.EncodeElement(m.Ruby, seruby)
}
if m.FootnoteReference != nil {
sefootnoteReference := xml.StartElement{Name: xml.Name{Local: "w:footnoteReference"}}
e.EncodeElement(m.FootnoteReference, sefootnoteReference)
}
if m.EndnoteReference != nil {
seendnoteReference := xml.StartElement{Name: xml.Name{Local: "w:endnoteReference"}}
e.EncodeElement(m.EndnoteReference, seendnoteReference)
}
if m.CommentReference != nil {
secommentReference := xml.StartElement{Name: xml.Name{Local: "w:commentReference"}}
e.EncodeElement(m.CommentReference, secommentReference)
}
if m.Drawing != nil {
sedrawing := xml.StartElement{Name: xml.Name{Local: "w:drawing"}}
e.EncodeElement(m.Drawing, sedrawing)
}
if m.Ptab != nil {
septab := xml.StartElement{Name: xml.Name{Local: "w:ptab"}}
e.EncodeElement(m.Ptab, septab)
}
if m.LastRenderedPageBreak != nil {
selastRenderedPageBreak := xml.StartElement{Name: xml.Name{Local: "w:lastRenderedPageBreak"}}
e.EncodeElement(m.LastRenderedPageBreak, selastRenderedPageBreak)
}
return nil
}
func (m *EG_RunInnerContent) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
lEG_RunInnerContent:
for {
tok, err := d.Token()
if err != nil {
return err
}
switch el := tok.(type) {
case xml.StartElement:
switch el.Name {
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "br"}:
m.Br = NewCT_Br()
if err := d.DecodeElement(m.Br, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "t"}:
m.T = NewCT_Text()
if err := d.DecodeElement(m.T, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "contentPart"}:
m.ContentPart = NewCT_Rel()
if err := d.DecodeElement(m.ContentPart, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "delText"}:
m.DelText = NewCT_Text()
if err := d.DecodeElement(m.DelText, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "instrText"}:
m.InstrText = NewCT_Text()
if err := d.DecodeElement(m.InstrText, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "delInstrText"}:
m.DelInstrText = NewCT_Text()
if err := d.DecodeElement(m.DelInstrText, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "noBreakHyphen"}:
m.NoBreakHyphen = NewCT_Empty()
if err := d.DecodeElement(m.NoBreakHyphen, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "softHyphen"}:
m.SoftHyphen = NewCT_Empty()
if err := d.DecodeElement(m.SoftHyphen, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "dayShort"}:
m.DayShort = NewCT_Empty()
if err := d.DecodeElement(m.DayShort, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "monthShort"}:
m.MonthShort = NewCT_Empty()
if err := d.DecodeElement(m.MonthShort, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "yearShort"}:
m.YearShort = NewCT_Empty()
if err := d.DecodeElement(m.YearShort, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "dayLong"}:
m.DayLong = NewCT_Empty()
if err := d.DecodeElement(m.DayLong, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "monthLong"}:
m.MonthLong = NewCT_Empty()
if err := d.DecodeElement(m.MonthLong, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "yearLong"}:
m.YearLong = NewCT_Empty()
if err := d.DecodeElement(m.YearLong, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "annotationRef"}:
m.AnnotationRef = NewCT_Empty()
if err := d.DecodeElement(m.AnnotationRef, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "footnoteRef"}:
m.FootnoteRef = NewCT_Empty()
if err := d.DecodeElement(m.FootnoteRef, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "endnoteRef"}:
m.EndnoteRef = NewCT_Empty()
if err := d.DecodeElement(m.EndnoteRef, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "separator"}:
m.Separator = NewCT_Empty()
if err := d.DecodeElement(m.Separator, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "continuationSeparator"}:
m.ContinuationSeparator = NewCT_Empty()
if err := d.DecodeElement(m.ContinuationSeparator, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "sym"}:
m.Sym = NewCT_Sym()
if err := d.DecodeElement(m.Sym, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "pgNum"}:
m.PgNum = NewCT_Empty()
if err := d.DecodeElement(m.PgNum, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "cr"}:
m.Cr = NewCT_Empty()
if err := d.DecodeElement(m.Cr, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "tab"}:
m.Tab = NewCT_Empty()
if err := d.DecodeElement(m.Tab, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "object"}:
m.Object = NewCT_Object()
if err := d.DecodeElement(m.Object, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "pict"}:
m.Pict = NewCT_Picture()
if err := d.DecodeElement(m.Pict, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "fldChar"}:
m.FldChar = NewCT_FldChar()
if err := d.DecodeElement(m.FldChar, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "ruby"}:
m.Ruby = NewCT_Ruby()
if err := d.DecodeElement(m.Ruby, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "footnoteReference"}:
m.FootnoteReference = NewCT_FtnEdnRef()
if err := d.DecodeElement(m.FootnoteReference, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "endnoteReference"}:
m.EndnoteReference = NewCT_FtnEdnRef()
if err := d.DecodeElement(m.EndnoteReference, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "commentReference"}:
m.CommentReference = NewCT_Markup()
if err := d.DecodeElement(m.CommentReference, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "drawing"}:
m.Drawing = NewCT_Drawing()
if err := d.DecodeElement(m.Drawing, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "ptab"}:
m.Ptab = NewCT_PTab()
if err := d.DecodeElement(m.Ptab, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "lastRenderedPageBreak"}:
m.LastRenderedPageBreak = NewCT_Empty()
if err := d.DecodeElement(m.LastRenderedPageBreak, &el); err != nil {
return err
}
default:
gooxml.Log("skipping unsupported element on EG_RunInnerContent %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lEG_RunInnerContent
case xml.CharData:
}
}
return nil
}
// Validate validates the EG_RunInnerContent and its children
func (m *EG_RunInnerContent) Validate() error {
return m.ValidateWithPath("EG_RunInnerContent")
}
// ValidateWithPath validates the EG_RunInnerContent and its children, prefixing error messages with path
func (m *EG_RunInnerContent) ValidateWithPath(path string) error {
if m.Br != nil {
if err := m.Br.ValidateWithPath(path + "/Br"); err != nil {
return err
}
}
if m.T != nil {
if err := m.T.ValidateWithPath(path + "/T"); err != nil {
return err
}
}
if m.ContentPart != nil {
if err := m.ContentPart.ValidateWithPath(path + "/ContentPart"); err != nil {
return err
}
}
if m.DelText != nil {
if err := m.DelText.ValidateWithPath(path + "/DelText"); err != nil {
return err
}
}
if m.InstrText != nil {
if err := m.InstrText.ValidateWithPath(path + "/InstrText"); err != nil {
return err
}
}
if m.DelInstrText != nil {
if err := m.DelInstrText.ValidateWithPath(path + "/DelInstrText"); err != nil {
return err
}
}
if m.NoBreakHyphen != nil {
if err := m.NoBreakHyphen.ValidateWithPath(path + "/NoBreakHyphen"); err != nil {
return err
}
}
if m.SoftHyphen != nil {
if err := m.SoftHyphen.ValidateWithPath(path + "/SoftHyphen"); err != nil {
return err
}
}
if m.DayShort != nil {
if err := m.DayShort.ValidateWithPath(path + "/DayShort"); err != nil {
return err
}
}
if m.MonthShort != nil {
if err := m.MonthShort.ValidateWithPath(path + "/MonthShort"); err != nil {
return err
}
}
if m.YearShort != nil {
if err := m.YearShort.ValidateWithPath(path + "/YearShort"); err != nil {
return err
}
}
if m.DayLong != nil {
if err := m.DayLong.ValidateWithPath(path + "/DayLong"); err != nil {
return err
}
}
if m.MonthLong != nil {
if err := m.MonthLong.ValidateWithPath(path + "/MonthLong"); err != nil {
return err
}
}
if m.YearLong != nil {
if err := m.YearLong.ValidateWithPath(path + "/YearLong"); err != nil {
return err
}
}
if m.AnnotationRef != nil {
if err := m.AnnotationRef.ValidateWithPath(path + "/AnnotationRef"); err != nil {
return err
}
}
if m.FootnoteRef != nil {
if err := m.FootnoteRef.ValidateWithPath(path + "/FootnoteRef"); err != nil {
return err
}
}
if m.EndnoteRef != nil {
if err := m.EndnoteRef.ValidateWithPath(path + "/EndnoteRef"); err != nil {
return err
}
}
if m.Separator != nil {
if err := m.Separator.ValidateWithPath(path + "/Separator"); err != nil {
return err
}
}
if m.ContinuationSeparator != nil {
if err := m.ContinuationSeparator.ValidateWithPath(path + "/ContinuationSeparator"); err != nil {
return err
}
}
if m.Sym != nil {
if err := m.Sym.ValidateWithPath(path + "/Sym"); err != nil {
return err
}
}
if m.PgNum != nil {
if err := m.PgNum.ValidateWithPath(path + "/PgNum"); err != nil {
return err
}
}
if m.Cr != nil {
if err := m.Cr.ValidateWithPath(path + "/Cr"); err != nil {
return err
}
}
if m.Tab != nil {
if err := m.Tab.ValidateWithPath(path + "/Tab"); err != nil {
return err
}
}
if m.Object != nil {
if err := m.Object.ValidateWithPath(path + "/Object"); err != nil {
return err
}
}
if m.Pict != nil {
if err := m.Pict.ValidateWithPath(path + "/Pict"); err != nil {
return err
}
}
if m.FldChar != nil {
if err := m.FldChar.ValidateWithPath(path + "/FldChar"); err != nil {
return err
}
}
if m.Ruby != nil {
if err := m.Ruby.ValidateWithPath(path + "/Ruby"); err != nil {
return err
}
}
if m.FootnoteReference != nil {
if err := m.FootnoteReference.ValidateWithPath(path + "/FootnoteReference"); err != nil {
return err
}
}
if m.EndnoteReference != nil {
if err := m.EndnoteReference.ValidateWithPath(path + "/EndnoteReference"); err != nil {
return err
}
}
if m.CommentReference != nil {
if err := m.CommentReference.ValidateWithPath(path + "/CommentReference"); err != nil {
return err
}
}
if m.Drawing != nil {
if err := m.Drawing.ValidateWithPath(path + "/Drawing"); err != nil {
return err
}
}
if m.Ptab != nil {
if err := m.Ptab.ValidateWithPath(path + "/Ptab"); err != nil {
return err
}
}
if m.LastRenderedPageBreak != nil {
if err := m.LastRenderedPageBreak.ValidateWithPath(path + "/LastRenderedPageBreak"); err != nil {
return err
}
}
return nil
}
1
https://gitee.com/jiewen/gooxml.git
git@gitee.com:jiewen/gooxml.git
jiewen
gooxml
gooxml
c517a803bade

搜索帮助