// 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 chart import ( "encoding/xml" "log" "baliance.com/gooxml" ) type CT_NumRef struct { F string NumCache *CT_NumData ExtLst *CT_ExtensionList } func NewCT_NumRef() *CT_NumRef { ret := &CT_NumRef{} return ret } func (m *CT_NumRef) MarshalXML(e *xml.Encoder, start xml.StartElement) error { if m == nil { return nil } e.EncodeToken(start) start.Attr = nil sef := xml.StartElement{Name: xml.Name{Local: "f"}} gooxml.AddPreserveSpaceAttr(&sef, m.F) e.EncodeElement(m.F, sef) if m.NumCache != nil { senumCache := xml.StartElement{Name: xml.Name{Local: "numCache"}} e.EncodeElement(m.NumCache, senumCache) } if m.ExtLst != nil { seextLst := xml.StartElement{Name: xml.Name{Local: "extLst"}} e.EncodeElement(m.ExtLst, seextLst) } e.EncodeToken(xml.EndElement{Name: start.Name}) return nil } func (m *CT_NumRef) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error { // initialize to default lCT_NumRef: for { tok, err := d.Token() if err != nil { return err } switch el := tok.(type) { case xml.StartElement: switch el.Name.Local { case "f": if err := d.DecodeElement(m.F, &el); err != nil { return err } case "numCache": m.NumCache = NewCT_NumData() if err := d.DecodeElement(m.NumCache, &el); err != nil { return err } case "extLst": m.ExtLst = NewCT_ExtensionList() if err := d.DecodeElement(m.ExtLst, &el); err != nil { return err } default: log.Printf("skipping unsupported element %v", el.Name) if err := d.Skip(); err != nil { return err } } case xml.EndElement: break lCT_NumRef case xml.CharData: } } return nil } func (m *CT_NumRef) Validate() error { return m.ValidateWithPath("CT_NumRef") } func (m *CT_NumRef) ValidateWithPath(path string) error { if m.NumCache != nil { if err := m.NumCache.ValidateWithPath(path + "/NumCache"); err != nil { return err } } if m.ExtLst != nil { if err := m.ExtLst.ValidateWithPath(path + "/ExtLst"); err != nil { return err } } return nil }