2017-08-28 20:56:18 -05:00
|
|
|
// Copyright 2017 Baliance. All rights reserved.
|
|
|
|
//
|
2017-09-09 10:21:47 -05:00
|
|
|
// DO NOT EDIT: generated by gooxml ECMA-376 generator
|
|
|
|
//
|
2017-08-28 20:56:18 -05:00
|
|
|
// 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.
|
|
|
|
|
2017-09-23 08:23:34 -05:00
|
|
|
package sml
|
2017-08-28 20:56:18 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"strconv"
|
|
|
|
)
|
|
|
|
|
|
|
|
type CT_Consolidation struct {
|
|
|
|
// Auto Page
|
|
|
|
AutoPageAttr *bool
|
|
|
|
// Page Item Values
|
|
|
|
Pages *CT_Pages
|
|
|
|
// Range Sets
|
|
|
|
RangeSets *CT_RangeSets
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewCT_Consolidation() *CT_Consolidation {
|
|
|
|
ret := &CT_Consolidation{}
|
|
|
|
ret.RangeSets = NewCT_RangeSets()
|
|
|
|
return ret
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_Consolidation) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
|
|
if m.AutoPageAttr != nil {
|
|
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "autoPage"},
|
2017-09-03 21:00:35 -05:00
|
|
|
Value: fmt.Sprintf("%d", b2i(*m.AutoPageAttr))})
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
e.EncodeToken(start)
|
|
|
|
if m.Pages != nil {
|
2017-09-10 10:02:39 -05:00
|
|
|
sepages := xml.StartElement{Name: xml.Name{Local: "ma:pages"}}
|
2017-08-28 20:56:18 -05:00
|
|
|
e.EncodeElement(m.Pages, sepages)
|
|
|
|
}
|
2017-09-10 10:02:39 -05:00
|
|
|
serangeSets := xml.StartElement{Name: xml.Name{Local: "ma:rangeSets"}}
|
2017-08-28 20:56:18 -05:00
|
|
|
e.EncodeElement(m.RangeSets, serangeSets)
|
|
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
|
|
return nil
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_Consolidation) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
|
|
// initialize to default
|
|
|
|
m.RangeSets = NewCT_RangeSets()
|
|
|
|
for _, attr := range start.Attr {
|
|
|
|
if attr.Name.Local == "autoPage" {
|
|
|
|
parsed, err := strconv.ParseBool(attr.Value)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.AutoPageAttr = &parsed
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lCT_Consolidation:
|
|
|
|
for {
|
|
|
|
tok, err := d.Token()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
switch el := tok.(type) {
|
|
|
|
case xml.StartElement:
|
2017-09-10 10:02:39 -05:00
|
|
|
switch el.Name {
|
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/spreadsheetml/2006/main", Local: "pages"}:
|
2017-08-28 20:56:18 -05:00
|
|
|
m.Pages = NewCT_Pages()
|
|
|
|
if err := d.DecodeElement(m.Pages, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-09-10 10:02:39 -05:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/spreadsheetml/2006/main", Local: "rangeSets"}:
|
2017-08-28 20:56:18 -05:00
|
|
|
if err := d.DecodeElement(m.RangeSets, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
default:
|
2017-09-01 16:52:12 -05:00
|
|
|
log.Printf("skipping unsupported element on CT_Consolidation %v", el.Name)
|
2017-08-28 20:56:18 -05:00
|
|
|
if err := d.Skip(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case xml.EndElement:
|
|
|
|
break lCT_Consolidation
|
|
|
|
case xml.CharData:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
|
|
|
// Validate validates the CT_Consolidation and its children
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_Consolidation) Validate() error {
|
|
|
|
return m.ValidateWithPath("CT_Consolidation")
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
|
|
|
// ValidateWithPath validates the CT_Consolidation and its children, prefixing error messages with path
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_Consolidation) ValidateWithPath(path string) error {
|
|
|
|
if m.Pages != nil {
|
|
|
|
if err := m.Pages.ValidateWithPath(path + "/Pages"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := m.RangeSets.ValidateWithPath(path + "/RangeSets"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|