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_PCDSDTCEntries struct {
|
|
|
|
// Tuple Count
|
|
|
|
CountAttr *uint32
|
|
|
|
// No Value
|
|
|
|
M []*CT_Missing
|
|
|
|
// Numeric Value
|
|
|
|
N []*CT_Number
|
|
|
|
// Error Value
|
|
|
|
E []*CT_Error
|
|
|
|
// Character Value
|
|
|
|
S []*CT_String
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewCT_PCDSDTCEntries() *CT_PCDSDTCEntries {
|
|
|
|
ret := &CT_PCDSDTCEntries{}
|
|
|
|
return ret
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_PCDSDTCEntries) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
|
|
if m.CountAttr != nil {
|
|
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "count"},
|
|
|
|
Value: fmt.Sprintf("%v", *m.CountAttr)})
|
|
|
|
}
|
|
|
|
e.EncodeToken(start)
|
|
|
|
if m.M != nil {
|
2017-09-10 10:02:39 -05:00
|
|
|
sem := xml.StartElement{Name: xml.Name{Local: "ma:m"}}
|
|
|
|
for _, c := range m.M {
|
|
|
|
e.EncodeElement(c, sem)
|
|
|
|
}
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
if m.N != nil {
|
2017-09-10 10:02:39 -05:00
|
|
|
sen := xml.StartElement{Name: xml.Name{Local: "ma:n"}}
|
|
|
|
for _, c := range m.N {
|
|
|
|
e.EncodeElement(c, sen)
|
|
|
|
}
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
if m.E != nil {
|
2017-09-10 10:02:39 -05:00
|
|
|
see := xml.StartElement{Name: xml.Name{Local: "ma:e"}}
|
|
|
|
for _, c := range m.E {
|
|
|
|
e.EncodeElement(c, see)
|
|
|
|
}
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
if m.S != nil {
|
2017-09-10 10:02:39 -05:00
|
|
|
ses := xml.StartElement{Name: xml.Name{Local: "ma:s"}}
|
|
|
|
for _, c := range m.S {
|
|
|
|
e.EncodeElement(c, ses)
|
|
|
|
}
|
2017-08-28 20:56:18 -05:00
|
|
|
}
|
|
|
|
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_PCDSDTCEntries) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
|
|
// initialize to default
|
|
|
|
for _, attr := range start.Attr {
|
|
|
|
if attr.Name.Local == "count" {
|
|
|
|
parsed, err := strconv.ParseUint(attr.Value, 10, 32)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
pt := uint32(parsed)
|
|
|
|
m.CountAttr = &pt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lCT_PCDSDTCEntries:
|
|
|
|
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: "m"}:
|
2017-08-28 20:56:18 -05:00
|
|
|
tmp := NewCT_Missing()
|
|
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.M = append(m.M, tmp)
|
2017-09-10 10:02:39 -05:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/spreadsheetml/2006/main", Local: "n"}:
|
2017-08-28 20:56:18 -05:00
|
|
|
tmp := NewCT_Number()
|
|
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.N = append(m.N, tmp)
|
2017-09-10 10:02:39 -05:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/spreadsheetml/2006/main", Local: "e"}:
|
2017-08-28 20:56:18 -05:00
|
|
|
tmp := NewCT_Error()
|
|
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.E = append(m.E, tmp)
|
2017-09-10 10:02:39 -05:00
|
|
|
case xml.Name{Space: "http://schemas.openxmlformats.org/spreadsheetml/2006/main", Local: "s"}:
|
2017-08-28 20:56:18 -05:00
|
|
|
tmp := NewCT_String()
|
|
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.S = append(m.S, tmp)
|
|
|
|
default:
|
2017-09-01 16:52:12 -05:00
|
|
|
log.Printf("skipping unsupported element on CT_PCDSDTCEntries %v", el.Name)
|
2017-08-28 20:56:18 -05:00
|
|
|
if err := d.Skip(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case xml.EndElement:
|
|
|
|
break lCT_PCDSDTCEntries
|
|
|
|
case xml.CharData:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
|
|
|
// Validate validates the CT_PCDSDTCEntries and its children
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_PCDSDTCEntries) Validate() error {
|
|
|
|
return m.ValidateWithPath("CT_PCDSDTCEntries")
|
|
|
|
}
|
2017-09-01 15:19:23 -05:00
|
|
|
|
|
|
|
// ValidateWithPath validates the CT_PCDSDTCEntries and its children, prefixing error messages with path
|
2017-08-28 20:56:18 -05:00
|
|
|
func (m *CT_PCDSDTCEntries) ValidateWithPath(path string) error {
|
|
|
|
for i, v := range m.M {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/M[%d]", path, i)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i, v := range m.N {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/N[%d]", path, i)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i, v := range m.E {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/E[%d]", path, i)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i, v := range m.S {
|
|
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/S[%d]", path, i)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|