mirror of
https://github.com/unidoc/unioffice.git
synced 2025-05-14 19:29:48 +08:00

* update license and terms * Fixes * Create ACKNOWLEDGEMENTS.md * Update ACKNOWLEDGEMENTS.md * Revert go.mod changes and remove go1.11 tests
134 lines
3.9 KiB
Go
134 lines
3.9 KiB
Go
// Copyright 2020 FoxyUtils ehf. All rights reserved.
|
|
//
|
|
// DO NOT EDIT: generated by unioffice ECMA-376 generator
|
|
//
|
|
// Use of this software package and source code is governed by the terms of the
|
|
// UniDoc End User License Agreement (EULA) that is available at:
|
|
// https://unidoc.io/eula/
|
|
// A trial license code for evaluation can be obtained at https://unidoc.io website.
|
|
|
|
package wml
|
|
|
|
import (
|
|
"encoding/xml"
|
|
|
|
"github.com/unidoc/unioffice"
|
|
)
|
|
|
|
type CT_NumPr struct {
|
|
// Numbering Level Reference
|
|
Ilvl *CT_DecimalNumber
|
|
// Numbering Definition Instance Reference
|
|
NumId *CT_DecimalNumber
|
|
// Previous Paragraph Numbering Properties
|
|
NumberingChange *CT_TrackChangeNumbering
|
|
// Inserted Numbering Properties
|
|
Ins *CT_TrackChange
|
|
}
|
|
|
|
func NewCT_NumPr() *CT_NumPr {
|
|
ret := &CT_NumPr{}
|
|
return ret
|
|
}
|
|
|
|
func (m *CT_NumPr) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
e.EncodeToken(start)
|
|
if m.Ilvl != nil {
|
|
seilvl := xml.StartElement{Name: xml.Name{Local: "w:ilvl"}}
|
|
e.EncodeElement(m.Ilvl, seilvl)
|
|
}
|
|
if m.NumId != nil {
|
|
senumId := xml.StartElement{Name: xml.Name{Local: "w:numId"}}
|
|
e.EncodeElement(m.NumId, senumId)
|
|
}
|
|
if m.NumberingChange != nil {
|
|
senumberingChange := xml.StartElement{Name: xml.Name{Local: "w:numberingChange"}}
|
|
e.EncodeElement(m.NumberingChange, senumberingChange)
|
|
}
|
|
if m.Ins != nil {
|
|
seins := xml.StartElement{Name: xml.Name{Local: "w:ins"}}
|
|
e.EncodeElement(m.Ins, seins)
|
|
}
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
return nil
|
|
}
|
|
|
|
func (m *CT_NumPr) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
lCT_NumPr:
|
|
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: "ilvl"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "ilvl"}:
|
|
m.Ilvl = NewCT_DecimalNumber()
|
|
if err := d.DecodeElement(m.Ilvl, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "numId"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "numId"}:
|
|
m.NumId = NewCT_DecimalNumber()
|
|
if err := d.DecodeElement(m.NumId, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "numberingChange"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "numberingChange"}:
|
|
m.NumberingChange = NewCT_TrackChangeNumbering()
|
|
if err := d.DecodeElement(m.NumberingChange, &el); err != nil {
|
|
return err
|
|
}
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/wordprocessingml/2006/main", Local: "ins"},
|
|
xml.Name{Space: "http://purl.oclc.org/ooxml/wordprocessingml/main", Local: "ins"}:
|
|
m.Ins = NewCT_TrackChange()
|
|
if err := d.DecodeElement(m.Ins, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
unioffice.Log("skipping unsupported element on CT_NumPr %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lCT_NumPr
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the CT_NumPr and its children
|
|
func (m *CT_NumPr) Validate() error {
|
|
return m.ValidateWithPath("CT_NumPr")
|
|
}
|
|
|
|
// ValidateWithPath validates the CT_NumPr and its children, prefixing error messages with path
|
|
func (m *CT_NumPr) ValidateWithPath(path string) error {
|
|
if m.Ilvl != nil {
|
|
if err := m.Ilvl.ValidateWithPath(path + "/Ilvl"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.NumId != nil {
|
|
if err := m.NumId.ValidateWithPath(path + "/NumId"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.NumberingChange != nil {
|
|
if err := m.NumberingChange.ValidateWithPath(path + "/NumberingChange"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.Ins != nil {
|
|
if err := m.Ins.ValidateWithPath(path + "/Ins"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|