unioffice/schema/soo/wml/WdCT_PosVChoice.go

86 lines
2.3 KiB
Go
Raw 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"
"log"
)
type WdCT_PosVChoice struct {
Align WdST_AlignV
2017-08-28 20:56:18 -05:00
PosOffset *int32
}
func NewWdCT_PosVChoice() *WdCT_PosVChoice {
ret := &WdCT_PosVChoice{}
2017-08-28 20:56:18 -05:00
return ret
}
func (m *WdCT_PosVChoice) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if m.Align != WdST_AlignVUnset {
2017-08-28 20:56:18 -05:00
sealign := xml.StartElement{Name: xml.Name{Local: "wp:align"}}
e.EncodeElement(m.Align, sealign)
}
if m.PosOffset != nil {
seposOffset := xml.StartElement{Name: xml.Name{Local: "wp:posOffset"}}
e.EncodeElement(m.PosOffset, seposOffset)
}
return nil
}
func (m *WdCT_PosVChoice) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
2017-08-28 20:56:18 -05:00
// initialize to default
lWdCT_PosVChoice:
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: "align"}:
m.Align = WdST_AlignVUnset
if err := d.DecodeElement(&m.Align, &el); err != nil {
2017-08-28 20:56:18 -05:00
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "posOffset"}:
2017-08-28 20:56:18 -05:00
m.PosOffset = new(int32)
if err := d.DecodeElement(m.PosOffset, &el); err != nil {
return err
}
default:
log.Printf("skipping unsupported element on WdCT_PosVChoice %v", el.Name)
2017-08-28 20:56:18 -05:00
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lWdCT_PosVChoice
2017-08-28 20:56:18 -05:00
case xml.CharData:
}
}
return nil
}
// Validate validates the WdCT_PosVChoice and its children
func (m *WdCT_PosVChoice) Validate() error {
return m.ValidateWithPath("WdCT_PosVChoice")
2017-08-28 20:56:18 -05:00
}
// ValidateWithPath validates the WdCT_PosVChoice and its children, prefixing error messages with path
func (m *WdCT_PosVChoice) ValidateWithPath(path string) error {
2017-08-28 20:56:18 -05:00
if err := m.Align.ValidateWithPath(path + "/Align"); err != nil {
return err
}
return nil
}