代码拉取完成,页面将自动刷新
// 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"
"fmt"
"baliance.com/gooxml"
)
type CT_R struct {
// Revision Identifier for Run Properties
RsidRPrAttr *string
// Revision Identifier for Run Deletion
RsidDelAttr *string
// Revision Identifier for Run
RsidRAttr *string
// Run Properties
RPr *CT_RPr
EG_RunInnerContent []*EG_RunInnerContent
Extra []gooxml.Any
}
func NewCT_R() *CT_R {
ret := &CT_R{}
return ret
}
func (m *CT_R) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if m.RsidRPrAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "w:rsidRPr"},
Value: fmt.Sprintf("%v", *m.RsidRPrAttr)})
}
if m.RsidDelAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "w:rsidDel"},
Value: fmt.Sprintf("%v", *m.RsidDelAttr)})
}
if m.RsidRAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "w:rsidR"},
Value: fmt.Sprintf("%v", *m.RsidRAttr)})
}
e.EncodeToken(start)
if m.RPr != nil {
serPr := xml.StartElement{Name: xml.Name{Local: "w:rPr"}}
e.EncodeElement(m.RPr, serPr)
}
if m.EG_RunInnerContent != nil {
for _, c := range m.EG_RunInnerContent {
c.MarshalXML(e, xml.StartElement{})
}
}
for _, any := range m.Extra {
if err := any.MarshalXML(e, xml.StartElement{}); err != nil {
return err
}
}
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *CT_R) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
for _, attr := range start.Attr {
if attr.Name.Local == "rsidRPr" {
parsed, err := attr.Value, error(nil)
if err != nil {
return err
}
m.RsidRPrAttr = &parsed
continue
}
if attr.Name.Local == "rsidDel" {
parsed, err := attr.Value, error(nil)
if err != nil {
return err
}
m.RsidDelAttr = &parsed
continue
}
if attr.Name.Local == "rsidR" {
parsed, err := attr.Value, error(nil)
if err != nil {
return err
}
m.RsidRAttr = &parsed
continue
}
}
lCT_R:
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: "rPr"}:
m.RPr = NewCT_RPr()
if err := d.DecodeElement(m.RPr, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "br"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.Br = NewCT_Br()
if err := d.DecodeElement(tmpruninnercontent.Br, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "t"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.T = NewCT_Text()
if err := d.DecodeElement(tmpruninnercontent.T, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "contentPart"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.ContentPart = NewCT_Rel()
if err := d.DecodeElement(tmpruninnercontent.ContentPart, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "delText"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.DelText = NewCT_Text()
if err := d.DecodeElement(tmpruninnercontent.DelText, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "instrText"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.InstrText = NewCT_Text()
if err := d.DecodeElement(tmpruninnercontent.InstrText, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "delInstrText"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.DelInstrText = NewCT_Text()
if err := d.DecodeElement(tmpruninnercontent.DelInstrText, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "noBreakHyphen"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.NoBreakHyphen = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.NoBreakHyphen, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "softHyphen"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.SoftHyphen = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.SoftHyphen, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "dayShort"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.DayShort = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.DayShort, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "monthShort"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.MonthShort = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.MonthShort, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "yearShort"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.YearShort = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.YearShort, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "dayLong"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.DayLong = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.DayLong, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "monthLong"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.MonthLong = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.MonthLong, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "yearLong"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.YearLong = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.YearLong, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "annotationRef"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.AnnotationRef = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.AnnotationRef, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "footnoteRef"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.FootnoteRef = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.FootnoteRef, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "endnoteRef"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.EndnoteRef = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.EndnoteRef, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "separator"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.Separator = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.Separator, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "continuationSeparator"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.ContinuationSeparator = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.ContinuationSeparator, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "sym"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.Sym = NewCT_Sym()
if err := d.DecodeElement(tmpruninnercontent.Sym, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "pgNum"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.PgNum = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.PgNum, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "cr"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.Cr = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.Cr, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "tab"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.Tab = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.Tab, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "object"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.Object = NewCT_Object()
if err := d.DecodeElement(tmpruninnercontent.Object, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "pict"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.Pict = NewCT_Picture()
if err := d.DecodeElement(tmpruninnercontent.Pict, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "fldChar"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.FldChar = NewCT_FldChar()
if err := d.DecodeElement(tmpruninnercontent.FldChar, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "ruby"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.Ruby = NewCT_Ruby()
if err := d.DecodeElement(tmpruninnercontent.Ruby, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "footnoteReference"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.FootnoteReference = NewCT_FtnEdnRef()
if err := d.DecodeElement(tmpruninnercontent.FootnoteReference, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "endnoteReference"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.EndnoteReference = NewCT_FtnEdnRef()
if err := d.DecodeElement(tmpruninnercontent.EndnoteReference, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "commentReference"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.CommentReference = NewCT_Markup()
if err := d.DecodeElement(tmpruninnercontent.CommentReference, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "drawing"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.Drawing = NewCT_Drawing()
if err := d.DecodeElement(tmpruninnercontent.Drawing, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "ptab"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.Ptab = NewCT_PTab()
if err := d.DecodeElement(tmpruninnercontent.Ptab, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "lastRenderedPageBreak"}:
tmpruninnercontent := NewEG_RunInnerContent()
tmpruninnercontent.LastRenderedPageBreak = NewCT_Empty()
if err := d.DecodeElement(tmpruninnercontent.LastRenderedPageBreak, &el); err != nil {
return err
}
m.EG_RunInnerContent = append(m.EG_RunInnerContent, tmpruninnercontent)
default:
any := &gooxml.XSDAny{}
if err := d.DecodeElement(any, &el); err != nil {
return err
}
m.Extra = append(m.Extra, any)
}
case xml.EndElement:
break lCT_R
case xml.CharData:
}
}
return nil
}
// Validate validates the CT_R and its children
func (m *CT_R) Validate() error {
return m.ValidateWithPath("CT_R")
}
// ValidateWithPath validates the CT_R and its children, prefixing error messages with path
func (m *CT_R) ValidateWithPath(path string) error {
if m.RPr != nil {
if err := m.RPr.ValidateWithPath(path + "/RPr"); err != nil {
return err
}
}
for i, v := range m.EG_RunInnerContent {
if err := v.ValidateWithPath(fmt.Sprintf("%s/EG_RunInnerContent[%d]", path, i)); err != nil {
return err
}
}
return nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。