unioffice/schema/soo/dml/CT_ConnectionSiteList.go
Todd 5bfa034ef9 gooxml: add and use a Log function
This allows redirecting or discarding any
logs produced by the library.
2017-09-30 07:09:26 -05:00

85 lines
2.2 KiB
Go

// 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 dml
import (
"encoding/xml"
"fmt"
"baliance.com/gooxml"
)
type CT_ConnectionSiteList struct {
Cxn []*CT_ConnectionSite
}
func NewCT_ConnectionSiteList() *CT_ConnectionSiteList {
ret := &CT_ConnectionSiteList{}
return ret
}
func (m *CT_ConnectionSiteList) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
e.EncodeToken(start)
if m.Cxn != nil {
secxn := xml.StartElement{Name: xml.Name{Local: "a:cxn"}}
for _, c := range m.Cxn {
e.EncodeElement(c, secxn)
}
}
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *CT_ConnectionSiteList) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
lCT_ConnectionSiteList:
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/drawingml/2006/main", Local: "cxn"}:
tmp := NewCT_ConnectionSite()
if err := d.DecodeElement(tmp, &el); err != nil {
return err
}
m.Cxn = append(m.Cxn, tmp)
default:
gooxml.Log("skipping unsupported element on CT_ConnectionSiteList %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lCT_ConnectionSiteList
case xml.CharData:
}
}
return nil
}
// Validate validates the CT_ConnectionSiteList and its children
func (m *CT_ConnectionSiteList) Validate() error {
return m.ValidateWithPath("CT_ConnectionSiteList")
}
// ValidateWithPath validates the CT_ConnectionSiteList and its children, prefixing error messages with path
func (m *CT_ConnectionSiteList) ValidateWithPath(path string) error {
for i, v := range m.Cxn {
if err := v.ValidateWithPath(fmt.Sprintf("%s/Cxn[%d]", path, i)); err != nil {
return err
}
}
return nil
}