unioffice/schema/soo/wml/WdCT_WordprocessingGroup.go

163 lines
5.5 KiB
Go
Raw Permalink Normal View History

2017-08-28 20:56:18 -05:00
// Copyright 2017 Baliance. All rights reserved.
//
// 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:28:52 -05:00
package wml
2017-08-28 20:56:18 -05:00
import (
"encoding/xml"
"fmt"
"log"
2017-09-23 08:39:08 -05:00
"baliance.com/gooxml/schema/soo/dml"
2017-08-28 20:56:18 -05:00
)
type WdCT_WordprocessingGroup struct {
2017-09-23 08:39:08 -05:00
CNvPr *dml.CT_NonVisualDrawingProps
CNvGrpSpPr *dml.CT_NonVisualGroupDrawingShapeProps
GrpSpPr *dml.CT_GroupShapeProperties
Choice []*WdCT_WordprocessingGroupChoice
2017-09-23 08:39:08 -05:00
ExtLst *dml.CT_OfficeArtExtensionList
2017-08-28 20:56:18 -05:00
}
func NewWdCT_WordprocessingGroup() *WdCT_WordprocessingGroup {
ret := &WdCT_WordprocessingGroup{}
2017-09-23 08:39:08 -05:00
ret.CNvGrpSpPr = dml.NewCT_NonVisualGroupDrawingShapeProps()
ret.GrpSpPr = dml.NewCT_GroupShapeProperties()
2017-08-28 20:56:18 -05:00
return ret
}
func (m *WdCT_WordprocessingGroup) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
2017-08-28 20:56:18 -05:00
e.EncodeToken(start)
if m.CNvPr != nil {
secNvPr := xml.StartElement{Name: xml.Name{Local: "wp:cNvPr"}}
e.EncodeElement(m.CNvPr, secNvPr)
}
secNvGrpSpPr := xml.StartElement{Name: xml.Name{Local: "wp:cNvGrpSpPr"}}
e.EncodeElement(m.CNvGrpSpPr, secNvGrpSpPr)
segrpSpPr := xml.StartElement{Name: xml.Name{Local: "wp:grpSpPr"}}
e.EncodeElement(m.GrpSpPr, segrpSpPr)
if m.Choice != nil {
for _, c := range m.Choice {
c.MarshalXML(e, xml.StartElement{})
2017-08-28 20:56:18 -05:00
}
}
if m.ExtLst != nil {
seextLst := xml.StartElement{Name: xml.Name{Local: "wp:extLst"}}
e.EncodeElement(m.ExtLst, seextLst)
}
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *WdCT_WordprocessingGroup) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
2017-08-28 20:56:18 -05:00
// initialize to default
2017-09-23 08:39:08 -05:00
m.CNvGrpSpPr = dml.NewCT_NonVisualGroupDrawingShapeProps()
m.GrpSpPr = dml.NewCT_GroupShapeProperties()
lWdCT_WordprocessingGroup:
2017-08-28 20:56:18 -05:00
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/wordprocessingDrawing", Local: "cNvPr"}:
2017-09-23 08:39:08 -05:00
m.CNvPr = dml.NewCT_NonVisualDrawingProps()
2017-08-28 20:56:18 -05:00
if err := d.DecodeElement(m.CNvPr, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "cNvGrpSpPr"}:
2017-08-28 20:56:18 -05:00
if err := d.DecodeElement(m.CNvGrpSpPr, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "grpSpPr"}:
2017-08-28 20:56:18 -05:00
if err := d.DecodeElement(m.GrpSpPr, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "wsp"}:
tmp := NewWdCT_WordprocessingGroupChoice()
2017-08-28 20:56:18 -05:00
if err := d.DecodeElement(&tmp.Wsp, &el); err != nil {
return err
}
m.Choice = append(m.Choice, tmp)
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "grpSp"}:
tmp := NewWdCT_WordprocessingGroupChoice()
2017-08-28 20:56:18 -05:00
if err := d.DecodeElement(&tmp.GrpSp, &el); err != nil {
return err
}
m.Choice = append(m.Choice, tmp)
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "graphicFrame"}:
tmp := NewWdCT_WordprocessingGroupChoice()
2017-08-28 20:56:18 -05:00
if err := d.DecodeElement(&tmp.GraphicFrame, &el); err != nil {
return err
}
m.Choice = append(m.Choice, tmp)
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/picture", Local: "pic"}:
tmp := NewWdCT_WordprocessingGroupChoice()
2017-08-28 20:56:18 -05:00
if err := d.DecodeElement(&tmp.Pic, &el); err != nil {
return err
}
m.Choice = append(m.Choice, tmp)
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "contentPart"}:
tmp := NewWdCT_WordprocessingGroupChoice()
2017-08-28 20:56:18 -05:00
if err := d.DecodeElement(&tmp.ContentPart, &el); err != nil {
return err
}
m.Choice = append(m.Choice, tmp)
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "extLst"}:
2017-09-23 08:39:08 -05:00
m.ExtLst = dml.NewCT_OfficeArtExtensionList()
2017-08-28 20:56:18 -05:00
if err := d.DecodeElement(m.ExtLst, &el); err != nil {
return err
}
default:
log.Printf("skipping unsupported element on WdCT_WordprocessingGroup %v", el.Name)
2017-08-28 20:56:18 -05:00
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lWdCT_WordprocessingGroup
2017-08-28 20:56:18 -05:00
case xml.CharData:
}
}
return nil
}
// Validate validates the WdCT_WordprocessingGroup and its children
func (m *WdCT_WordprocessingGroup) Validate() error {
return m.ValidateWithPath("WdCT_WordprocessingGroup")
2017-08-28 20:56:18 -05:00
}
// ValidateWithPath validates the WdCT_WordprocessingGroup and its children, prefixing error messages with path
func (m *WdCT_WordprocessingGroup) ValidateWithPath(path string) error {
2017-08-28 20:56:18 -05:00
if m.CNvPr != nil {
if err := m.CNvPr.ValidateWithPath(path + "/CNvPr"); err != nil {
return err
}
}
if err := m.CNvGrpSpPr.ValidateWithPath(path + "/CNvGrpSpPr"); err != nil {
return err
}
if err := m.GrpSpPr.ValidateWithPath(path + "/GrpSpPr"); err != nil {
return err
}
for i, v := range m.Choice {
if err := v.ValidateWithPath(fmt.Sprintf("%s/Choice[%d]", path, i)); err != nil {
return err
}
}
if m.ExtLst != nil {
if err := m.ExtLst.ValidateWithPath(path + "/ExtLst"); err != nil {
return err
}
}
return nil
}