mirror of
https://github.com/unidoc/unioffice.git
synced 2025-05-14 19:29:48 +08:00

* update license and terms * Fixes * Create ACKNOWLEDGEMENTS.md * Update ACKNOWLEDGEMENTS.md * Revert go.mod changes and remove go1.11 tests
66 lines
1.9 KiB
Go
66 lines
1.9 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 pml
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"fmt"
|
|
|
|
"github.com/unidoc/unioffice/schema/soo/dml"
|
|
)
|
|
|
|
// ST_TLTimeAnimateValueTime is a union type
|
|
type ST_TLTimeAnimateValueTime struct {
|
|
ST_PositiveFixedPercentage *dml.ST_PositiveFixedPercentage
|
|
ST_TLTimeIndefinite ST_TLTimeIndefinite
|
|
}
|
|
|
|
func (m *ST_TLTimeAnimateValueTime) Validate() error {
|
|
return m.ValidateWithPath("")
|
|
}
|
|
|
|
func (m ST_TLTimeAnimateValueTime) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
e.EncodeToken(start)
|
|
if m.ST_PositiveFixedPercentage != nil {
|
|
e.Encode(m.ST_PositiveFixedPercentage)
|
|
}
|
|
if m.ST_TLTimeIndefinite != ST_TLTimeIndefiniteUnset {
|
|
e.EncodeToken(xml.CharData(m.ST_TLTimeIndefinite.String()))
|
|
}
|
|
return e.EncodeToken(xml.EndElement{Name: start.Name})
|
|
}
|
|
|
|
func (m *ST_TLTimeAnimateValueTime) ValidateWithPath(path string) error {
|
|
mems := []string{}
|
|
if m.ST_PositiveFixedPercentage != nil {
|
|
if err := m.ST_PositiveFixedPercentage.ValidateWithPath(path + "/ST_PositiveFixedPercentage"); err != nil {
|
|
return err
|
|
}
|
|
mems = append(mems, "ST_PositiveFixedPercentage")
|
|
}
|
|
if m.ST_TLTimeIndefinite != ST_TLTimeIndefiniteUnset {
|
|
mems = append(mems, "ST_TLTimeIndefinite")
|
|
}
|
|
if len(mems) > 1 {
|
|
return fmt.Errorf("%s too many members set: %v", path, mems)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m ST_TLTimeAnimateValueTime) String() string {
|
|
if m.ST_PositiveFixedPercentage != nil {
|
|
return m.ST_PositiveFixedPercentage.String()
|
|
}
|
|
if m.ST_TLTimeIndefinite != ST_TLTimeIndefiniteUnset {
|
|
return m.ST_TLTimeIndefinite.String()
|
|
}
|
|
return ""
|
|
}
|