// 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" "fmt" "log" ) type CT_TblGrid struct { // Grid Column Definition GridCol []*CT_TblGridCol TblGridChange *CT_TblGridChange } func NewCT_TblGrid() *CT_TblGrid { ret := &CT_TblGrid{} return ret } func (m *CT_TblGrid) MarshalXML(e *xml.Encoder, start xml.StartElement) error { e.EncodeToken(start) if m.GridCol != nil { segridCol := xml.StartElement{Name: xml.Name{Local: "w:gridCol"}} e.EncodeElement(m.GridCol, segridCol) } if m.TblGridChange != nil { setblGridChange := xml.StartElement{Name: xml.Name{Local: "w:tblGridChange"}} e.EncodeElement(m.TblGridChange, setblGridChange) } e.EncodeToken(xml.EndElement{Name: start.Name}) return nil } func (m *CT_TblGrid) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error { // initialize to default lCT_TblGrid: for { tok, err := d.Token() if err != nil { return err } switch el := tok.(type) { case xml.StartElement: switch el.Name.Local { case "gridCol": tmp := NewCT_TblGridCol() if err := d.DecodeElement(tmp, &el); err != nil { return err } m.GridCol = append(m.GridCol, tmp) case "tblGridChange": m.TblGridChange = NewCT_TblGridChange() if err := d.DecodeElement(m.TblGridChange, &el); err != nil { return err } default: log.Printf("skipping unsupported element on CT_TblGrid %v", el.Name) if err := d.Skip(); err != nil { return err } } case xml.EndElement: break lCT_TblGrid case xml.CharData: } } return nil } // Validate validates the CT_TblGrid and its children func (m *CT_TblGrid) Validate() error { return m.ValidateWithPath("CT_TblGrid") } // ValidateWithPath validates the CT_TblGrid and its children, prefixing error messages with path func (m *CT_TblGrid) ValidateWithPath(path string) error { for i, v := range m.GridCol { if err := v.ValidateWithPath(fmt.Sprintf("%s/GridCol[%d]", path, i)); err != nil { return err } } if m.TblGridChange != nil { if err := m.TblGridChange.ValidateWithPath(path + "/TblGridChange"); err != nil { return err } } return nil }