mirror of
https://github.com/unidoc/unioffice.git
synced 2025-05-01 13:48:55 +08:00
93 lines
2.4 KiB
Go
93 lines
2.4 KiB
Go
// Copyright 2017 Baliance. All rights reserved.
|
|
//
|
|
// 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 wordprocessingml
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"log"
|
|
)
|
|
|
|
type EG_FtnEdnNumProps struct {
|
|
// Footnote and Endnote Numbering Starting Value
|
|
NumStart *CT_DecimalNumber
|
|
// Footnote and Endnote Numbering Restart Location
|
|
NumRestart *CT_NumRestart
|
|
}
|
|
|
|
func NewEG_FtnEdnNumProps() *EG_FtnEdnNumProps {
|
|
ret := &EG_FtnEdnNumProps{}
|
|
return ret
|
|
}
|
|
|
|
func (m *EG_FtnEdnNumProps) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
if m.NumStart != nil {
|
|
senumStart := xml.StartElement{Name: xml.Name{Local: "w:numStart"}}
|
|
e.EncodeElement(m.NumStart, senumStart)
|
|
}
|
|
if m.NumRestart != nil {
|
|
senumRestart := xml.StartElement{Name: xml.Name{Local: "w:numRestart"}}
|
|
e.EncodeElement(m.NumRestart, senumRestart)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *EG_FtnEdnNumProps) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
lEG_FtnEdnNumProps:
|
|
for {
|
|
tok, err := d.Token()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch el := tok.(type) {
|
|
case xml.StartElement:
|
|
switch el.Name.Local {
|
|
case "numStart":
|
|
m.NumStart = NewCT_DecimalNumber()
|
|
if err := d.DecodeElement(m.NumStart, &el); err != nil {
|
|
return err
|
|
}
|
|
case "numRestart":
|
|
m.NumRestart = NewCT_NumRestart()
|
|
if err := d.DecodeElement(m.NumRestart, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
log.Printf("skipping unsupported element on EG_FtnEdnNumProps %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lEG_FtnEdnNumProps
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the EG_FtnEdnNumProps and its children
|
|
func (m *EG_FtnEdnNumProps) Validate() error {
|
|
return m.ValidateWithPath("EG_FtnEdnNumProps")
|
|
}
|
|
|
|
// ValidateWithPath validates the EG_FtnEdnNumProps and its children, prefixing error messages with path
|
|
func (m *EG_FtnEdnNumProps) ValidateWithPath(path string) error {
|
|
if m.NumStart != nil {
|
|
if err := m.NumStart.ValidateWithPath(path + "/NumStart"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.NumRestart != nil {
|
|
if err := m.NumRestart.ValidateWithPath(path + "/NumRestart"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|