mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-29 13:49:10 +08:00
109 lines
2.9 KiB
Go
109 lines
2.9 KiB
Go
// 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"
|
|
"log"
|
|
)
|
|
|
|
type CT_SdtDocPart struct {
|
|
// Document Part Gallery Filter
|
|
DocPartGallery *CT_String
|
|
// Document Part Category Filter
|
|
DocPartCategory *CT_String
|
|
// Built-In Document Part
|
|
DocPartUnique *CT_OnOff
|
|
}
|
|
|
|
func NewCT_SdtDocPart() *CT_SdtDocPart {
|
|
ret := &CT_SdtDocPart{}
|
|
return ret
|
|
}
|
|
func (m *CT_SdtDocPart) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
if m == nil {
|
|
return nil
|
|
}
|
|
e.EncodeToken(start)
|
|
start.Attr = nil
|
|
if m.DocPartGallery != nil {
|
|
sedocPartGallery := xml.StartElement{Name: xml.Name{Local: "w:docPartGallery"}}
|
|
e.EncodeElement(m.DocPartGallery, sedocPartGallery)
|
|
}
|
|
if m.DocPartCategory != nil {
|
|
sedocPartCategory := xml.StartElement{Name: xml.Name{Local: "w:docPartCategory"}}
|
|
e.EncodeElement(m.DocPartCategory, sedocPartCategory)
|
|
}
|
|
if m.DocPartUnique != nil {
|
|
sedocPartUnique := xml.StartElement{Name: xml.Name{Local: "w:docPartUnique"}}
|
|
e.EncodeElement(m.DocPartUnique, sedocPartUnique)
|
|
}
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
return nil
|
|
}
|
|
func (m *CT_SdtDocPart) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
lCT_SdtDocPart:
|
|
for {
|
|
tok, err := d.Token()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch el := tok.(type) {
|
|
case xml.StartElement:
|
|
switch el.Name.Local {
|
|
case "docPartGallery":
|
|
m.DocPartGallery = NewCT_String()
|
|
if err := d.DecodeElement(m.DocPartGallery, &el); err != nil {
|
|
return err
|
|
}
|
|
case "docPartCategory":
|
|
m.DocPartCategory = NewCT_String()
|
|
if err := d.DecodeElement(m.DocPartCategory, &el); err != nil {
|
|
return err
|
|
}
|
|
case "docPartUnique":
|
|
m.DocPartUnique = NewCT_OnOff()
|
|
if err := d.DecodeElement(m.DocPartUnique, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
log.Printf("skipping unsupported element %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lCT_SdtDocPart
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
func (m *CT_SdtDocPart) Validate() error {
|
|
return m.ValidateWithPath("CT_SdtDocPart")
|
|
}
|
|
func (m *CT_SdtDocPart) ValidateWithPath(path string) error {
|
|
if m.DocPartGallery != nil {
|
|
if err := m.DocPartGallery.ValidateWithPath(path + "/DocPartGallery"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.DocPartCategory != nil {
|
|
if err := m.DocPartCategory.ValidateWithPath(path + "/DocPartCategory"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.DocPartUnique != nil {
|
|
if err := m.DocPartUnique.ValidateWithPath(path + "/DocPartUnique"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|