unioffice/schema/purl.org/dc/terms/ElementsAndRefinementsGroupChoice.go

84 lines
2.3 KiB
Go

// Copyright 2017 FoxyUtils ehf. 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 terms
import (
"encoding/xml"
"fmt"
"github.com/unidoc/unioffice"
"github.com/unidoc/unioffice/schema/purl.org/dc/elements"
)
type ElementsAndRefinementsGroupChoice struct {
Any []*elements.Any
}
func NewElementsAndRefinementsGroupChoice() *ElementsAndRefinementsGroupChoice {
ret := &ElementsAndRefinementsGroupChoice{}
return ret
}
func (m *ElementsAndRefinementsGroupChoice) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if m.Any != nil {
seany := xml.StartElement{Name: xml.Name{Local: "dc:any"}}
for _, c := range m.Any {
e.EncodeElement(c, seany)
}
}
return nil
}
func (m *ElementsAndRefinementsGroupChoice) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
lElementsAndRefinementsGroupChoice:
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://purl.org/dc/elements/1.1/", Local: "any"}:
tmp := elements.NewAny()
if err := d.DecodeElement(tmp, &el); err != nil {
return err
}
m.Any = append(m.Any, tmp)
default:
unioffice.Log("skipping unsupported element on ElementsAndRefinementsGroupChoice %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lElementsAndRefinementsGroupChoice
case xml.CharData:
}
}
return nil
}
// Validate validates the ElementsAndRefinementsGroupChoice and its children
func (m *ElementsAndRefinementsGroupChoice) Validate() error {
return m.ValidateWithPath("ElementsAndRefinementsGroupChoice")
}
// ValidateWithPath validates the ElementsAndRefinementsGroupChoice and its children, prefixing error messages with path
func (m *ElementsAndRefinementsGroupChoice) ValidateWithPath(path string) error {
for i, v := range m.Any {
if err := v.ValidateWithPath(fmt.Sprintf("%s/Any[%d]", path, i)); err != nil {
return err
}
}
return nil
}