forked from zxzgl/unioffice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OfcCT_Skew.go
140 lines (131 loc) · 3.46 KB
/
OfcCT_Skew.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
// 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 vml
import (
"encoding/xml"
"fmt"
"baliance.com/gooxml/schema/soo/ofc/sharedTypes"
)
type OfcCT_Skew struct {
IdAttr *string
OnAttr sharedTypes.ST_TrueFalse
OffsetAttr *string
OriginAttr *string
MatrixAttr *string
ExtAttr ST_Ext
}
func NewOfcCT_Skew() *OfcCT_Skew {
ret := &OfcCT_Skew{}
return ret
}
func (m *OfcCT_Skew) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if m.IdAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "id"},
Value: fmt.Sprintf("%v", *m.IdAttr)})
}
if m.OnAttr != sharedTypes.ST_TrueFalseUnset {
attr, err := m.OnAttr.MarshalXMLAttr(xml.Name{Local: "on"})
if err != nil {
return err
}
start.Attr = append(start.Attr, attr)
}
if m.OffsetAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "offset"},
Value: fmt.Sprintf("%v", *m.OffsetAttr)})
}
if m.OriginAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "origin"},
Value: fmt.Sprintf("%v", *m.OriginAttr)})
}
if m.MatrixAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "matrix"},
Value: fmt.Sprintf("%v", *m.MatrixAttr)})
}
if m.ExtAttr != ST_ExtUnset {
attr, err := m.ExtAttr.MarshalXMLAttr(xml.Name{Local: "ext"})
if err != nil {
return err
}
start.Attr = append(start.Attr, attr)
}
e.EncodeToken(start)
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *OfcCT_Skew) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
for _, attr := range start.Attr {
if attr.Name.Local == "id" {
parsed, err := attr.Value, error(nil)
if err != nil {
return err
}
m.IdAttr = &parsed
continue
}
if attr.Name.Local == "on" {
m.OnAttr.UnmarshalXMLAttr(attr)
continue
}
if attr.Name.Local == "offset" {
parsed, err := attr.Value, error(nil)
if err != nil {
return err
}
m.OffsetAttr = &parsed
continue
}
if attr.Name.Local == "origin" {
parsed, err := attr.Value, error(nil)
if err != nil {
return err
}
m.OriginAttr = &parsed
continue
}
if attr.Name.Local == "matrix" {
parsed, err := attr.Value, error(nil)
if err != nil {
return err
}
m.MatrixAttr = &parsed
continue
}
if attr.Name.Local == "ext" {
m.ExtAttr.UnmarshalXMLAttr(attr)
continue
}
}
// skip any extensions we may find, but don't support
for {
tok, err := d.Token()
if err != nil {
return fmt.Errorf("parsing OfcCT_Skew: %s", err)
}
if el, ok := tok.(xml.EndElement); ok && el.Name == start.Name {
break
}
}
return nil
}
// Validate validates the OfcCT_Skew and its children
func (m *OfcCT_Skew) Validate() error {
return m.ValidateWithPath("OfcCT_Skew")
}
// ValidateWithPath validates the OfcCT_Skew and its children, prefixing error messages with path
func (m *OfcCT_Skew) ValidateWithPath(path string) error {
if err := m.OnAttr.ValidateWithPath(path + "/OnAttr"); err != nil {
return err
}
if err := m.ExtAttr.ValidateWithPath(path + "/ExtAttr"); err != nil {
return err
}
return nil
}