mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-29 13:49:10 +08:00
127 lines
3.0 KiB
Go
127 lines
3.0 KiB
Go
// 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 sml
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"fmt"
|
|
|
|
"baliance.com/gooxml"
|
|
)
|
|
|
|
type CT_Schema struct {
|
|
// Schema ID
|
|
IDAttr string
|
|
// Schema Reference
|
|
SchemaRefAttr *string
|
|
// Schema Root Namespace
|
|
NamespaceAttr *string
|
|
// Schema Language
|
|
SchemaLanguageAttr *string
|
|
Any gooxml.Any
|
|
}
|
|
|
|
func NewCT_Schema() *CT_Schema {
|
|
ret := &CT_Schema{}
|
|
return ret
|
|
}
|
|
|
|
func (m *CT_Schema) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "ID"},
|
|
Value: fmt.Sprintf("%v", m.IDAttr)})
|
|
if m.SchemaRefAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "SchemaRef"},
|
|
Value: fmt.Sprintf("%v", *m.SchemaRefAttr)})
|
|
}
|
|
if m.NamespaceAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "Namespace"},
|
|
Value: fmt.Sprintf("%v", *m.NamespaceAttr)})
|
|
}
|
|
if m.SchemaLanguageAttr != nil {
|
|
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "SchemaLanguage"},
|
|
Value: fmt.Sprintf("%v", *m.SchemaLanguageAttr)})
|
|
}
|
|
e.EncodeToken(start)
|
|
if m.Any != nil {
|
|
m.Any.MarshalXML(e, xml.StartElement{})
|
|
}
|
|
e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
return nil
|
|
}
|
|
|
|
func (m *CT_Schema) 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
|
|
}
|
|
if attr.Name.Local == "SchemaRef" {
|
|
parsed, err := attr.Value, error(nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.SchemaRefAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "Namespace" {
|
|
parsed, err := attr.Value, error(nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.NamespaceAttr = &parsed
|
|
}
|
|
if attr.Name.Local == "SchemaLanguage" {
|
|
parsed, err := attr.Value, error(nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
m.SchemaLanguageAttr = &parsed
|
|
}
|
|
}
|
|
lCT_Schema:
|
|
for {
|
|
tok, err := d.Token()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch el := tok.(type) {
|
|
case xml.StartElement:
|
|
switch el.Name {
|
|
default:
|
|
if anyEl, err := gooxml.CreateElement(el); err != nil {
|
|
return err
|
|
} else {
|
|
if err := d.DecodeElement(anyEl, &el); err != nil {
|
|
return err
|
|
}
|
|
m.Any = anyEl
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lCT_Schema
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the CT_Schema and its children
|
|
func (m *CT_Schema) Validate() error {
|
|
return m.ValidateWithPath("CT_Schema")
|
|
}
|
|
|
|
// ValidateWithPath validates the CT_Schema and its children, prefixing error messages with path
|
|
func (m *CT_Schema) ValidateWithPath(path string) error {
|
|
return nil
|
|
}
|