2017-08-28 20:56:18 -05:00
|
|
|
// Copyright 2017 Baliance. All rights reserved.
|
|
|
|
//
|
2017-09-09 10:21:47 -05:00
|
|
|
// DO NOT EDIT: generated by gooxml ECMA-376 generator
|
|
|
|
//
|
2017-08-28 20:56:18 -05:00
|
|
|
// 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 elements
|
|
|
|
|
|
|
|
import "baliance.com/gooxml"
|
|
|
|
|
2017-09-01 15:19:23 -05:00
|
|
|
// init registers constructor functions for dynamically creating elements based off the XML namespace and name
|
2017-08-28 20:56:18 -05:00
|
|
|
func init() {
|
|
|
|
gooxml.RegisterConstructor("http://purl.org/dc/elements/1.1/", "SimpleLiteral", NewSimpleLiteral)
|
|
|
|
gooxml.RegisterConstructor("http://purl.org/dc/elements/1.1/", "elementContainer", NewElementContainer)
|
2017-08-29 16:55:03 -05:00
|
|
|
gooxml.RegisterConstructor("http://purl.org/dc/elements/1.1/", "any", NewAny)
|
2017-08-28 20:56:18 -05:00
|
|
|
gooxml.RegisterConstructor("http://purl.org/dc/elements/1.1/", "elementsGroup", NewElementsGroup)
|
|
|
|
}
|