unioffice/schema/soo/dml/chart/CT_Protection.go
Gunnsteinn Hall 5335bf249b
License update (#426)
* update license and terms

* Fixes

* Create ACKNOWLEDGEMENTS.md

* Update ACKNOWLEDGEMENTS.md

* Revert go.mod changes and remove go1.11 tests
2020-08-08 01:01:05 +00:00

146 lines
4.5 KiB
Go

// Copyright 2020 FoxyUtils ehf. All rights reserved.
//
// DO NOT EDIT: generated by unioffice ECMA-376 generator
//
// Use of this software package and source code is governed by the terms of the
// UniDoc End User License Agreement (EULA) that is available at:
// https://unidoc.io/eula/
// A trial license code for evaluation can be obtained at https://unidoc.io website.
package chart
import (
"encoding/xml"
"github.com/unidoc/unioffice"
)
type CT_Protection struct {
ChartObject *CT_Boolean
Data *CT_Boolean
Formatting *CT_Boolean
Selection *CT_Boolean
UserInterface *CT_Boolean
}
func NewCT_Protection() *CT_Protection {
ret := &CT_Protection{}
return ret
}
func (m *CT_Protection) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
e.EncodeToken(start)
if m.ChartObject != nil {
sechartObject := xml.StartElement{Name: xml.Name{Local: "c:chartObject"}}
e.EncodeElement(m.ChartObject, sechartObject)
}
if m.Data != nil {
sedata := xml.StartElement{Name: xml.Name{Local: "c:data"}}
e.EncodeElement(m.Data, sedata)
}
if m.Formatting != nil {
seformatting := xml.StartElement{Name: xml.Name{Local: "c:formatting"}}
e.EncodeElement(m.Formatting, seformatting)
}
if m.Selection != nil {
seselection := xml.StartElement{Name: xml.Name{Local: "c:selection"}}
e.EncodeElement(m.Selection, seselection)
}
if m.UserInterface != nil {
seuserInterface := xml.StartElement{Name: xml.Name{Local: "c:userInterface"}}
e.EncodeElement(m.UserInterface, seuserInterface)
}
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *CT_Protection) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
lCT_Protection:
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/chart", Local: "chartObject"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "chartObject"}:
m.ChartObject = NewCT_Boolean()
if err := d.DecodeElement(m.ChartObject, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "data"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "data"}:
m.Data = NewCT_Boolean()
if err := d.DecodeElement(m.Data, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "formatting"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "formatting"}:
m.Formatting = NewCT_Boolean()
if err := d.DecodeElement(m.Formatting, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "selection"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "selection"}:
m.Selection = NewCT_Boolean()
if err := d.DecodeElement(m.Selection, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/chart", Local: "userInterface"},
xml.Name{Space: "http://purl.oclc.org/ooxml/drawingml/chart", Local: "userInterface"}:
m.UserInterface = NewCT_Boolean()
if err := d.DecodeElement(m.UserInterface, &el); err != nil {
return err
}
default:
unioffice.Log("skipping unsupported element on CT_Protection %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lCT_Protection
case xml.CharData:
}
}
return nil
}
// Validate validates the CT_Protection and its children
func (m *CT_Protection) Validate() error {
return m.ValidateWithPath("CT_Protection")
}
// ValidateWithPath validates the CT_Protection and its children, prefixing error messages with path
func (m *CT_Protection) ValidateWithPath(path string) error {
if m.ChartObject != nil {
if err := m.ChartObject.ValidateWithPath(path + "/ChartObject"); err != nil {
return err
}
}
if m.Data != nil {
if err := m.Data.ValidateWithPath(path + "/Data"); err != nil {
return err
}
}
if m.Formatting != nil {
if err := m.Formatting.ValidateWithPath(path + "/Formatting"); err != nil {
return err
}
}
if m.Selection != nil {
if err := m.Selection.ValidateWithPath(path + "/Selection"); err != nil {
return err
}
}
if m.UserInterface != nil {
if err := m.UserInterface.ValidateWithPath(path + "/UserInterface"); err != nil {
return err
}
}
return nil
}