models

package
v0.0.0-...-14627f3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 21, 2025 License: MIT Imports: 45 Imported by: 0

Documentation

Overview

Default generated models package docs (at least one file is necessary in a models package)

generated code - do not edit

generated boilerplate code edit the file for adding other stages

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

Index

Constants

View Source
const IdentifiersDecls = `
	{{Identifier}} := (&models.{{GeneratedStructName}}{}).Stage(stage)`
View Source
const MetaFieldStructInitStatement = `
	{{Identifier}}.{{GeneratedFieldName}} = ` + `{{GeneratedFieldNameValue}}`
View Source
const NoteOnEnumValues = ""

GONGDOC(NoteOnEnumValues): Note on the Enumeration Values

Instances of models.DATATYPE_DEFINITION_ENUMERATION, points to models.A_SPECIFIED_VALUES which have the slice of possible models.ENUM_VALUE

The models.ENUM_VALUE has an models.ENUM_VALUE.Identifier field which is used by models.A_ENUM_VALUE_REF when used as a value

View Source
const NumberInitStatement = `
	{{Identifier}}.{{GeneratedFieldName}} = {{GeneratedFieldNameValue}}`
View Source
const PointerFieldInitStatement = `
	{{Identifier}}.{{GeneratedFieldName}} = {{GeneratedFieldNameValue}}`
View Source
const ProbeFormSuffix = ":form of the probe"
View Source
const ProbeSplitSuffix = ":probe of the probe"
View Source
const ProbeTableSuffix = ":table of the probe"
View Source
const ProbeTreeSidebarSuffix = ":sidebar of the probe"
View Source
const SliceOfPointersFieldInitStatement = `
	{{Identifier}}.{{GeneratedFieldName}} = append({{Identifier}}.{{GeneratedFieldName}}, {{GeneratedFieldNameValue}})`
View Source
const StringEnumInitStatement = `
	{{Identifier}}.{{GeneratedFieldName}} = {{GeneratedFieldNameValue}}`
View Source
const StringInitStatement = `
	{{Identifier}}.{{GeneratedFieldName}} = ` + "`" + `{{GeneratedFieldNameValue}}` + "`"
View Source
const TimeInitStatement = `` /* 129-byte string literal not displayed */

Variables

This section is empty.

Functions

func AddIconForEditabilityOfAttribute

func AddIconForEditabilityOfAttribute(attributeIS_EDITABLE bool, attributeLONG_NAME string, nodeAttribute *tree.Node)

func AfterCreateFromFront

func AfterCreateFromFront[Type Gongstruct](stage *Stage, instance *Type)

AfterCreateFromFront is called after a create from front

func AfterDeleteFromFront

func AfterDeleteFromFront[Type Gongstruct](stage *Stage, staged, front *Type)

AfterDeleteFromFront is called after a delete from front

func AfterReadFromFront

func AfterReadFromFront[Type Gongstruct](stage *Stage, instance *Type)

AfterReadFromFront is called after a Read from front

func ApplyDiff

func ApplyDiff(b, c string) (string, error)

ApplyDiff applies a git-style unified diff c to string b to reconstruct string a

func CompareGongstructByName

func CompareGongstructByName[T PointerToGongstruct](a, b T) int

func ComputeDiff

func ComputeDiff(a, b string) string

ComputeDiff generates a git-style unified diff from string a to string b

func CopyBranch

func CopyBranch[Type Gongstruct](from *Type) (to *Type)

CopyBranch stages instance and apply CopyBranch on all gongstruct instances that are referenced by pointers or slices of pointers of the instance

the algorithm stops along the course of graph if a vertex is already staged

func GetAssociationName

func GetAssociationName[Type Gongstruct]() *Type

GetAssociationName is a generic function that returns an instance of Type where each association is filled with an instance whose name is the name of the association

This function can be handy for generating navigation function that are refactorable

func GetAttributeDefinitionIsDisplayedInSubject

func GetAttributeDefinitionIsDisplayedInSubject[Attr Attribute](stager *Stager, attribute Attr) (res bool)

func GetAttributeDefinitionIsDisplayedInTitle

func GetAttributeDefinitionIsDisplayedInTitle[Attr Attribute](stager *Stager, attribute Attr) (res bool)

func GetFields

func GetFields[Type Gongstruct]() (res []string)

GetFields return the array of the fields

func GetFieldsFromPointer

func GetFieldsFromPointer[Type PointerToGongstruct]() (res []string)

GetFieldsFromPointer return the array of the fields

func GetGongstrucsSorted

func GetGongstrucsSorted[T PointerToGongstruct](stage *Stage) (sortedSlice []T)

func GetGongstructInstancesMap

func GetGongstructInstancesMap[Type Gongstruct](stage *Stage) *map[string]*Type

GetGongstructInstancesMap returns the map of staged GongstructType instances it is usefull because it allows refactoring of gong struct identifier

func GetGongstructInstancesSet

func GetGongstructInstancesSet[Type Gongstruct](stage *Stage) *map[*Type]any

GetGongstructInstancesSet returns the set staged GongstructType instances it is usefull because it allows refactoring of gongstruct identifier

func GetGongstructInstancesSetFromPointerType

func GetGongstructInstancesSetFromPointerType[Type PointerToGongstruct](stage *Stage) *map[Type]any

GetGongstructInstancesSetFromPointerType returns the set staged GongstructType instances it is usefull because it allows refactoring of gongstruct identifier

func GetGongstructName

func GetGongstructName[Type Gongstruct]() (res string)

GetGongstructName returns the name of the Gongstruct this can be usefull if one want program robust to refactoring

func GetNamedStructInstances

func GetNamedStructInstances[T PointerToGongstruct](set map[T]any, order map[T]uint) (res []string)

func GetOrder

func GetOrder[Type Gongstruct](stage *Stage, instance *Type) uint

func GetOrderPointerGongstruct

func GetOrderPointerGongstruct[Type PointerToGongstruct](stage *Stage, instance Type) uint

func GetPointerReverseMap

func GetPointerReverseMap[Start, End Gongstruct](fieldname string, stage *Stage) map[*End][]*Start

GetPointerReverseMap allows backtrack navigation of any Start.Fieldname associations (0..1) that is a pointer from one staged Gongstruct (type Start) instances to another (type End)

The function provides a map with keys as instances of End and values to arrays of *Start the map is construed by iterating over all Start instances and populationg keys with End instances and values with slice of Start instances

func GetPointerToGongstructName

func GetPointerToGongstructName[Type PointerToGongstruct]() (res string)

GetPointerToGongstructName returns the name of the Gongstruct this can be usefull if one want program robust to refactoring

func GetReverseFieldOwner

func GetReverseFieldOwner[T Gongstruct](
	stage *Stage,
	instance *T,
	reverseField *ReverseField) (res any)

func GetReverseFieldOwnerName

func GetReverseFieldOwnerName(
	stage *Stage,
	instance any,
	reverseField *ReverseField) (res string)

func GetSliceOfPointersReverseMap

func GetSliceOfPointersReverseMap[Start, End Gongstruct](fieldname string, stage *Stage) map[*End][]*Start

GetSliceOfPointersReverseMap allows backtrack navigation of any Start.Fieldname associations (0..N) between one staged Gongstruct instances and many others

The function provides a map with keys as instances of End and values to *Start instances the map is construed by iterating over all Start instances and populating keys with End instances and values with the Start instances

func GetStructInstancesByOrder

func GetStructInstancesByOrder[T PointerToGongstruct](set map[T]any, order map[T]uint) (res []T)

func GetStructInstancesByOrderAuto

func GetStructInstancesByOrderAuto[T PointerToGongstruct](stage *Stage) (res []T)

func GongGetMap

func GongGetMap[Type GongstructMapString](stage *Stage) *Type

GongGetMap returns the map of staged GongstructType instances it is usefull because it allows refactoring of gong struct identifier

func GongGetSet

func GongGetSet[Type GongstructSet](stage *Stage) *Type

GongGetSet returns the set staged GongstructType instances it is usefull because it allows refactoring of gong struct identifier

func IntToLetters

func IntToLetters(number int32) (letters string)

func IsStaged

func IsStaged[Type Gongstruct](stage *Stage, instance *Type) (ok bool)

func OnAfterUpdateFromFront

func OnAfterUpdateFromFront[Type Gongstruct](stage *Stage, old, new *Type, mouseEvent *Gong__MouseEvent)

OnAfterUpdateFromFront is called after a update from front

func ParseAstEmbeddedFile

func ParseAstEmbeddedFile(stage *Stage, directory embed.FS, pathToFile string) error

ParseAstEmbeddedFile parses the Go source code from an embedded file specified by pathToFile within the provided embed.FS directory and stages instances declared in the file using the provided Stage.

Parameters:

stage:      The staging area to populate.
directory:  The embedded filesystem containing the file.
pathToFile: The path to the Go source file within the embedded filesystem.

Returns:

An error if reading or parsing the file fails, or if ParseAstFileFromAst fails.

func ParseAstFile

func ParseAstFile(stage *Stage, pathToFile string) error

ParseAstFile Parse pathToFile and stages all instances declared in the file

func ParseAstFileFromAst

func ParseAstFileFromAst(stage *Stage, inFile *ast.File, fset *token.FileSet) error

ParseAstFile Parse pathToFile and stages all instances declared in the file

func ParseAstFromBytes

func ParseAstFromBytes(stage *Stage, input []byte) error

func ReplaceOldDeclarationsInFile

func ReplaceOldDeclarationsInFile(pathToFile string) error

ReplaceOldDeclarationsInFile replaces specific text in a file at the given path.

func Serialize

func Serialize[Type Gongstruct](stage *Stage, tab Tabulator)

func SerializeExcelize

func SerializeExcelize[Type Gongstruct](stage *Stage, f *excelize.File)

func SerializeExcelizePointerToGongstruct

func SerializeExcelizePointerToGongstruct[Type PointerToGongstruct](stage *Stage, f *excelize.File)

func SerializeStage

func SerializeStage(stage *Stage, filename string)

func SetCallbackAfterCreateFromFront

func SetCallbackAfterCreateFromFront[Type Gongstruct](stage *Stage, callback OnAfterCreateInterface[Type])

func SetCallbackAfterDeleteFromFront

func SetCallbackAfterDeleteFromFront[Type Gongstruct](stage *Stage, callback OnAfterDeleteInterface[Type])

func SetCallbackAfterReadFromFront

func SetCallbackAfterReadFromFront[Type Gongstruct](stage *Stage, callback OnAfterReadInterface[Type])

func SetCallbackAfterUpdateFromFront

func SetCallbackAfterUpdateFromFront[Type Gongstruct](stage *Stage, callback OnAfterUpdateInterface[Type])

SetCallbackAfterUpdateFromFront is a function to set up callback that is robust to refactoring

func SetOrchestratorOnAfterUpdate

func SetOrchestratorOnAfterUpdate[Type Gongstruct](stage *Stage)

func SetOrchestratorOnAfterUpdateWithMouseEvent

func SetOrchestratorOnAfterUpdateWithMouseEvent[Type Gongstruct](stage *Stage)

func SortGongstructSetByName

func SortGongstructSetByName[T PointerToGongstruct](set map[T]any) (sortedSlice []T)

func StageBranch

func StageBranch[Type Gongstruct](stage *Stage, instance *Type)

StageBranch stages instance and apply StageBranch on all gongstruct instances that are referenced by pointers or slices of pointers of the instance

the algorithm stops along the course of graph if a vertex is already staged

func UnmarshallGongstructStaging

func UnmarshallGongstructStaging(stage *Stage, cmap *ast.CommentMap, assignStmt *ast.AssignStmt, astCoordinate_ string) (
	instance any,
	identifier string,
	gongstructName string,
	fieldName string)

UnmarshallGoStaging unmarshall a go assign statement

func UnstageBranch

func UnstageBranch[Type Gongstruct](stage *Stage, instance *Type)

UnstageBranch stages instance and apply UnstageBranch on all gongstruct instances that are referenced by pointers or slices of pointers of the insance

the algorithm stops along the course of graph if a vertex is already staged

Types

type ALTERNATIVE_ID

type ALTERNATIVE_ID struct {
	Name string `xml:"-"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`
}

ALTERNATIVE_ID Named source named complex type "ALTERNATIVE-ID"

func CopyBranchALTERNATIVE_ID

func CopyBranchALTERNATIVE_ID(mapOrigCopy map[any]any, alternative_idFrom *ALTERNATIVE_ID) (alternative_idTo *ALTERNATIVE_ID)

insertion point for stage branch per struct

func (*ALTERNATIVE_ID) Checkout

func (alternative_id *ALTERNATIVE_ID) Checkout(stage *Stage) *ALTERNATIVE_ID

Checkout alternative_id to the back repo (if it is already staged)

func (*ALTERNATIVE_ID) Commit

func (alternative_id *ALTERNATIVE_ID) Commit(stage *Stage) *ALTERNATIVE_ID

commit alternative_id to the back repo (if it is already staged)

func (*ALTERNATIVE_ID) CommitVoid

func (alternative_id *ALTERNATIVE_ID) CommitVoid(stage *Stage)

func (*ALTERNATIVE_ID) CopyBasicFields

func (from *ALTERNATIVE_ID) CopyBasicFields(to *ALTERNATIVE_ID)

func (*ALTERNATIVE_ID) GetName

func (alternative_id *ALTERNATIVE_ID) GetName() (res string)

for satisfaction of GongStruct interface

func (*ALTERNATIVE_ID) Stage

func (alternative_id *ALTERNATIVE_ID) Stage(stage *Stage) *ALTERNATIVE_ID

insertion point for cumulative sub template with model space calls Stage puts alternative_id to the model stage

func (*ALTERNATIVE_ID) Unstage

func (alternative_id *ALTERNATIVE_ID) Unstage(stage *Stage) *ALTERNATIVE_ID

Unstage removes alternative_id off the model stage

func (*ALTERNATIVE_ID) UnstageVoid

func (alternative_id *ALTERNATIVE_ID) UnstageVoid(stage *Stage)

UnstageVoid removes alternative_id off the model stage

type ALTERNATIVE_ID_WOP

type ALTERNATIVE_ID_WOP struct {
	Name string

	IDENTIFIER string
}

insertion point

type ATTRIBUTE_DEFINITION_BOOLEAN

type ATTRIBUTE_DEFINITION_BOOLEAN struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "IS-EDITABLE
	IS_EDITABLE bool `xml:"IS-EDITABLE,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "DEFAULT-VALUE" of type A_ATTRIBUTE-VALUE-BOOLEAN.
	DEFAULT_VALUE *A_ATTRIBUTE_VALUE_BOOLEAN `xml:"DEFAULT-VALUE,omitempty"`

	// generated from anonymous type within outer element "TYPE" of type A_DATATYPE-DEFINITION-BOOLEAN-REF.
	TYPE *A_DATATYPE_DEFINITION_BOOLEAN_REF `xml:"TYPE,omitempty"`
}

ATTRIBUTE_DEFINITION_BOOLEAN Named source named complex type "ATTRIBUTE-DEFINITION-BOOLEAN"

func CopyBranchATTRIBUTE_DEFINITION_BOOLEAN

func CopyBranchATTRIBUTE_DEFINITION_BOOLEAN(mapOrigCopy map[any]any, attribute_definition_booleanFrom *ATTRIBUTE_DEFINITION_BOOLEAN) (attribute_definition_booleanTo *ATTRIBUTE_DEFINITION_BOOLEAN)

func (*ATTRIBUTE_DEFINITION_BOOLEAN) Checkout

func (attribute_definition_boolean *ATTRIBUTE_DEFINITION_BOOLEAN) Checkout(stage *Stage) *ATTRIBUTE_DEFINITION_BOOLEAN

Checkout attribute_definition_boolean to the back repo (if it is already staged)

func (*ATTRIBUTE_DEFINITION_BOOLEAN) Commit

func (attribute_definition_boolean *ATTRIBUTE_DEFINITION_BOOLEAN) Commit(stage *Stage) *ATTRIBUTE_DEFINITION_BOOLEAN

commit attribute_definition_boolean to the back repo (if it is already staged)

func (*ATTRIBUTE_DEFINITION_BOOLEAN) CommitVoid

func (attribute_definition_boolean *ATTRIBUTE_DEFINITION_BOOLEAN) CommitVoid(stage *Stage)

func (*ATTRIBUTE_DEFINITION_BOOLEAN) CopyBasicFields

func (*ATTRIBUTE_DEFINITION_BOOLEAN) GetDatatypeDefinitionRef

func (a *ATTRIBUTE_DEFINITION_BOOLEAN) GetDatatypeDefinitionRef() string

func (*ATTRIBUTE_DEFINITION_BOOLEAN) GetIdentifier

func (a *ATTRIBUTE_DEFINITION_BOOLEAN) GetIdentifier() string

func (*ATTRIBUTE_DEFINITION_BOOLEAN) GetIsEditable

func (a *ATTRIBUTE_DEFINITION_BOOLEAN) GetIsEditable() bool

func (*ATTRIBUTE_DEFINITION_BOOLEAN) GetLongName

func (a *ATTRIBUTE_DEFINITION_BOOLEAN) GetLongName() string

func (*ATTRIBUTE_DEFINITION_BOOLEAN) GetName

func (attribute_definition_boolean *ATTRIBUTE_DEFINITION_BOOLEAN) GetName() (res string)

for satisfaction of GongStruct interface

func (*ATTRIBUTE_DEFINITION_BOOLEAN) Stage

func (attribute_definition_boolean *ATTRIBUTE_DEFINITION_BOOLEAN) Stage(stage *Stage) *ATTRIBUTE_DEFINITION_BOOLEAN

Stage puts attribute_definition_boolean to the model stage

func (*ATTRIBUTE_DEFINITION_BOOLEAN) Unstage

func (attribute_definition_boolean *ATTRIBUTE_DEFINITION_BOOLEAN) Unstage(stage *Stage) *ATTRIBUTE_DEFINITION_BOOLEAN

Unstage removes attribute_definition_boolean off the model stage

func (*ATTRIBUTE_DEFINITION_BOOLEAN) UnstageVoid

func (attribute_definition_boolean *ATTRIBUTE_DEFINITION_BOOLEAN) UnstageVoid(stage *Stage)

UnstageVoid removes attribute_definition_boolean off the model stage

type ATTRIBUTE_DEFINITION_BOOLEAN_WOP

type ATTRIBUTE_DEFINITION_BOOLEAN_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	IS_EDITABLE bool

	LAST_CHANGE string

	LONG_NAME string
}

type ATTRIBUTE_DEFINITION_DATE

type ATTRIBUTE_DEFINITION_DATE struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "IS-EDITABLE
	IS_EDITABLE bool `xml:"IS-EDITABLE,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "DEFAULT-VALUE" of type A_ATTRIBUTE-VALUE-DATE.
	DEFAULT_VALUE *A_ATTRIBUTE_VALUE_DATE `xml:"DEFAULT-VALUE,omitempty"`

	// generated from anonymous type within outer element "TYPE" of type A_DATATYPE-DEFINITION-DATE-REF.
	TYPE *A_DATATYPE_DEFINITION_DATE_REF `xml:"TYPE,omitempty"`
}

ATTRIBUTE_DEFINITION_DATE Named source named complex type "ATTRIBUTE-DEFINITION-DATE"

func CopyBranchATTRIBUTE_DEFINITION_DATE

func CopyBranchATTRIBUTE_DEFINITION_DATE(mapOrigCopy map[any]any, attribute_definition_dateFrom *ATTRIBUTE_DEFINITION_DATE) (attribute_definition_dateTo *ATTRIBUTE_DEFINITION_DATE)

func (*ATTRIBUTE_DEFINITION_DATE) Checkout

func (attribute_definition_date *ATTRIBUTE_DEFINITION_DATE) Checkout(stage *Stage) *ATTRIBUTE_DEFINITION_DATE

Checkout attribute_definition_date to the back repo (if it is already staged)

func (*ATTRIBUTE_DEFINITION_DATE) Commit

func (attribute_definition_date *ATTRIBUTE_DEFINITION_DATE) Commit(stage *Stage) *ATTRIBUTE_DEFINITION_DATE

commit attribute_definition_date to the back repo (if it is already staged)

func (*ATTRIBUTE_DEFINITION_DATE) CommitVoid

func (attribute_definition_date *ATTRIBUTE_DEFINITION_DATE) CommitVoid(stage *Stage)

func (*ATTRIBUTE_DEFINITION_DATE) CopyBasicFields

func (from *ATTRIBUTE_DEFINITION_DATE) CopyBasicFields(to *ATTRIBUTE_DEFINITION_DATE)

func (*ATTRIBUTE_DEFINITION_DATE) GetDatatypeDefinitionRef

func (a *ATTRIBUTE_DEFINITION_DATE) GetDatatypeDefinitionRef() string

func (*ATTRIBUTE_DEFINITION_DATE) GetIdentifier

func (a *ATTRIBUTE_DEFINITION_DATE) GetIdentifier() string

func (*ATTRIBUTE_DEFINITION_DATE) GetIsEditable

func (a *ATTRIBUTE_DEFINITION_DATE) GetIsEditable() bool

func (*ATTRIBUTE_DEFINITION_DATE) GetLongName

func (a *ATTRIBUTE_DEFINITION_DATE) GetLongName() string

func (*ATTRIBUTE_DEFINITION_DATE) GetName

func (attribute_definition_date *ATTRIBUTE_DEFINITION_DATE) GetName() (res string)

for satisfaction of GongStruct interface

func (*ATTRIBUTE_DEFINITION_DATE) Stage

func (attribute_definition_date *ATTRIBUTE_DEFINITION_DATE) Stage(stage *Stage) *ATTRIBUTE_DEFINITION_DATE

Stage puts attribute_definition_date to the model stage

func (*ATTRIBUTE_DEFINITION_DATE) Unstage

func (attribute_definition_date *ATTRIBUTE_DEFINITION_DATE) Unstage(stage *Stage) *ATTRIBUTE_DEFINITION_DATE

Unstage removes attribute_definition_date off the model stage

func (*ATTRIBUTE_DEFINITION_DATE) UnstageVoid

func (attribute_definition_date *ATTRIBUTE_DEFINITION_DATE) UnstageVoid(stage *Stage)

UnstageVoid removes attribute_definition_date off the model stage

type ATTRIBUTE_DEFINITION_DATE_WOP

type ATTRIBUTE_DEFINITION_DATE_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	IS_EDITABLE bool

	LAST_CHANGE string

	LONG_NAME string
}

type ATTRIBUTE_DEFINITION_ENUMERATION

type ATTRIBUTE_DEFINITION_ENUMERATION struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "IS-EDITABLE
	IS_EDITABLE bool `xml:"IS-EDITABLE,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from attribute "MULTI-VALUED
	MULTI_VALUED bool `xml:"MULTI-VALUED,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "DEFAULT-VALUE" of type A_ATTRIBUTE-VALUE-ENUMERATION.
	DEFAULT_VALUE *A_ATTRIBUTE_VALUE_ENUMERATION `xml:"DEFAULT-VALUE,omitempty"`

	// generated from anonymous type within outer element "TYPE" of type A_DATATYPE-DEFINITION-ENUMERATION-REF.
	TYPE *A_DATATYPE_DEFINITION_ENUMERATION_REF `xml:"TYPE,omitempty"`
}

ATTRIBUTE_DEFINITION_ENUMERATION Named source named complex type "ATTRIBUTE-DEFINITION-ENUMERATION"

func CopyBranchATTRIBUTE_DEFINITION_ENUMERATION

func CopyBranchATTRIBUTE_DEFINITION_ENUMERATION(mapOrigCopy map[any]any, attribute_definition_enumerationFrom *ATTRIBUTE_DEFINITION_ENUMERATION) (attribute_definition_enumerationTo *ATTRIBUTE_DEFINITION_ENUMERATION)

func (*ATTRIBUTE_DEFINITION_ENUMERATION) Checkout

func (attribute_definition_enumeration *ATTRIBUTE_DEFINITION_ENUMERATION) Checkout(stage *Stage) *ATTRIBUTE_DEFINITION_ENUMERATION

Checkout attribute_definition_enumeration to the back repo (if it is already staged)

func (*ATTRIBUTE_DEFINITION_ENUMERATION) Commit

func (attribute_definition_enumeration *ATTRIBUTE_DEFINITION_ENUMERATION) Commit(stage *Stage) *ATTRIBUTE_DEFINITION_ENUMERATION

commit attribute_definition_enumeration to the back repo (if it is already staged)

func (*ATTRIBUTE_DEFINITION_ENUMERATION) CommitVoid

func (attribute_definition_enumeration *ATTRIBUTE_DEFINITION_ENUMERATION) CommitVoid(stage *Stage)

func (*ATTRIBUTE_DEFINITION_ENUMERATION) CopyBasicFields

func (*ATTRIBUTE_DEFINITION_ENUMERATION) GetDatatypeDefinitionRef

func (a *ATTRIBUTE_DEFINITION_ENUMERATION) GetDatatypeDefinitionRef() string

func (*ATTRIBUTE_DEFINITION_ENUMERATION) GetIdentifier

func (a *ATTRIBUTE_DEFINITION_ENUMERATION) GetIdentifier() string

func (*ATTRIBUTE_DEFINITION_ENUMERATION) GetIsEditable

func (a *ATTRIBUTE_DEFINITION_ENUMERATION) GetIsEditable() bool

func (*ATTRIBUTE_DEFINITION_ENUMERATION) GetLongName

func (a *ATTRIBUTE_DEFINITION_ENUMERATION) GetLongName() string

func (*ATTRIBUTE_DEFINITION_ENUMERATION) GetName

func (attribute_definition_enumeration *ATTRIBUTE_DEFINITION_ENUMERATION) GetName() (res string)

for satisfaction of GongStruct interface

func (*ATTRIBUTE_DEFINITION_ENUMERATION) Stage

func (attribute_definition_enumeration *ATTRIBUTE_DEFINITION_ENUMERATION) Stage(stage *Stage) *ATTRIBUTE_DEFINITION_ENUMERATION

Stage puts attribute_definition_enumeration to the model stage

func (*ATTRIBUTE_DEFINITION_ENUMERATION) Unstage

func (attribute_definition_enumeration *ATTRIBUTE_DEFINITION_ENUMERATION) Unstage(stage *Stage) *ATTRIBUTE_DEFINITION_ENUMERATION

Unstage removes attribute_definition_enumeration off the model stage

func (*ATTRIBUTE_DEFINITION_ENUMERATION) UnstageVoid

func (attribute_definition_enumeration *ATTRIBUTE_DEFINITION_ENUMERATION) UnstageVoid(stage *Stage)

UnstageVoid removes attribute_definition_enumeration off the model stage

type ATTRIBUTE_DEFINITION_ENUMERATION_WOP

type ATTRIBUTE_DEFINITION_ENUMERATION_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	IS_EDITABLE bool

	LAST_CHANGE string

	LONG_NAME string

	MULTI_VALUED bool
}

type ATTRIBUTE_DEFINITION_INTEGER

type ATTRIBUTE_DEFINITION_INTEGER struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "IS-EDITABLE
	IS_EDITABLE bool `xml:"IS-EDITABLE,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "DEFAULT-VALUE" of type A_ATTRIBUTE-VALUE-INTEGER.
	DEFAULT_VALUE *A_ATTRIBUTE_VALUE_INTEGER `xml:"DEFAULT-VALUE,omitempty"`

	// generated from anonymous type within outer element "TYPE" of type A_DATATYPE-DEFINITION-INTEGER-REF.
	TYPE *A_DATATYPE_DEFINITION_INTEGER_REF `xml:"TYPE,omitempty"`
}

ATTRIBUTE_DEFINITION_INTEGER Named source named complex type "ATTRIBUTE-DEFINITION-INTEGER"

func CopyBranchATTRIBUTE_DEFINITION_INTEGER

func CopyBranchATTRIBUTE_DEFINITION_INTEGER(mapOrigCopy map[any]any, attribute_definition_integerFrom *ATTRIBUTE_DEFINITION_INTEGER) (attribute_definition_integerTo *ATTRIBUTE_DEFINITION_INTEGER)

func (*ATTRIBUTE_DEFINITION_INTEGER) Checkout

func (attribute_definition_integer *ATTRIBUTE_DEFINITION_INTEGER) Checkout(stage *Stage) *ATTRIBUTE_DEFINITION_INTEGER

Checkout attribute_definition_integer to the back repo (if it is already staged)

func (*ATTRIBUTE_DEFINITION_INTEGER) Commit

func (attribute_definition_integer *ATTRIBUTE_DEFINITION_INTEGER) Commit(stage *Stage) *ATTRIBUTE_DEFINITION_INTEGER

commit attribute_definition_integer to the back repo (if it is already staged)

func (*ATTRIBUTE_DEFINITION_INTEGER) CommitVoid

func (attribute_definition_integer *ATTRIBUTE_DEFINITION_INTEGER) CommitVoid(stage *Stage)

func (*ATTRIBUTE_DEFINITION_INTEGER) CopyBasicFields

func (*ATTRIBUTE_DEFINITION_INTEGER) GetDatatypeDefinitionRef

func (a *ATTRIBUTE_DEFINITION_INTEGER) GetDatatypeDefinitionRef() string

func (*ATTRIBUTE_DEFINITION_INTEGER) GetIdentifier

func (a *ATTRIBUTE_DEFINITION_INTEGER) GetIdentifier() string

func (*ATTRIBUTE_DEFINITION_INTEGER) GetIsEditable

func (a *ATTRIBUTE_DEFINITION_INTEGER) GetIsEditable() bool

func (*ATTRIBUTE_DEFINITION_INTEGER) GetLongName

func (a *ATTRIBUTE_DEFINITION_INTEGER) GetLongName() string

func (*ATTRIBUTE_DEFINITION_INTEGER) GetName

func (attribute_definition_integer *ATTRIBUTE_DEFINITION_INTEGER) GetName() (res string)

for satisfaction of GongStruct interface

func (*ATTRIBUTE_DEFINITION_INTEGER) Stage

func (attribute_definition_integer *ATTRIBUTE_DEFINITION_INTEGER) Stage(stage *Stage) *ATTRIBUTE_DEFINITION_INTEGER

Stage puts attribute_definition_integer to the model stage

func (*ATTRIBUTE_DEFINITION_INTEGER) Unstage

func (attribute_definition_integer *ATTRIBUTE_DEFINITION_INTEGER) Unstage(stage *Stage) *ATTRIBUTE_DEFINITION_INTEGER

Unstage removes attribute_definition_integer off the model stage

func (*ATTRIBUTE_DEFINITION_INTEGER) UnstageVoid

func (attribute_definition_integer *ATTRIBUTE_DEFINITION_INTEGER) UnstageVoid(stage *Stage)

UnstageVoid removes attribute_definition_integer off the model stage

type ATTRIBUTE_DEFINITION_INTEGER_WOP

type ATTRIBUTE_DEFINITION_INTEGER_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	IS_EDITABLE bool

	LAST_CHANGE string

	LONG_NAME string
}

type ATTRIBUTE_DEFINITION_REAL

type ATTRIBUTE_DEFINITION_REAL struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "IS-EDITABLE
	IS_EDITABLE bool `xml:"IS-EDITABLE,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "DEFAULT-VALUE" of type A_ATTRIBUTE-VALUE-REAL.
	DEFAULT_VALUE *A_ATTRIBUTE_VALUE_REAL `xml:"DEFAULT-VALUE,omitempty"`

	// generated from anonymous type within outer element "TYPE" of type A_DATATYPE-DEFINITION-REAL-REF.
	TYPE *A_DATATYPE_DEFINITION_REAL_REF `xml:"TYPE,omitempty"`
}

ATTRIBUTE_DEFINITION_REAL Named source named complex type "ATTRIBUTE-DEFINITION-REAL"

func CopyBranchATTRIBUTE_DEFINITION_REAL

func CopyBranchATTRIBUTE_DEFINITION_REAL(mapOrigCopy map[any]any, attribute_definition_realFrom *ATTRIBUTE_DEFINITION_REAL) (attribute_definition_realTo *ATTRIBUTE_DEFINITION_REAL)

func (*ATTRIBUTE_DEFINITION_REAL) Checkout

func (attribute_definition_real *ATTRIBUTE_DEFINITION_REAL) Checkout(stage *Stage) *ATTRIBUTE_DEFINITION_REAL

Checkout attribute_definition_real to the back repo (if it is already staged)

func (*ATTRIBUTE_DEFINITION_REAL) Commit

func (attribute_definition_real *ATTRIBUTE_DEFINITION_REAL) Commit(stage *Stage) *ATTRIBUTE_DEFINITION_REAL

commit attribute_definition_real to the back repo (if it is already staged)

func (*ATTRIBUTE_DEFINITION_REAL) CommitVoid

func (attribute_definition_real *ATTRIBUTE_DEFINITION_REAL) CommitVoid(stage *Stage)

func (*ATTRIBUTE_DEFINITION_REAL) CopyBasicFields

func (from *ATTRIBUTE_DEFINITION_REAL) CopyBasicFields(to *ATTRIBUTE_DEFINITION_REAL)

func (*ATTRIBUTE_DEFINITION_REAL) GetDatatypeDefinitionRef

func (a *ATTRIBUTE_DEFINITION_REAL) GetDatatypeDefinitionRef() string

func (*ATTRIBUTE_DEFINITION_REAL) GetIdentifier

func (a *ATTRIBUTE_DEFINITION_REAL) GetIdentifier() string

func (*ATTRIBUTE_DEFINITION_REAL) GetIsEditable

func (a *ATTRIBUTE_DEFINITION_REAL) GetIsEditable() bool

func (*ATTRIBUTE_DEFINITION_REAL) GetLongName

func (a *ATTRIBUTE_DEFINITION_REAL) GetLongName() string

func (*ATTRIBUTE_DEFINITION_REAL) GetName

func (attribute_definition_real *ATTRIBUTE_DEFINITION_REAL) GetName() (res string)

for satisfaction of GongStruct interface

func (*ATTRIBUTE_DEFINITION_REAL) Stage

func (attribute_definition_real *ATTRIBUTE_DEFINITION_REAL) Stage(stage *Stage) *ATTRIBUTE_DEFINITION_REAL

Stage puts attribute_definition_real to the model stage

func (*ATTRIBUTE_DEFINITION_REAL) Unstage

func (attribute_definition_real *ATTRIBUTE_DEFINITION_REAL) Unstage(stage *Stage) *ATTRIBUTE_DEFINITION_REAL

Unstage removes attribute_definition_real off the model stage

func (*ATTRIBUTE_DEFINITION_REAL) UnstageVoid

func (attribute_definition_real *ATTRIBUTE_DEFINITION_REAL) UnstageVoid(stage *Stage)

UnstageVoid removes attribute_definition_real off the model stage

type ATTRIBUTE_DEFINITION_REAL_WOP

type ATTRIBUTE_DEFINITION_REAL_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	IS_EDITABLE bool

	LAST_CHANGE string

	LONG_NAME string
}

type ATTRIBUTE_DEFINITION_STRING

type ATTRIBUTE_DEFINITION_STRING struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "IS-EDITABLE
	IS_EDITABLE bool `xml:"IS-EDITABLE,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "DEFAULT-VALUE" of type A_ATTRIBUTE-VALUE-STRING.
	DEFAULT_VALUE *A_ATTRIBUTE_VALUE_STRING `xml:"DEFAULT-VALUE,omitempty"`

	// generated from anonymous type within outer element "TYPE" of type A_DATATYPE-DEFINITION-STRING-REF.
	TYPE *A_DATATYPE_DEFINITION_STRING_REF `xml:"TYPE,omitempty"`
}

ATTRIBUTE_DEFINITION_STRING Named source named complex type "ATTRIBUTE-DEFINITION-STRING"

func CopyBranchATTRIBUTE_DEFINITION_STRING

func CopyBranchATTRIBUTE_DEFINITION_STRING(mapOrigCopy map[any]any, attribute_definition_stringFrom *ATTRIBUTE_DEFINITION_STRING) (attribute_definition_stringTo *ATTRIBUTE_DEFINITION_STRING)

func (*ATTRIBUTE_DEFINITION_STRING) Checkout

func (attribute_definition_string *ATTRIBUTE_DEFINITION_STRING) Checkout(stage *Stage) *ATTRIBUTE_DEFINITION_STRING

Checkout attribute_definition_string to the back repo (if it is already staged)

func (*ATTRIBUTE_DEFINITION_STRING) Commit

func (attribute_definition_string *ATTRIBUTE_DEFINITION_STRING) Commit(stage *Stage) *ATTRIBUTE_DEFINITION_STRING

commit attribute_definition_string to the back repo (if it is already staged)

func (*ATTRIBUTE_DEFINITION_STRING) CommitVoid

func (attribute_definition_string *ATTRIBUTE_DEFINITION_STRING) CommitVoid(stage *Stage)

func (*ATTRIBUTE_DEFINITION_STRING) CopyBasicFields

func (from *ATTRIBUTE_DEFINITION_STRING) CopyBasicFields(to *ATTRIBUTE_DEFINITION_STRING)

func (*ATTRIBUTE_DEFINITION_STRING) GetDatatypeDefinitionRef

func (a *ATTRIBUTE_DEFINITION_STRING) GetDatatypeDefinitionRef() string

func (*ATTRIBUTE_DEFINITION_STRING) GetIdentifier

func (a *ATTRIBUTE_DEFINITION_STRING) GetIdentifier() string

func (*ATTRIBUTE_DEFINITION_STRING) GetIsEditable

func (a *ATTRIBUTE_DEFINITION_STRING) GetIsEditable() bool

func (*ATTRIBUTE_DEFINITION_STRING) GetLongName

func (a *ATTRIBUTE_DEFINITION_STRING) GetLongName() string

func (*ATTRIBUTE_DEFINITION_STRING) GetName

func (attribute_definition_string *ATTRIBUTE_DEFINITION_STRING) GetName() (res string)

for satisfaction of GongStruct interface

func (*ATTRIBUTE_DEFINITION_STRING) Stage

func (attribute_definition_string *ATTRIBUTE_DEFINITION_STRING) Stage(stage *Stage) *ATTRIBUTE_DEFINITION_STRING

Stage puts attribute_definition_string to the model stage

func (*ATTRIBUTE_DEFINITION_STRING) Unstage

func (attribute_definition_string *ATTRIBUTE_DEFINITION_STRING) Unstage(stage *Stage) *ATTRIBUTE_DEFINITION_STRING

Unstage removes attribute_definition_string off the model stage

func (*ATTRIBUTE_DEFINITION_STRING) UnstageVoid

func (attribute_definition_string *ATTRIBUTE_DEFINITION_STRING) UnstageVoid(stage *Stage)

UnstageVoid removes attribute_definition_string off the model stage

type ATTRIBUTE_DEFINITION_STRING_WOP

type ATTRIBUTE_DEFINITION_STRING_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	IS_EDITABLE bool

	LAST_CHANGE string

	LONG_NAME string
}

type ATTRIBUTE_DEFINITION_XHTML

type ATTRIBUTE_DEFINITION_XHTML struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "IS-EDITABLE
	IS_EDITABLE bool `xml:"IS-EDITABLE,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "DEFAULT-VALUE" of type A_ATTRIBUTE-VALUE-XHTML.
	DEFAULT_VALUE *A_ATTRIBUTE_VALUE_XHTML `xml:"DEFAULT-VALUE,omitempty"`

	// generated from anonymous type within outer element "TYPE" of type A_DATATYPE-DEFINITION-XHTML-REF.
	TYPE *A_DATATYPE_DEFINITION_XHTML_REF `xml:"TYPE,omitempty"`
}

ATTRIBUTE_DEFINITION_XHTML Named source named complex type "ATTRIBUTE-DEFINITION-XHTML"

func CopyBranchATTRIBUTE_DEFINITION_XHTML

func CopyBranchATTRIBUTE_DEFINITION_XHTML(mapOrigCopy map[any]any, attribute_definition_xhtmlFrom *ATTRIBUTE_DEFINITION_XHTML) (attribute_definition_xhtmlTo *ATTRIBUTE_DEFINITION_XHTML)

func (*ATTRIBUTE_DEFINITION_XHTML) Checkout

func (attribute_definition_xhtml *ATTRIBUTE_DEFINITION_XHTML) Checkout(stage *Stage) *ATTRIBUTE_DEFINITION_XHTML

Checkout attribute_definition_xhtml to the back repo (if it is already staged)

func (*ATTRIBUTE_DEFINITION_XHTML) Commit

func (attribute_definition_xhtml *ATTRIBUTE_DEFINITION_XHTML) Commit(stage *Stage) *ATTRIBUTE_DEFINITION_XHTML

commit attribute_definition_xhtml to the back repo (if it is already staged)

func (*ATTRIBUTE_DEFINITION_XHTML) CommitVoid

func (attribute_definition_xhtml *ATTRIBUTE_DEFINITION_XHTML) CommitVoid(stage *Stage)

func (*ATTRIBUTE_DEFINITION_XHTML) CopyBasicFields

func (from *ATTRIBUTE_DEFINITION_XHTML) CopyBasicFields(to *ATTRIBUTE_DEFINITION_XHTML)

func (*ATTRIBUTE_DEFINITION_XHTML) GetDatatypeDefinitionRef

func (a *ATTRIBUTE_DEFINITION_XHTML) GetDatatypeDefinitionRef() string

func (*ATTRIBUTE_DEFINITION_XHTML) GetIdentifier

func (a *ATTRIBUTE_DEFINITION_XHTML) GetIdentifier() string

func (*ATTRIBUTE_DEFINITION_XHTML) GetIsEditable

func (a *ATTRIBUTE_DEFINITION_XHTML) GetIsEditable() bool

func (*ATTRIBUTE_DEFINITION_XHTML) GetLongName

func (a *ATTRIBUTE_DEFINITION_XHTML) GetLongName() string

func (*ATTRIBUTE_DEFINITION_XHTML) GetName

func (attribute_definition_xhtml *ATTRIBUTE_DEFINITION_XHTML) GetName() (res string)

for satisfaction of GongStruct interface

func (*ATTRIBUTE_DEFINITION_XHTML) Stage

func (attribute_definition_xhtml *ATTRIBUTE_DEFINITION_XHTML) Stage(stage *Stage) *ATTRIBUTE_DEFINITION_XHTML

Stage puts attribute_definition_xhtml to the model stage

func (*ATTRIBUTE_DEFINITION_XHTML) Unstage

func (attribute_definition_xhtml *ATTRIBUTE_DEFINITION_XHTML) Unstage(stage *Stage) *ATTRIBUTE_DEFINITION_XHTML

Unstage removes attribute_definition_xhtml off the model stage

func (*ATTRIBUTE_DEFINITION_XHTML) UnstageVoid

func (attribute_definition_xhtml *ATTRIBUTE_DEFINITION_XHTML) UnstageVoid(stage *Stage)

UnstageVoid removes attribute_definition_xhtml off the model stage

type ATTRIBUTE_DEFINITION_XHTML_WOP

type ATTRIBUTE_DEFINITION_XHTML_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	IS_EDITABLE bool

	LAST_CHANGE string

	LONG_NAME string
}

type ATTRIBUTE_VALUE_BOOLEAN

type ATTRIBUTE_VALUE_BOOLEAN struct {
	Name string `xml:"-"`

	// generated from attribute "THE-VALUE
	THE_VALUE bool `xml:"THE-VALUE,attr,omitempty"`

	// generated from anonymous type within outer element "DEFINITION" of type A_ATTRIBUTE-DEFINITION-BOOLEAN-REF.
	DEFINITION *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF `xml:"DEFINITION,omitempty"`
}

ATTRIBUTE_VALUE_BOOLEAN Named source named complex type "ATTRIBUTE-VALUE-BOOLEAN"

func CopyBranchATTRIBUTE_VALUE_BOOLEAN

func CopyBranchATTRIBUTE_VALUE_BOOLEAN(mapOrigCopy map[any]any, attribute_value_booleanFrom *ATTRIBUTE_VALUE_BOOLEAN) (attribute_value_booleanTo *ATTRIBUTE_VALUE_BOOLEAN)

func (*ATTRIBUTE_VALUE_BOOLEAN) Checkout

func (attribute_value_boolean *ATTRIBUTE_VALUE_BOOLEAN) Checkout(stage *Stage) *ATTRIBUTE_VALUE_BOOLEAN

Checkout attribute_value_boolean to the back repo (if it is already staged)

func (*ATTRIBUTE_VALUE_BOOLEAN) Commit

func (attribute_value_boolean *ATTRIBUTE_VALUE_BOOLEAN) Commit(stage *Stage) *ATTRIBUTE_VALUE_BOOLEAN

commit attribute_value_boolean to the back repo (if it is already staged)

func (*ATTRIBUTE_VALUE_BOOLEAN) CommitVoid

func (attribute_value_boolean *ATTRIBUTE_VALUE_BOOLEAN) CommitVoid(stage *Stage)

func (*ATTRIBUTE_VALUE_BOOLEAN) CopyBasicFields

func (from *ATTRIBUTE_VALUE_BOOLEAN) CopyBasicFields(to *ATTRIBUTE_VALUE_BOOLEAN)

func (*ATTRIBUTE_VALUE_BOOLEAN) GetAttributeDefinitionRef

func (a *ATTRIBUTE_VALUE_BOOLEAN) GetAttributeDefinitionRef() string

func (*ATTRIBUTE_VALUE_BOOLEAN) GetName

func (attribute_value_boolean *ATTRIBUTE_VALUE_BOOLEAN) GetName() (res string)

for satisfaction of GongStruct interface

func (*ATTRIBUTE_VALUE_BOOLEAN) GetValue

func (a *ATTRIBUTE_VALUE_BOOLEAN) GetValue() string

func (*ATTRIBUTE_VALUE_BOOLEAN) Stage

func (attribute_value_boolean *ATTRIBUTE_VALUE_BOOLEAN) Stage(stage *Stage) *ATTRIBUTE_VALUE_BOOLEAN

Stage puts attribute_value_boolean to the model stage

func (*ATTRIBUTE_VALUE_BOOLEAN) Unstage

func (attribute_value_boolean *ATTRIBUTE_VALUE_BOOLEAN) Unstage(stage *Stage) *ATTRIBUTE_VALUE_BOOLEAN

Unstage removes attribute_value_boolean off the model stage

func (*ATTRIBUTE_VALUE_BOOLEAN) UnstageVoid

func (attribute_value_boolean *ATTRIBUTE_VALUE_BOOLEAN) UnstageVoid(stage *Stage)

UnstageVoid removes attribute_value_boolean off the model stage

type ATTRIBUTE_VALUE_BOOLEAN_WOP

type ATTRIBUTE_VALUE_BOOLEAN_WOP struct {
	Name string

	THE_VALUE bool
}

type ATTRIBUTE_VALUE_DATE

type ATTRIBUTE_VALUE_DATE struct {
	Name string `xml:"-"`

	// generated from attribute "THE-VALUE
	THE_VALUE string `xml:"THE-VALUE,attr,omitempty"`

	// generated from anonymous type within outer element "DEFINITION" of type A_ATTRIBUTE-DEFINITION-DATE-REF.
	DEFINITION *A_ATTRIBUTE_DEFINITION_DATE_REF `xml:"DEFINITION,omitempty"`
}

ATTRIBUTE_VALUE_DATE Named source named complex type "ATTRIBUTE-VALUE-DATE"

func CopyBranchATTRIBUTE_VALUE_DATE

func CopyBranchATTRIBUTE_VALUE_DATE(mapOrigCopy map[any]any, attribute_value_dateFrom *ATTRIBUTE_VALUE_DATE) (attribute_value_dateTo *ATTRIBUTE_VALUE_DATE)

func (*ATTRIBUTE_VALUE_DATE) Checkout

func (attribute_value_date *ATTRIBUTE_VALUE_DATE) Checkout(stage *Stage) *ATTRIBUTE_VALUE_DATE

Checkout attribute_value_date to the back repo (if it is already staged)

func (*ATTRIBUTE_VALUE_DATE) Commit

func (attribute_value_date *ATTRIBUTE_VALUE_DATE) Commit(stage *Stage) *ATTRIBUTE_VALUE_DATE

commit attribute_value_date to the back repo (if it is already staged)

func (*ATTRIBUTE_VALUE_DATE) CommitVoid

func (attribute_value_date *ATTRIBUTE_VALUE_DATE) CommitVoid(stage *Stage)

func (*ATTRIBUTE_VALUE_DATE) CopyBasicFields

func (from *ATTRIBUTE_VALUE_DATE) CopyBasicFields(to *ATTRIBUTE_VALUE_DATE)

func (*ATTRIBUTE_VALUE_DATE) GetAttributeDefinitionRef

func (a *ATTRIBUTE_VALUE_DATE) GetAttributeDefinitionRef() string

func (*ATTRIBUTE_VALUE_DATE) GetName

func (attribute_value_date *ATTRIBUTE_VALUE_DATE) GetName() (res string)

for satisfaction of GongStruct interface

func (*ATTRIBUTE_VALUE_DATE) GetValue

func (a *ATTRIBUTE_VALUE_DATE) GetValue() string

func (*ATTRIBUTE_VALUE_DATE) Stage

func (attribute_value_date *ATTRIBUTE_VALUE_DATE) Stage(stage *Stage) *ATTRIBUTE_VALUE_DATE

Stage puts attribute_value_date to the model stage

func (*ATTRIBUTE_VALUE_DATE) Unstage

func (attribute_value_date *ATTRIBUTE_VALUE_DATE) Unstage(stage *Stage) *ATTRIBUTE_VALUE_DATE

Unstage removes attribute_value_date off the model stage

func (*ATTRIBUTE_VALUE_DATE) UnstageVoid

func (attribute_value_date *ATTRIBUTE_VALUE_DATE) UnstageVoid(stage *Stage)

UnstageVoid removes attribute_value_date off the model stage

type ATTRIBUTE_VALUE_DATE_WOP

type ATTRIBUTE_VALUE_DATE_WOP struct {
	Name string

	THE_VALUE string
}

type ATTRIBUTE_VALUE_ENUMERATION

type ATTRIBUTE_VALUE_ENUMERATION struct {
	Name string `xml:"-"`

	// generated from anonymous type within outer element "DEFINITION" of type A_ATTRIBUTE-DEFINITION-ENUMERATION-REF.
	DEFINITION *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF `xml:"DEFINITION,omitempty"`

	// generated from anonymous type within outer element "VALUES" of type A_ENUM-VALUE-REF.
	VALUES *A_ENUM_VALUE_REF `xml:"VALUES,omitempty"`
}

ATTRIBUTE_VALUE_ENUMERATION Named source named complex type "ATTRIBUTE-VALUE-ENUMERATION"

func CopyBranchATTRIBUTE_VALUE_ENUMERATION

func CopyBranchATTRIBUTE_VALUE_ENUMERATION(mapOrigCopy map[any]any, attribute_value_enumerationFrom *ATTRIBUTE_VALUE_ENUMERATION) (attribute_value_enumerationTo *ATTRIBUTE_VALUE_ENUMERATION)

func (*ATTRIBUTE_VALUE_ENUMERATION) Checkout

func (attribute_value_enumeration *ATTRIBUTE_VALUE_ENUMERATION) Checkout(stage *Stage) *ATTRIBUTE_VALUE_ENUMERATION

Checkout attribute_value_enumeration to the back repo (if it is already staged)

func (*ATTRIBUTE_VALUE_ENUMERATION) Commit

func (attribute_value_enumeration *ATTRIBUTE_VALUE_ENUMERATION) Commit(stage *Stage) *ATTRIBUTE_VALUE_ENUMERATION

commit attribute_value_enumeration to the back repo (if it is already staged)

func (*ATTRIBUTE_VALUE_ENUMERATION) CommitVoid

func (attribute_value_enumeration *ATTRIBUTE_VALUE_ENUMERATION) CommitVoid(stage *Stage)

func (*ATTRIBUTE_VALUE_ENUMERATION) CopyBasicFields

func (from *ATTRIBUTE_VALUE_ENUMERATION) CopyBasicFields(to *ATTRIBUTE_VALUE_ENUMERATION)

func (*ATTRIBUTE_VALUE_ENUMERATION) GetAttributeDefinitionRef

func (a *ATTRIBUTE_VALUE_ENUMERATION) GetAttributeDefinitionRef() string

func (*ATTRIBUTE_VALUE_ENUMERATION) GetName

func (attribute_value_enumeration *ATTRIBUTE_VALUE_ENUMERATION) GetName() (res string)

for satisfaction of GongStruct interface

func (*ATTRIBUTE_VALUE_ENUMERATION) GetValue

func (a *ATTRIBUTE_VALUE_ENUMERATION) GetValue() string

func (*ATTRIBUTE_VALUE_ENUMERATION) Stage

func (attribute_value_enumeration *ATTRIBUTE_VALUE_ENUMERATION) Stage(stage *Stage) *ATTRIBUTE_VALUE_ENUMERATION

Stage puts attribute_value_enumeration to the model stage

func (*ATTRIBUTE_VALUE_ENUMERATION) Unstage

func (attribute_value_enumeration *ATTRIBUTE_VALUE_ENUMERATION) Unstage(stage *Stage) *ATTRIBUTE_VALUE_ENUMERATION

Unstage removes attribute_value_enumeration off the model stage

func (*ATTRIBUTE_VALUE_ENUMERATION) UnstageVoid

func (attribute_value_enumeration *ATTRIBUTE_VALUE_ENUMERATION) UnstageVoid(stage *Stage)

UnstageVoid removes attribute_value_enumeration off the model stage

type ATTRIBUTE_VALUE_ENUMERATION_WOP

type ATTRIBUTE_VALUE_ENUMERATION_WOP struct {
	Name string
}

type ATTRIBUTE_VALUE_INTEGER

type ATTRIBUTE_VALUE_INTEGER struct {
	Name string `xml:"-"`

	// generated from attribute "THE-VALUE
	THE_VALUE int `xml:"THE-VALUE,attr,omitempty"`

	// generated from anonymous type within outer element "DEFINITION" of type A_ATTRIBUTE-DEFINITION-INTEGER-REF.
	DEFINITION *A_ATTRIBUTE_DEFINITION_INTEGER_REF `xml:"DEFINITION,omitempty"`
}

ATTRIBUTE_VALUE_INTEGER Named source named complex type "ATTRIBUTE-VALUE-INTEGER"

func CopyBranchATTRIBUTE_VALUE_INTEGER

func CopyBranchATTRIBUTE_VALUE_INTEGER(mapOrigCopy map[any]any, attribute_value_integerFrom *ATTRIBUTE_VALUE_INTEGER) (attribute_value_integerTo *ATTRIBUTE_VALUE_INTEGER)

func (*ATTRIBUTE_VALUE_INTEGER) Checkout

func (attribute_value_integer *ATTRIBUTE_VALUE_INTEGER) Checkout(stage *Stage) *ATTRIBUTE_VALUE_INTEGER

Checkout attribute_value_integer to the back repo (if it is already staged)

func (*ATTRIBUTE_VALUE_INTEGER) Commit

func (attribute_value_integer *ATTRIBUTE_VALUE_INTEGER) Commit(stage *Stage) *ATTRIBUTE_VALUE_INTEGER

commit attribute_value_integer to the back repo (if it is already staged)

func (*ATTRIBUTE_VALUE_INTEGER) CommitVoid

func (attribute_value_integer *ATTRIBUTE_VALUE_INTEGER) CommitVoid(stage *Stage)

func (*ATTRIBUTE_VALUE_INTEGER) CopyBasicFields

func (from *ATTRIBUTE_VALUE_INTEGER) CopyBasicFields(to *ATTRIBUTE_VALUE_INTEGER)

func (*ATTRIBUTE_VALUE_INTEGER) GetAttributeDefinitionRef

func (a *ATTRIBUTE_VALUE_INTEGER) GetAttributeDefinitionRef() string

func (*ATTRIBUTE_VALUE_INTEGER) GetName

func (attribute_value_integer *ATTRIBUTE_VALUE_INTEGER) GetName() (res string)

for satisfaction of GongStruct interface

func (*ATTRIBUTE_VALUE_INTEGER) GetValue

func (a *ATTRIBUTE_VALUE_INTEGER) GetValue() string

func (*ATTRIBUTE_VALUE_INTEGER) Stage

func (attribute_value_integer *ATTRIBUTE_VALUE_INTEGER) Stage(stage *Stage) *ATTRIBUTE_VALUE_INTEGER

Stage puts attribute_value_integer to the model stage

func (*ATTRIBUTE_VALUE_INTEGER) Unstage

func (attribute_value_integer *ATTRIBUTE_VALUE_INTEGER) Unstage(stage *Stage) *ATTRIBUTE_VALUE_INTEGER

Unstage removes attribute_value_integer off the model stage

func (*ATTRIBUTE_VALUE_INTEGER) UnstageVoid

func (attribute_value_integer *ATTRIBUTE_VALUE_INTEGER) UnstageVoid(stage *Stage)

UnstageVoid removes attribute_value_integer off the model stage

type ATTRIBUTE_VALUE_INTEGER_WOP

type ATTRIBUTE_VALUE_INTEGER_WOP struct {
	Name string

	THE_VALUE int
}

type ATTRIBUTE_VALUE_REAL

type ATTRIBUTE_VALUE_REAL struct {
	Name string `xml:"-"`

	// generated from attribute "THE-VALUE
	THE_VALUE float64 `xml:"THE-VALUE,attr,omitempty"`

	// generated from anonymous type within outer element "DEFINITION" of type A_ATTRIBUTE-DEFINITION-REAL-REF.
	DEFINITION *A_ATTRIBUTE_DEFINITION_REAL_REF `xml:"DEFINITION,omitempty"`
}

ATTRIBUTE_VALUE_REAL Named source named complex type "ATTRIBUTE-VALUE-REAL"

func CopyBranchATTRIBUTE_VALUE_REAL

func CopyBranchATTRIBUTE_VALUE_REAL(mapOrigCopy map[any]any, attribute_value_realFrom *ATTRIBUTE_VALUE_REAL) (attribute_value_realTo *ATTRIBUTE_VALUE_REAL)

func (*ATTRIBUTE_VALUE_REAL) Checkout

func (attribute_value_real *ATTRIBUTE_VALUE_REAL) Checkout(stage *Stage) *ATTRIBUTE_VALUE_REAL

Checkout attribute_value_real to the back repo (if it is already staged)

func (*ATTRIBUTE_VALUE_REAL) Commit

func (attribute_value_real *ATTRIBUTE_VALUE_REAL) Commit(stage *Stage) *ATTRIBUTE_VALUE_REAL

commit attribute_value_real to the back repo (if it is already staged)

func (*ATTRIBUTE_VALUE_REAL) CommitVoid

func (attribute_value_real *ATTRIBUTE_VALUE_REAL) CommitVoid(stage *Stage)

func (*ATTRIBUTE_VALUE_REAL) CopyBasicFields

func (from *ATTRIBUTE_VALUE_REAL) CopyBasicFields(to *ATTRIBUTE_VALUE_REAL)

func (*ATTRIBUTE_VALUE_REAL) GetAttributeDefinitionRef

func (a *ATTRIBUTE_VALUE_REAL) GetAttributeDefinitionRef() string

func (*ATTRIBUTE_VALUE_REAL) GetName

func (attribute_value_real *ATTRIBUTE_VALUE_REAL) GetName() (res string)

for satisfaction of GongStruct interface

func (*ATTRIBUTE_VALUE_REAL) GetValue

func (a *ATTRIBUTE_VALUE_REAL) GetValue() string

func (*ATTRIBUTE_VALUE_REAL) Stage

func (attribute_value_real *ATTRIBUTE_VALUE_REAL) Stage(stage *Stage) *ATTRIBUTE_VALUE_REAL

Stage puts attribute_value_real to the model stage

func (*ATTRIBUTE_VALUE_REAL) Unstage

func (attribute_value_real *ATTRIBUTE_VALUE_REAL) Unstage(stage *Stage) *ATTRIBUTE_VALUE_REAL

Unstage removes attribute_value_real off the model stage

func (*ATTRIBUTE_VALUE_REAL) UnstageVoid

func (attribute_value_real *ATTRIBUTE_VALUE_REAL) UnstageVoid(stage *Stage)

UnstageVoid removes attribute_value_real off the model stage

type ATTRIBUTE_VALUE_REAL_WOP

type ATTRIBUTE_VALUE_REAL_WOP struct {
	Name string

	THE_VALUE float64
}

type ATTRIBUTE_VALUE_STRING

type ATTRIBUTE_VALUE_STRING struct {
	Name string `xml:"-"`

	// generated from attribute "THE-VALUE
	THE_VALUE string `xml:"THE-VALUE,attr,omitempty"`

	// generated from anonymous type within outer element "DEFINITION" of type A_ATTRIBUTE-DEFINITION-STRING-REF.
	DEFINITION *A_ATTRIBUTE_DEFINITION_STRING_REF `xml:"DEFINITION,omitempty"`
}

ATTRIBUTE_VALUE_STRING Named source named complex type "ATTRIBUTE-VALUE-STRING"

func CopyBranchATTRIBUTE_VALUE_STRING

func CopyBranchATTRIBUTE_VALUE_STRING(mapOrigCopy map[any]any, attribute_value_stringFrom *ATTRIBUTE_VALUE_STRING) (attribute_value_stringTo *ATTRIBUTE_VALUE_STRING)

func (*ATTRIBUTE_VALUE_STRING) Checkout

func (attribute_value_string *ATTRIBUTE_VALUE_STRING) Checkout(stage *Stage) *ATTRIBUTE_VALUE_STRING

Checkout attribute_value_string to the back repo (if it is already staged)

func (*ATTRIBUTE_VALUE_STRING) Commit

func (attribute_value_string *ATTRIBUTE_VALUE_STRING) Commit(stage *Stage) *ATTRIBUTE_VALUE_STRING

commit attribute_value_string to the back repo (if it is already staged)

func (*ATTRIBUTE_VALUE_STRING) CommitVoid

func (attribute_value_string *ATTRIBUTE_VALUE_STRING) CommitVoid(stage *Stage)

func (*ATTRIBUTE_VALUE_STRING) CopyBasicFields

func (from *ATTRIBUTE_VALUE_STRING) CopyBasicFields(to *ATTRIBUTE_VALUE_STRING)

func (*ATTRIBUTE_VALUE_STRING) GetAttributeDefinitionRef

func (a *ATTRIBUTE_VALUE_STRING) GetAttributeDefinitionRef() string

func (*ATTRIBUTE_VALUE_STRING) GetName

func (attribute_value_string *ATTRIBUTE_VALUE_STRING) GetName() (res string)

for satisfaction of GongStruct interface

func (*ATTRIBUTE_VALUE_STRING) GetValue

func (a *ATTRIBUTE_VALUE_STRING) GetValue() string

func (*ATTRIBUTE_VALUE_STRING) Stage

func (attribute_value_string *ATTRIBUTE_VALUE_STRING) Stage(stage *Stage) *ATTRIBUTE_VALUE_STRING

Stage puts attribute_value_string to the model stage

func (*ATTRIBUTE_VALUE_STRING) Unstage

func (attribute_value_string *ATTRIBUTE_VALUE_STRING) Unstage(stage *Stage) *ATTRIBUTE_VALUE_STRING

Unstage removes attribute_value_string off the model stage

func (*ATTRIBUTE_VALUE_STRING) UnstageVoid

func (attribute_value_string *ATTRIBUTE_VALUE_STRING) UnstageVoid(stage *Stage)

UnstageVoid removes attribute_value_string off the model stage

type ATTRIBUTE_VALUE_STRING_WOP

type ATTRIBUTE_VALUE_STRING_WOP struct {
	Name string

	THE_VALUE string
}

type ATTRIBUTE_VALUE_XHTML

type ATTRIBUTE_VALUE_XHTML struct {
	Name string `xml:"-"`

	// generated from attribute "IS-SIMPLIFIED
	IS_SIMPLIFIED bool `xml:"IS-SIMPLIFIED,attr,omitempty"`

	// generated from element "THE-VALUE" of type XHTML-CONTENT order 103 depth 1
	THE_VALUE *XHTML_CONTENT `xml:"THE-VALUE,omitempty"`

	// generated from element "THE-ORIGINAL-VALUE" of type XHTML-CONTENT order 104 depth 1
	THE_ORIGINAL_VALUE *XHTML_CONTENT `xml:"THE-ORIGINAL-VALUE,omitempty"`

	// generated from anonymous type within outer element "DEFINITION" of type A_ATTRIBUTE-DEFINITION-XHTML-REF.
	DEFINITION *A_ATTRIBUTE_DEFINITION_XHTML_REF `xml:"DEFINITION,omitempty"`
}

ATTRIBUTE_VALUE_XHTML Named source named complex type "ATTRIBUTE-VALUE-XHTML"

func CopyBranchATTRIBUTE_VALUE_XHTML

func CopyBranchATTRIBUTE_VALUE_XHTML(mapOrigCopy map[any]any, attribute_value_xhtmlFrom *ATTRIBUTE_VALUE_XHTML) (attribute_value_xhtmlTo *ATTRIBUTE_VALUE_XHTML)

func (*ATTRIBUTE_VALUE_XHTML) Checkout

func (attribute_value_xhtml *ATTRIBUTE_VALUE_XHTML) Checkout(stage *Stage) *ATTRIBUTE_VALUE_XHTML

Checkout attribute_value_xhtml to the back repo (if it is already staged)

func (*ATTRIBUTE_VALUE_XHTML) Commit

func (attribute_value_xhtml *ATTRIBUTE_VALUE_XHTML) Commit(stage *Stage) *ATTRIBUTE_VALUE_XHTML

commit attribute_value_xhtml to the back repo (if it is already staged)

func (*ATTRIBUTE_VALUE_XHTML) CommitVoid

func (attribute_value_xhtml *ATTRIBUTE_VALUE_XHTML) CommitVoid(stage *Stage)

func (*ATTRIBUTE_VALUE_XHTML) CopyBasicFields

func (from *ATTRIBUTE_VALUE_XHTML) CopyBasicFields(to *ATTRIBUTE_VALUE_XHTML)

func (*ATTRIBUTE_VALUE_XHTML) GetAttributeDefinitionRef

func (a *ATTRIBUTE_VALUE_XHTML) GetAttributeDefinitionRef() string

func (*ATTRIBUTE_VALUE_XHTML) GetName

func (attribute_value_xhtml *ATTRIBUTE_VALUE_XHTML) GetName() (res string)

for satisfaction of GongStruct interface

func (*ATTRIBUTE_VALUE_XHTML) GetValue

func (a *ATTRIBUTE_VALUE_XHTML) GetValue() string

func (*ATTRIBUTE_VALUE_XHTML) Stage

func (attribute_value_xhtml *ATTRIBUTE_VALUE_XHTML) Stage(stage *Stage) *ATTRIBUTE_VALUE_XHTML

Stage puts attribute_value_xhtml to the model stage

func (*ATTRIBUTE_VALUE_XHTML) Unstage

func (attribute_value_xhtml *ATTRIBUTE_VALUE_XHTML) Unstage(stage *Stage) *ATTRIBUTE_VALUE_XHTML

Unstage removes attribute_value_xhtml off the model stage

func (*ATTRIBUTE_VALUE_XHTML) UnstageVoid

func (attribute_value_xhtml *ATTRIBUTE_VALUE_XHTML) UnstageVoid(stage *Stage)

UnstageVoid removes attribute_value_xhtml off the model stage

type ATTRIBUTE_VALUE_XHTML_WOP

type ATTRIBUTE_VALUE_XHTML_WOP struct {
	Name string

	IS_SIMPLIFIED bool
}

type A_ALTERNATIVE_ID

type A_ALTERNATIVE_ID struct {
	Name string `xml:"-"`

	// generated from element "ALTERNATIVE-ID" of type ALTERNATIVE-ID order 8 depth 3
	ALTERNATIVE_ID *ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`
}

A_ALTERNATIVE_ID Named source within outer element "ALTERNATIVE-ID"

func CopyBranchA_ALTERNATIVE_ID

func CopyBranchA_ALTERNATIVE_ID(mapOrigCopy map[any]any, a_alternative_idFrom *A_ALTERNATIVE_ID) (a_alternative_idTo *A_ALTERNATIVE_ID)

func (*A_ALTERNATIVE_ID) Checkout

func (a_alternative_id *A_ALTERNATIVE_ID) Checkout(stage *Stage) *A_ALTERNATIVE_ID

Checkout a_alternative_id to the back repo (if it is already staged)

func (*A_ALTERNATIVE_ID) Commit

func (a_alternative_id *A_ALTERNATIVE_ID) Commit(stage *Stage) *A_ALTERNATIVE_ID

commit a_alternative_id to the back repo (if it is already staged)

func (*A_ALTERNATIVE_ID) CommitVoid

func (a_alternative_id *A_ALTERNATIVE_ID) CommitVoid(stage *Stage)

func (*A_ALTERNATIVE_ID) CopyBasicFields

func (from *A_ALTERNATIVE_ID) CopyBasicFields(to *A_ALTERNATIVE_ID)

func (*A_ALTERNATIVE_ID) GetName

func (a_alternative_id *A_ALTERNATIVE_ID) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ALTERNATIVE_ID) Stage

func (a_alternative_id *A_ALTERNATIVE_ID) Stage(stage *Stage) *A_ALTERNATIVE_ID

Stage puts a_alternative_id to the model stage

func (*A_ALTERNATIVE_ID) Unstage

func (a_alternative_id *A_ALTERNATIVE_ID) Unstage(stage *Stage) *A_ALTERNATIVE_ID

Unstage removes a_alternative_id off the model stage

func (*A_ALTERNATIVE_ID) UnstageVoid

func (a_alternative_id *A_ALTERNATIVE_ID) UnstageVoid(stage *Stage)

UnstageVoid removes a_alternative_id off the model stage

type A_ALTERNATIVE_ID_WOP

type A_ALTERNATIVE_ID_WOP struct {
	Name string
}

type A_ATTRIBUTE_DEFINITION_BOOLEAN_REF

type A_ATTRIBUTE_DEFINITION_BOOLEAN_REF struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-DEFINITION-BOOLEAN-REF" of type LOCAL-REF order 78 depth 3
	ATTRIBUTE_DEFINITION_BOOLEAN_REF string `xml:"ATTRIBUTE-DEFINITION-BOOLEAN-REF,omitempty"`
}

A_ATTRIBUTE_DEFINITION_BOOLEAN_REF Named source within outer element "DEFINITION"

func CopyBranchA_ATTRIBUTE_DEFINITION_BOOLEAN_REF

func CopyBranchA_ATTRIBUTE_DEFINITION_BOOLEAN_REF(mapOrigCopy map[any]any, a_attribute_definition_boolean_refFrom *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) (a_attribute_definition_boolean_refTo *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF)

func (*A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) Checkout

func (a_attribute_definition_boolean_ref *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) Checkout(stage *Stage) *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF

Checkout a_attribute_definition_boolean_ref to the back repo (if it is already staged)

func (*A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) Commit

func (a_attribute_definition_boolean_ref *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) Commit(stage *Stage) *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF

commit a_attribute_definition_boolean_ref to the back repo (if it is already staged)

func (*A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) CommitVoid

func (a_attribute_definition_boolean_ref *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) CopyBasicFields

func (*A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) GetName

func (a_attribute_definition_boolean_ref *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) GetRef

func (*A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) Stage

func (a_attribute_definition_boolean_ref *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) Stage(stage *Stage) *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF

Stage puts a_attribute_definition_boolean_ref to the model stage

func (*A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) Unstage

func (a_attribute_definition_boolean_ref *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) Unstage(stage *Stage) *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF

Unstage removes a_attribute_definition_boolean_ref off the model stage

func (*A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) UnstageVoid

func (a_attribute_definition_boolean_ref *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_definition_boolean_ref off the model stage

type A_ATTRIBUTE_DEFINITION_BOOLEAN_REF_WOP

type A_ATTRIBUTE_DEFINITION_BOOLEAN_REF_WOP struct {
	Name string

	ATTRIBUTE_DEFINITION_BOOLEAN_REF string
}

type A_ATTRIBUTE_DEFINITION_DATE_REF

type A_ATTRIBUTE_DEFINITION_DATE_REF struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-DEFINITION-DATE-REF" of type LOCAL-REF order 82 depth 3
	ATTRIBUTE_DEFINITION_DATE_REF string `xml:"ATTRIBUTE-DEFINITION-DATE-REF,omitempty"`
}

A_ATTRIBUTE_DEFINITION_DATE_REF Named source within outer element "DEFINITION"

func CopyBranchA_ATTRIBUTE_DEFINITION_DATE_REF

func CopyBranchA_ATTRIBUTE_DEFINITION_DATE_REF(mapOrigCopy map[any]any, a_attribute_definition_date_refFrom *A_ATTRIBUTE_DEFINITION_DATE_REF) (a_attribute_definition_date_refTo *A_ATTRIBUTE_DEFINITION_DATE_REF)

func (*A_ATTRIBUTE_DEFINITION_DATE_REF) Checkout

func (a_attribute_definition_date_ref *A_ATTRIBUTE_DEFINITION_DATE_REF) Checkout(stage *Stage) *A_ATTRIBUTE_DEFINITION_DATE_REF

Checkout a_attribute_definition_date_ref to the back repo (if it is already staged)

func (*A_ATTRIBUTE_DEFINITION_DATE_REF) Commit

func (a_attribute_definition_date_ref *A_ATTRIBUTE_DEFINITION_DATE_REF) Commit(stage *Stage) *A_ATTRIBUTE_DEFINITION_DATE_REF

commit a_attribute_definition_date_ref to the back repo (if it is already staged)

func (*A_ATTRIBUTE_DEFINITION_DATE_REF) CommitVoid

func (a_attribute_definition_date_ref *A_ATTRIBUTE_DEFINITION_DATE_REF) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_DEFINITION_DATE_REF) CopyBasicFields

func (*A_ATTRIBUTE_DEFINITION_DATE_REF) GetName

func (a_attribute_definition_date_ref *A_ATTRIBUTE_DEFINITION_DATE_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_DEFINITION_DATE_REF) GetRef

func (*A_ATTRIBUTE_DEFINITION_DATE_REF) Stage

func (a_attribute_definition_date_ref *A_ATTRIBUTE_DEFINITION_DATE_REF) Stage(stage *Stage) *A_ATTRIBUTE_DEFINITION_DATE_REF

Stage puts a_attribute_definition_date_ref to the model stage

func (*A_ATTRIBUTE_DEFINITION_DATE_REF) Unstage

func (a_attribute_definition_date_ref *A_ATTRIBUTE_DEFINITION_DATE_REF) Unstage(stage *Stage) *A_ATTRIBUTE_DEFINITION_DATE_REF

Unstage removes a_attribute_definition_date_ref off the model stage

func (*A_ATTRIBUTE_DEFINITION_DATE_REF) UnstageVoid

func (a_attribute_definition_date_ref *A_ATTRIBUTE_DEFINITION_DATE_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_definition_date_ref off the model stage

type A_ATTRIBUTE_DEFINITION_DATE_REF_WOP

type A_ATTRIBUTE_DEFINITION_DATE_REF_WOP struct {
	Name string

	ATTRIBUTE_DEFINITION_DATE_REF string
}

type A_ATTRIBUTE_DEFINITION_ENUMERATION_REF

type A_ATTRIBUTE_DEFINITION_ENUMERATION_REF struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-DEFINITION-ENUMERATION-REF" of type LOCAL-REF order 86 depth 3
	ATTRIBUTE_DEFINITION_ENUMERATION_REF string `xml:"ATTRIBUTE-DEFINITION-ENUMERATION-REF,omitempty"`
}

A_ATTRIBUTE_DEFINITION_ENUMERATION_REF Named source within outer element "DEFINITION"

func CopyBranchA_ATTRIBUTE_DEFINITION_ENUMERATION_REF

func CopyBranchA_ATTRIBUTE_DEFINITION_ENUMERATION_REF(mapOrigCopy map[any]any, a_attribute_definition_enumeration_refFrom *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) (a_attribute_definition_enumeration_refTo *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF)

func (*A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) Checkout

func (a_attribute_definition_enumeration_ref *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) Checkout(stage *Stage) *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF

Checkout a_attribute_definition_enumeration_ref to the back repo (if it is already staged)

func (*A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) Commit

func (a_attribute_definition_enumeration_ref *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) Commit(stage *Stage) *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF

commit a_attribute_definition_enumeration_ref to the back repo (if it is already staged)

func (*A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) CommitVoid

func (a_attribute_definition_enumeration_ref *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) CopyBasicFields

func (*A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) GetName

func (a_attribute_definition_enumeration_ref *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) GetRef

func (*A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) Stage

func (a_attribute_definition_enumeration_ref *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) Stage(stage *Stage) *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF

Stage puts a_attribute_definition_enumeration_ref to the model stage

func (*A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) Unstage

func (a_attribute_definition_enumeration_ref *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) Unstage(stage *Stage) *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF

Unstage removes a_attribute_definition_enumeration_ref off the model stage

func (*A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) UnstageVoid

func (a_attribute_definition_enumeration_ref *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_definition_enumeration_ref off the model stage

type A_ATTRIBUTE_DEFINITION_ENUMERATION_REF_WOP

type A_ATTRIBUTE_DEFINITION_ENUMERATION_REF_WOP struct {
	Name string

	ATTRIBUTE_DEFINITION_ENUMERATION_REF string
}

type A_ATTRIBUTE_DEFINITION_INTEGER_REF

type A_ATTRIBUTE_DEFINITION_INTEGER_REF struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-DEFINITION-INTEGER-REF" of type LOCAL-REF order 93 depth 3
	ATTRIBUTE_DEFINITION_INTEGER_REF string `xml:"ATTRIBUTE-DEFINITION-INTEGER-REF,omitempty"`
}

A_ATTRIBUTE_DEFINITION_INTEGER_REF Named source within outer element "DEFINITION"

func CopyBranchA_ATTRIBUTE_DEFINITION_INTEGER_REF

func CopyBranchA_ATTRIBUTE_DEFINITION_INTEGER_REF(mapOrigCopy map[any]any, a_attribute_definition_integer_refFrom *A_ATTRIBUTE_DEFINITION_INTEGER_REF) (a_attribute_definition_integer_refTo *A_ATTRIBUTE_DEFINITION_INTEGER_REF)

func (*A_ATTRIBUTE_DEFINITION_INTEGER_REF) Checkout

func (a_attribute_definition_integer_ref *A_ATTRIBUTE_DEFINITION_INTEGER_REF) Checkout(stage *Stage) *A_ATTRIBUTE_DEFINITION_INTEGER_REF

Checkout a_attribute_definition_integer_ref to the back repo (if it is already staged)

func (*A_ATTRIBUTE_DEFINITION_INTEGER_REF) Commit

func (a_attribute_definition_integer_ref *A_ATTRIBUTE_DEFINITION_INTEGER_REF) Commit(stage *Stage) *A_ATTRIBUTE_DEFINITION_INTEGER_REF

commit a_attribute_definition_integer_ref to the back repo (if it is already staged)

func (*A_ATTRIBUTE_DEFINITION_INTEGER_REF) CommitVoid

func (a_attribute_definition_integer_ref *A_ATTRIBUTE_DEFINITION_INTEGER_REF) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_DEFINITION_INTEGER_REF) CopyBasicFields

func (*A_ATTRIBUTE_DEFINITION_INTEGER_REF) GetName

func (a_attribute_definition_integer_ref *A_ATTRIBUTE_DEFINITION_INTEGER_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_DEFINITION_INTEGER_REF) GetRef

func (*A_ATTRIBUTE_DEFINITION_INTEGER_REF) Stage

func (a_attribute_definition_integer_ref *A_ATTRIBUTE_DEFINITION_INTEGER_REF) Stage(stage *Stage) *A_ATTRIBUTE_DEFINITION_INTEGER_REF

Stage puts a_attribute_definition_integer_ref to the model stage

func (*A_ATTRIBUTE_DEFINITION_INTEGER_REF) Unstage

func (a_attribute_definition_integer_ref *A_ATTRIBUTE_DEFINITION_INTEGER_REF) Unstage(stage *Stage) *A_ATTRIBUTE_DEFINITION_INTEGER_REF

Unstage removes a_attribute_definition_integer_ref off the model stage

func (*A_ATTRIBUTE_DEFINITION_INTEGER_REF) UnstageVoid

func (a_attribute_definition_integer_ref *A_ATTRIBUTE_DEFINITION_INTEGER_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_definition_integer_ref off the model stage

type A_ATTRIBUTE_DEFINITION_INTEGER_REF_WOP

type A_ATTRIBUTE_DEFINITION_INTEGER_REF_WOP struct {
	Name string

	ATTRIBUTE_DEFINITION_INTEGER_REF string
}

type A_ATTRIBUTE_DEFINITION_REAL_REF

type A_ATTRIBUTE_DEFINITION_REAL_REF struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-DEFINITION-REAL-REF" of type LOCAL-REF order 97 depth 3
	ATTRIBUTE_DEFINITION_REAL_REF string `xml:"ATTRIBUTE-DEFINITION-REAL-REF,omitempty"`
}

A_ATTRIBUTE_DEFINITION_REAL_REF Named source within outer element "DEFINITION"

func CopyBranchA_ATTRIBUTE_DEFINITION_REAL_REF

func CopyBranchA_ATTRIBUTE_DEFINITION_REAL_REF(mapOrigCopy map[any]any, a_attribute_definition_real_refFrom *A_ATTRIBUTE_DEFINITION_REAL_REF) (a_attribute_definition_real_refTo *A_ATTRIBUTE_DEFINITION_REAL_REF)

func (*A_ATTRIBUTE_DEFINITION_REAL_REF) Checkout

func (a_attribute_definition_real_ref *A_ATTRIBUTE_DEFINITION_REAL_REF) Checkout(stage *Stage) *A_ATTRIBUTE_DEFINITION_REAL_REF

Checkout a_attribute_definition_real_ref to the back repo (if it is already staged)

func (*A_ATTRIBUTE_DEFINITION_REAL_REF) Commit

func (a_attribute_definition_real_ref *A_ATTRIBUTE_DEFINITION_REAL_REF) Commit(stage *Stage) *A_ATTRIBUTE_DEFINITION_REAL_REF

commit a_attribute_definition_real_ref to the back repo (if it is already staged)

func (*A_ATTRIBUTE_DEFINITION_REAL_REF) CommitVoid

func (a_attribute_definition_real_ref *A_ATTRIBUTE_DEFINITION_REAL_REF) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_DEFINITION_REAL_REF) CopyBasicFields

func (*A_ATTRIBUTE_DEFINITION_REAL_REF) GetName

func (a_attribute_definition_real_ref *A_ATTRIBUTE_DEFINITION_REAL_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_DEFINITION_REAL_REF) GetRef

func (*A_ATTRIBUTE_DEFINITION_REAL_REF) Stage

func (a_attribute_definition_real_ref *A_ATTRIBUTE_DEFINITION_REAL_REF) Stage(stage *Stage) *A_ATTRIBUTE_DEFINITION_REAL_REF

Stage puts a_attribute_definition_real_ref to the model stage

func (*A_ATTRIBUTE_DEFINITION_REAL_REF) Unstage

func (a_attribute_definition_real_ref *A_ATTRIBUTE_DEFINITION_REAL_REF) Unstage(stage *Stage) *A_ATTRIBUTE_DEFINITION_REAL_REF

Unstage removes a_attribute_definition_real_ref off the model stage

func (*A_ATTRIBUTE_DEFINITION_REAL_REF) UnstageVoid

func (a_attribute_definition_real_ref *A_ATTRIBUTE_DEFINITION_REAL_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_definition_real_ref off the model stage

type A_ATTRIBUTE_DEFINITION_REAL_REF_WOP

type A_ATTRIBUTE_DEFINITION_REAL_REF_WOP struct {
	Name string

	ATTRIBUTE_DEFINITION_REAL_REF string
}

type A_ATTRIBUTE_DEFINITION_STRING_REF

type A_ATTRIBUTE_DEFINITION_STRING_REF struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-DEFINITION-STRING-REF" of type LOCAL-REF order 101 depth 3
	ATTRIBUTE_DEFINITION_STRING_REF string `xml:"ATTRIBUTE-DEFINITION-STRING-REF,omitempty"`
}

A_ATTRIBUTE_DEFINITION_STRING_REF Named source within outer element "DEFINITION"

func CopyBranchA_ATTRIBUTE_DEFINITION_STRING_REF

func CopyBranchA_ATTRIBUTE_DEFINITION_STRING_REF(mapOrigCopy map[any]any, a_attribute_definition_string_refFrom *A_ATTRIBUTE_DEFINITION_STRING_REF) (a_attribute_definition_string_refTo *A_ATTRIBUTE_DEFINITION_STRING_REF)

func (*A_ATTRIBUTE_DEFINITION_STRING_REF) Checkout

func (a_attribute_definition_string_ref *A_ATTRIBUTE_DEFINITION_STRING_REF) Checkout(stage *Stage) *A_ATTRIBUTE_DEFINITION_STRING_REF

Checkout a_attribute_definition_string_ref to the back repo (if it is already staged)

func (*A_ATTRIBUTE_DEFINITION_STRING_REF) Commit

func (a_attribute_definition_string_ref *A_ATTRIBUTE_DEFINITION_STRING_REF) Commit(stage *Stage) *A_ATTRIBUTE_DEFINITION_STRING_REF

commit a_attribute_definition_string_ref to the back repo (if it is already staged)

func (*A_ATTRIBUTE_DEFINITION_STRING_REF) CommitVoid

func (a_attribute_definition_string_ref *A_ATTRIBUTE_DEFINITION_STRING_REF) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_DEFINITION_STRING_REF) CopyBasicFields

func (*A_ATTRIBUTE_DEFINITION_STRING_REF) GetName

func (a_attribute_definition_string_ref *A_ATTRIBUTE_DEFINITION_STRING_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_DEFINITION_STRING_REF) GetRef

func (*A_ATTRIBUTE_DEFINITION_STRING_REF) Stage

func (a_attribute_definition_string_ref *A_ATTRIBUTE_DEFINITION_STRING_REF) Stage(stage *Stage) *A_ATTRIBUTE_DEFINITION_STRING_REF

Stage puts a_attribute_definition_string_ref to the model stage

func (*A_ATTRIBUTE_DEFINITION_STRING_REF) Unstage

func (a_attribute_definition_string_ref *A_ATTRIBUTE_DEFINITION_STRING_REF) Unstage(stage *Stage) *A_ATTRIBUTE_DEFINITION_STRING_REF

Unstage removes a_attribute_definition_string_ref off the model stage

func (*A_ATTRIBUTE_DEFINITION_STRING_REF) UnstageVoid

func (a_attribute_definition_string_ref *A_ATTRIBUTE_DEFINITION_STRING_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_definition_string_ref off the model stage

type A_ATTRIBUTE_DEFINITION_STRING_REF_WOP

type A_ATTRIBUTE_DEFINITION_STRING_REF_WOP struct {
	Name string

	ATTRIBUTE_DEFINITION_STRING_REF string
}

type A_ATTRIBUTE_DEFINITION_XHTML_REF

type A_ATTRIBUTE_DEFINITION_XHTML_REF struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-DEFINITION-XHTML-REF" of type LOCAL-REF order 107 depth 3
	ATTRIBUTE_DEFINITION_XHTML_REF string `xml:"ATTRIBUTE-DEFINITION-XHTML-REF,omitempty"`
}

A_ATTRIBUTE_DEFINITION_XHTML_REF Named source within outer element "DEFINITION"

func CopyBranchA_ATTRIBUTE_DEFINITION_XHTML_REF

func CopyBranchA_ATTRIBUTE_DEFINITION_XHTML_REF(mapOrigCopy map[any]any, a_attribute_definition_xhtml_refFrom *A_ATTRIBUTE_DEFINITION_XHTML_REF) (a_attribute_definition_xhtml_refTo *A_ATTRIBUTE_DEFINITION_XHTML_REF)

func (*A_ATTRIBUTE_DEFINITION_XHTML_REF) Checkout

func (a_attribute_definition_xhtml_ref *A_ATTRIBUTE_DEFINITION_XHTML_REF) Checkout(stage *Stage) *A_ATTRIBUTE_DEFINITION_XHTML_REF

Checkout a_attribute_definition_xhtml_ref to the back repo (if it is already staged)

func (*A_ATTRIBUTE_DEFINITION_XHTML_REF) Commit

func (a_attribute_definition_xhtml_ref *A_ATTRIBUTE_DEFINITION_XHTML_REF) Commit(stage *Stage) *A_ATTRIBUTE_DEFINITION_XHTML_REF

commit a_attribute_definition_xhtml_ref to the back repo (if it is already staged)

func (*A_ATTRIBUTE_DEFINITION_XHTML_REF) CommitVoid

func (a_attribute_definition_xhtml_ref *A_ATTRIBUTE_DEFINITION_XHTML_REF) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_DEFINITION_XHTML_REF) CopyBasicFields

func (*A_ATTRIBUTE_DEFINITION_XHTML_REF) GetName

func (a_attribute_definition_xhtml_ref *A_ATTRIBUTE_DEFINITION_XHTML_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_DEFINITION_XHTML_REF) GetRef

func (*A_ATTRIBUTE_DEFINITION_XHTML_REF) Stage

func (a_attribute_definition_xhtml_ref *A_ATTRIBUTE_DEFINITION_XHTML_REF) Stage(stage *Stage) *A_ATTRIBUTE_DEFINITION_XHTML_REF

Stage puts a_attribute_definition_xhtml_ref to the model stage

func (*A_ATTRIBUTE_DEFINITION_XHTML_REF) Unstage

func (a_attribute_definition_xhtml_ref *A_ATTRIBUTE_DEFINITION_XHTML_REF) Unstage(stage *Stage) *A_ATTRIBUTE_DEFINITION_XHTML_REF

Unstage removes a_attribute_definition_xhtml_ref off the model stage

func (*A_ATTRIBUTE_DEFINITION_XHTML_REF) UnstageVoid

func (a_attribute_definition_xhtml_ref *A_ATTRIBUTE_DEFINITION_XHTML_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_definition_xhtml_ref off the model stage

type A_ATTRIBUTE_DEFINITION_XHTML_REF_WOP

type A_ATTRIBUTE_DEFINITION_XHTML_REF_WOP struct {
	Name string

	ATTRIBUTE_DEFINITION_XHTML_REF string
}

type A_ATTRIBUTE_VALUE_BOOLEAN

type A_ATTRIBUTE_VALUE_BOOLEAN struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-VALUE-BOOLEAN" of type ATTRIBUTE-VALUE-BOOLEAN order 11 depth 3
	ATTRIBUTE_VALUE_BOOLEAN []*ATTRIBUTE_VALUE_BOOLEAN `xml:"ATTRIBUTE-VALUE-BOOLEAN,omitempty"`
}

A_ATTRIBUTE_VALUE_BOOLEAN Named source within outer element "DEFAULT-VALUE"

func CopyBranchA_ATTRIBUTE_VALUE_BOOLEAN

func CopyBranchA_ATTRIBUTE_VALUE_BOOLEAN(mapOrigCopy map[any]any, a_attribute_value_booleanFrom *A_ATTRIBUTE_VALUE_BOOLEAN) (a_attribute_value_booleanTo *A_ATTRIBUTE_VALUE_BOOLEAN)

func (*A_ATTRIBUTE_VALUE_BOOLEAN) Checkout

func (a_attribute_value_boolean *A_ATTRIBUTE_VALUE_BOOLEAN) Checkout(stage *Stage) *A_ATTRIBUTE_VALUE_BOOLEAN

Checkout a_attribute_value_boolean to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_BOOLEAN) Commit

func (a_attribute_value_boolean *A_ATTRIBUTE_VALUE_BOOLEAN) Commit(stage *Stage) *A_ATTRIBUTE_VALUE_BOOLEAN

commit a_attribute_value_boolean to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_BOOLEAN) CommitVoid

func (a_attribute_value_boolean *A_ATTRIBUTE_VALUE_BOOLEAN) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_VALUE_BOOLEAN) CopyBasicFields

func (from *A_ATTRIBUTE_VALUE_BOOLEAN) CopyBasicFields(to *A_ATTRIBUTE_VALUE_BOOLEAN)

func (*A_ATTRIBUTE_VALUE_BOOLEAN) GetName

func (a_attribute_value_boolean *A_ATTRIBUTE_VALUE_BOOLEAN) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_VALUE_BOOLEAN) Stage

func (a_attribute_value_boolean *A_ATTRIBUTE_VALUE_BOOLEAN) Stage(stage *Stage) *A_ATTRIBUTE_VALUE_BOOLEAN

Stage puts a_attribute_value_boolean to the model stage

func (*A_ATTRIBUTE_VALUE_BOOLEAN) Unstage

func (a_attribute_value_boolean *A_ATTRIBUTE_VALUE_BOOLEAN) Unstage(stage *Stage) *A_ATTRIBUTE_VALUE_BOOLEAN

Unstage removes a_attribute_value_boolean off the model stage

func (*A_ATTRIBUTE_VALUE_BOOLEAN) UnstageVoid

func (a_attribute_value_boolean *A_ATTRIBUTE_VALUE_BOOLEAN) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_value_boolean off the model stage

type A_ATTRIBUTE_VALUE_BOOLEAN_WOP

type A_ATTRIBUTE_VALUE_BOOLEAN_WOP struct {
	Name string
}

type A_ATTRIBUTE_VALUE_DATE

type A_ATTRIBUTE_VALUE_DATE struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-VALUE-DATE" of type ATTRIBUTE-VALUE-DATE order 21 depth 3
	ATTRIBUTE_VALUE_DATE []*ATTRIBUTE_VALUE_DATE `xml:"ATTRIBUTE-VALUE-DATE,omitempty"`
}

A_ATTRIBUTE_VALUE_DATE Named source within outer element "DEFAULT-VALUE"

func CopyBranchA_ATTRIBUTE_VALUE_DATE

func CopyBranchA_ATTRIBUTE_VALUE_DATE(mapOrigCopy map[any]any, a_attribute_value_dateFrom *A_ATTRIBUTE_VALUE_DATE) (a_attribute_value_dateTo *A_ATTRIBUTE_VALUE_DATE)

func (*A_ATTRIBUTE_VALUE_DATE) Checkout

func (a_attribute_value_date *A_ATTRIBUTE_VALUE_DATE) Checkout(stage *Stage) *A_ATTRIBUTE_VALUE_DATE

Checkout a_attribute_value_date to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_DATE) Commit

func (a_attribute_value_date *A_ATTRIBUTE_VALUE_DATE) Commit(stage *Stage) *A_ATTRIBUTE_VALUE_DATE

commit a_attribute_value_date to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_DATE) CommitVoid

func (a_attribute_value_date *A_ATTRIBUTE_VALUE_DATE) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_VALUE_DATE) CopyBasicFields

func (from *A_ATTRIBUTE_VALUE_DATE) CopyBasicFields(to *A_ATTRIBUTE_VALUE_DATE)

func (*A_ATTRIBUTE_VALUE_DATE) GetName

func (a_attribute_value_date *A_ATTRIBUTE_VALUE_DATE) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_VALUE_DATE) Stage

func (a_attribute_value_date *A_ATTRIBUTE_VALUE_DATE) Stage(stage *Stage) *A_ATTRIBUTE_VALUE_DATE

Stage puts a_attribute_value_date to the model stage

func (*A_ATTRIBUTE_VALUE_DATE) Unstage

func (a_attribute_value_date *A_ATTRIBUTE_VALUE_DATE) Unstage(stage *Stage) *A_ATTRIBUTE_VALUE_DATE

Unstage removes a_attribute_value_date off the model stage

func (*A_ATTRIBUTE_VALUE_DATE) UnstageVoid

func (a_attribute_value_date *A_ATTRIBUTE_VALUE_DATE) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_value_date off the model stage

type A_ATTRIBUTE_VALUE_DATE_WOP

type A_ATTRIBUTE_VALUE_DATE_WOP struct {
	Name string
}

type A_ATTRIBUTE_VALUE_ENUMERATION

type A_ATTRIBUTE_VALUE_ENUMERATION struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-VALUE-ENUMERATION" of type ATTRIBUTE-VALUE-ENUMERATION order 28 depth 3
	ATTRIBUTE_VALUE_ENUMERATION []*ATTRIBUTE_VALUE_ENUMERATION `xml:"ATTRIBUTE-VALUE-ENUMERATION,omitempty"`
}

A_ATTRIBUTE_VALUE_ENUMERATION Named source within outer element "DEFAULT-VALUE"

func CopyBranchA_ATTRIBUTE_VALUE_ENUMERATION

func CopyBranchA_ATTRIBUTE_VALUE_ENUMERATION(mapOrigCopy map[any]any, a_attribute_value_enumerationFrom *A_ATTRIBUTE_VALUE_ENUMERATION) (a_attribute_value_enumerationTo *A_ATTRIBUTE_VALUE_ENUMERATION)

func (*A_ATTRIBUTE_VALUE_ENUMERATION) Checkout

func (a_attribute_value_enumeration *A_ATTRIBUTE_VALUE_ENUMERATION) Checkout(stage *Stage) *A_ATTRIBUTE_VALUE_ENUMERATION

Checkout a_attribute_value_enumeration to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_ENUMERATION) Commit

func (a_attribute_value_enumeration *A_ATTRIBUTE_VALUE_ENUMERATION) Commit(stage *Stage) *A_ATTRIBUTE_VALUE_ENUMERATION

commit a_attribute_value_enumeration to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_ENUMERATION) CommitVoid

func (a_attribute_value_enumeration *A_ATTRIBUTE_VALUE_ENUMERATION) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_VALUE_ENUMERATION) CopyBasicFields

func (*A_ATTRIBUTE_VALUE_ENUMERATION) GetName

func (a_attribute_value_enumeration *A_ATTRIBUTE_VALUE_ENUMERATION) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_VALUE_ENUMERATION) Stage

func (a_attribute_value_enumeration *A_ATTRIBUTE_VALUE_ENUMERATION) Stage(stage *Stage) *A_ATTRIBUTE_VALUE_ENUMERATION

Stage puts a_attribute_value_enumeration to the model stage

func (*A_ATTRIBUTE_VALUE_ENUMERATION) Unstage

func (a_attribute_value_enumeration *A_ATTRIBUTE_VALUE_ENUMERATION) Unstage(stage *Stage) *A_ATTRIBUTE_VALUE_ENUMERATION

Unstage removes a_attribute_value_enumeration off the model stage

func (*A_ATTRIBUTE_VALUE_ENUMERATION) UnstageVoid

func (a_attribute_value_enumeration *A_ATTRIBUTE_VALUE_ENUMERATION) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_value_enumeration off the model stage

type A_ATTRIBUTE_VALUE_ENUMERATION_WOP

type A_ATTRIBUTE_VALUE_ENUMERATION_WOP struct {
	Name string
}

type A_ATTRIBUTE_VALUE_INTEGER

type A_ATTRIBUTE_VALUE_INTEGER struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-VALUE-INTEGER" of type ATTRIBUTE-VALUE-INTEGER order 41 depth 3
	ATTRIBUTE_VALUE_INTEGER []*ATTRIBUTE_VALUE_INTEGER `xml:"ATTRIBUTE-VALUE-INTEGER,omitempty"`
}

A_ATTRIBUTE_VALUE_INTEGER Named source within outer element "DEFAULT-VALUE"

func CopyBranchA_ATTRIBUTE_VALUE_INTEGER

func CopyBranchA_ATTRIBUTE_VALUE_INTEGER(mapOrigCopy map[any]any, a_attribute_value_integerFrom *A_ATTRIBUTE_VALUE_INTEGER) (a_attribute_value_integerTo *A_ATTRIBUTE_VALUE_INTEGER)

func (*A_ATTRIBUTE_VALUE_INTEGER) Checkout

func (a_attribute_value_integer *A_ATTRIBUTE_VALUE_INTEGER) Checkout(stage *Stage) *A_ATTRIBUTE_VALUE_INTEGER

Checkout a_attribute_value_integer to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_INTEGER) Commit

func (a_attribute_value_integer *A_ATTRIBUTE_VALUE_INTEGER) Commit(stage *Stage) *A_ATTRIBUTE_VALUE_INTEGER

commit a_attribute_value_integer to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_INTEGER) CommitVoid

func (a_attribute_value_integer *A_ATTRIBUTE_VALUE_INTEGER) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_VALUE_INTEGER) CopyBasicFields

func (from *A_ATTRIBUTE_VALUE_INTEGER) CopyBasicFields(to *A_ATTRIBUTE_VALUE_INTEGER)

func (*A_ATTRIBUTE_VALUE_INTEGER) GetName

func (a_attribute_value_integer *A_ATTRIBUTE_VALUE_INTEGER) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_VALUE_INTEGER) Stage

func (a_attribute_value_integer *A_ATTRIBUTE_VALUE_INTEGER) Stage(stage *Stage) *A_ATTRIBUTE_VALUE_INTEGER

Stage puts a_attribute_value_integer to the model stage

func (*A_ATTRIBUTE_VALUE_INTEGER) Unstage

func (a_attribute_value_integer *A_ATTRIBUTE_VALUE_INTEGER) Unstage(stage *Stage) *A_ATTRIBUTE_VALUE_INTEGER

Unstage removes a_attribute_value_integer off the model stage

func (*A_ATTRIBUTE_VALUE_INTEGER) UnstageVoid

func (a_attribute_value_integer *A_ATTRIBUTE_VALUE_INTEGER) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_value_integer off the model stage

type A_ATTRIBUTE_VALUE_INTEGER_WOP

type A_ATTRIBUTE_VALUE_INTEGER_WOP struct {
	Name string
}

type A_ATTRIBUTE_VALUE_REAL

type A_ATTRIBUTE_VALUE_REAL struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-VALUE-REAL" of type ATTRIBUTE-VALUE-REAL order 51 depth 3
	ATTRIBUTE_VALUE_REAL []*ATTRIBUTE_VALUE_REAL `xml:"ATTRIBUTE-VALUE-REAL,omitempty"`
}

A_ATTRIBUTE_VALUE_REAL Named source within outer element "DEFAULT-VALUE"

func CopyBranchA_ATTRIBUTE_VALUE_REAL

func CopyBranchA_ATTRIBUTE_VALUE_REAL(mapOrigCopy map[any]any, a_attribute_value_realFrom *A_ATTRIBUTE_VALUE_REAL) (a_attribute_value_realTo *A_ATTRIBUTE_VALUE_REAL)

func (*A_ATTRIBUTE_VALUE_REAL) Checkout

func (a_attribute_value_real *A_ATTRIBUTE_VALUE_REAL) Checkout(stage *Stage) *A_ATTRIBUTE_VALUE_REAL

Checkout a_attribute_value_real to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_REAL) Commit

func (a_attribute_value_real *A_ATTRIBUTE_VALUE_REAL) Commit(stage *Stage) *A_ATTRIBUTE_VALUE_REAL

commit a_attribute_value_real to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_REAL) CommitVoid

func (a_attribute_value_real *A_ATTRIBUTE_VALUE_REAL) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_VALUE_REAL) CopyBasicFields

func (from *A_ATTRIBUTE_VALUE_REAL) CopyBasicFields(to *A_ATTRIBUTE_VALUE_REAL)

func (*A_ATTRIBUTE_VALUE_REAL) GetName

func (a_attribute_value_real *A_ATTRIBUTE_VALUE_REAL) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_VALUE_REAL) Stage

func (a_attribute_value_real *A_ATTRIBUTE_VALUE_REAL) Stage(stage *Stage) *A_ATTRIBUTE_VALUE_REAL

Stage puts a_attribute_value_real to the model stage

func (*A_ATTRIBUTE_VALUE_REAL) Unstage

func (a_attribute_value_real *A_ATTRIBUTE_VALUE_REAL) Unstage(stage *Stage) *A_ATTRIBUTE_VALUE_REAL

Unstage removes a_attribute_value_real off the model stage

func (*A_ATTRIBUTE_VALUE_REAL) UnstageVoid

func (a_attribute_value_real *A_ATTRIBUTE_VALUE_REAL) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_value_real off the model stage

type A_ATTRIBUTE_VALUE_REAL_WOP

type A_ATTRIBUTE_VALUE_REAL_WOP struct {
	Name string
}

type A_ATTRIBUTE_VALUE_STRING

type A_ATTRIBUTE_VALUE_STRING struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-VALUE-STRING" of type ATTRIBUTE-VALUE-STRING order 61 depth 3
	ATTRIBUTE_VALUE_STRING []*ATTRIBUTE_VALUE_STRING `xml:"ATTRIBUTE-VALUE-STRING,omitempty"`
}

A_ATTRIBUTE_VALUE_STRING Named source within outer element "DEFAULT-VALUE"

func CopyBranchA_ATTRIBUTE_VALUE_STRING

func CopyBranchA_ATTRIBUTE_VALUE_STRING(mapOrigCopy map[any]any, a_attribute_value_stringFrom *A_ATTRIBUTE_VALUE_STRING) (a_attribute_value_stringTo *A_ATTRIBUTE_VALUE_STRING)

func (*A_ATTRIBUTE_VALUE_STRING) Checkout

func (a_attribute_value_string *A_ATTRIBUTE_VALUE_STRING) Checkout(stage *Stage) *A_ATTRIBUTE_VALUE_STRING

Checkout a_attribute_value_string to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_STRING) Commit

func (a_attribute_value_string *A_ATTRIBUTE_VALUE_STRING) Commit(stage *Stage) *A_ATTRIBUTE_VALUE_STRING

commit a_attribute_value_string to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_STRING) CommitVoid

func (a_attribute_value_string *A_ATTRIBUTE_VALUE_STRING) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_VALUE_STRING) CopyBasicFields

func (from *A_ATTRIBUTE_VALUE_STRING) CopyBasicFields(to *A_ATTRIBUTE_VALUE_STRING)

func (*A_ATTRIBUTE_VALUE_STRING) GetName

func (a_attribute_value_string *A_ATTRIBUTE_VALUE_STRING) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_VALUE_STRING) Stage

func (a_attribute_value_string *A_ATTRIBUTE_VALUE_STRING) Stage(stage *Stage) *A_ATTRIBUTE_VALUE_STRING

Stage puts a_attribute_value_string to the model stage

func (*A_ATTRIBUTE_VALUE_STRING) Unstage

func (a_attribute_value_string *A_ATTRIBUTE_VALUE_STRING) Unstage(stage *Stage) *A_ATTRIBUTE_VALUE_STRING

Unstage removes a_attribute_value_string off the model stage

func (*A_ATTRIBUTE_VALUE_STRING) UnstageVoid

func (a_attribute_value_string *A_ATTRIBUTE_VALUE_STRING) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_value_string off the model stage

type A_ATTRIBUTE_VALUE_STRING_WOP

type A_ATTRIBUTE_VALUE_STRING_WOP struct {
	Name string
}

type A_ATTRIBUTE_VALUE_XHTML

type A_ATTRIBUTE_VALUE_XHTML struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-VALUE-XHTML" of type ATTRIBUTE-VALUE-XHTML order 71 depth 3
	ATTRIBUTE_VALUE_XHTML []*ATTRIBUTE_VALUE_XHTML `xml:"ATTRIBUTE-VALUE-XHTML,omitempty"`
}

A_ATTRIBUTE_VALUE_XHTML Named source within outer element "DEFAULT-VALUE"

func CopyBranchA_ATTRIBUTE_VALUE_XHTML

func CopyBranchA_ATTRIBUTE_VALUE_XHTML(mapOrigCopy map[any]any, a_attribute_value_xhtmlFrom *A_ATTRIBUTE_VALUE_XHTML) (a_attribute_value_xhtmlTo *A_ATTRIBUTE_VALUE_XHTML)

func (*A_ATTRIBUTE_VALUE_XHTML) Checkout

func (a_attribute_value_xhtml *A_ATTRIBUTE_VALUE_XHTML) Checkout(stage *Stage) *A_ATTRIBUTE_VALUE_XHTML

Checkout a_attribute_value_xhtml to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_XHTML) Commit

func (a_attribute_value_xhtml *A_ATTRIBUTE_VALUE_XHTML) Commit(stage *Stage) *A_ATTRIBUTE_VALUE_XHTML

commit a_attribute_value_xhtml to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_XHTML) CommitVoid

func (a_attribute_value_xhtml *A_ATTRIBUTE_VALUE_XHTML) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_VALUE_XHTML) CopyBasicFields

func (from *A_ATTRIBUTE_VALUE_XHTML) CopyBasicFields(to *A_ATTRIBUTE_VALUE_XHTML)

func (*A_ATTRIBUTE_VALUE_XHTML) GetName

func (a_attribute_value_xhtml *A_ATTRIBUTE_VALUE_XHTML) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_VALUE_XHTML) Stage

func (a_attribute_value_xhtml *A_ATTRIBUTE_VALUE_XHTML) Stage(stage *Stage) *A_ATTRIBUTE_VALUE_XHTML

Stage puts a_attribute_value_xhtml to the model stage

func (*A_ATTRIBUTE_VALUE_XHTML) Unstage

func (a_attribute_value_xhtml *A_ATTRIBUTE_VALUE_XHTML) Unstage(stage *Stage) *A_ATTRIBUTE_VALUE_XHTML

Unstage removes a_attribute_value_xhtml off the model stage

func (*A_ATTRIBUTE_VALUE_XHTML) UnstageVoid

func (a_attribute_value_xhtml *A_ATTRIBUTE_VALUE_XHTML) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_value_xhtml off the model stage

type A_ATTRIBUTE_VALUE_XHTML_1

type A_ATTRIBUTE_VALUE_XHTML_1 struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-VALUE-BOOLEAN" of type ATTRIBUTE-VALUE-BOOLEAN order 11 depth 3
	ATTRIBUTE_VALUE_BOOLEAN []*ATTRIBUTE_VALUE_BOOLEAN `xml:"ATTRIBUTE-VALUE-BOOLEAN,omitempty"`

	// generated from element "ATTRIBUTE-VALUE-DATE" of type ATTRIBUTE-VALUE-DATE order 21 depth 3
	ATTRIBUTE_VALUE_DATE []*ATTRIBUTE_VALUE_DATE `xml:"ATTRIBUTE-VALUE-DATE,omitempty"`

	// generated from element "ATTRIBUTE-VALUE-ENUMERATION" of type ATTRIBUTE-VALUE-ENUMERATION order 28 depth 3
	ATTRIBUTE_VALUE_ENUMERATION []*ATTRIBUTE_VALUE_ENUMERATION `xml:"ATTRIBUTE-VALUE-ENUMERATION,omitempty"`

	// generated from element "ATTRIBUTE-VALUE-INTEGER" of type ATTRIBUTE-VALUE-INTEGER order 41 depth 3
	ATTRIBUTE_VALUE_INTEGER []*ATTRIBUTE_VALUE_INTEGER `xml:"ATTRIBUTE-VALUE-INTEGER,omitempty"`

	// generated from element "ATTRIBUTE-VALUE-REAL" of type ATTRIBUTE-VALUE-REAL order 51 depth 3
	ATTRIBUTE_VALUE_REAL []*ATTRIBUTE_VALUE_REAL `xml:"ATTRIBUTE-VALUE-REAL,omitempty"`

	// generated from element "ATTRIBUTE-VALUE-STRING" of type ATTRIBUTE-VALUE-STRING order 61 depth 3
	ATTRIBUTE_VALUE_STRING []*ATTRIBUTE_VALUE_STRING `xml:"ATTRIBUTE-VALUE-STRING,omitempty"`

	// generated from element "ATTRIBUTE-VALUE-XHTML" of type ATTRIBUTE-VALUE-XHTML order 71 depth 3
	ATTRIBUTE_VALUE_XHTML []*ATTRIBUTE_VALUE_XHTML `xml:"ATTRIBUTE-VALUE-XHTML,omitempty"`
}

A_ATTRIBUTE_VALUE_XHTML_1 Named source within outer element "VALUES"

func CopyBranchA_ATTRIBUTE_VALUE_XHTML_1

func CopyBranchA_ATTRIBUTE_VALUE_XHTML_1(mapOrigCopy map[any]any, a_attribute_value_xhtml_1From *A_ATTRIBUTE_VALUE_XHTML_1) (a_attribute_value_xhtml_1To *A_ATTRIBUTE_VALUE_XHTML_1)

func (*A_ATTRIBUTE_VALUE_XHTML_1) Checkout

func (a_attribute_value_xhtml_1 *A_ATTRIBUTE_VALUE_XHTML_1) Checkout(stage *Stage) *A_ATTRIBUTE_VALUE_XHTML_1

Checkout a_attribute_value_xhtml_1 to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_XHTML_1) Commit

func (a_attribute_value_xhtml_1 *A_ATTRIBUTE_VALUE_XHTML_1) Commit(stage *Stage) *A_ATTRIBUTE_VALUE_XHTML_1

commit a_attribute_value_xhtml_1 to the back repo (if it is already staged)

func (*A_ATTRIBUTE_VALUE_XHTML_1) CommitVoid

func (a_attribute_value_xhtml_1 *A_ATTRIBUTE_VALUE_XHTML_1) CommitVoid(stage *Stage)

func (*A_ATTRIBUTE_VALUE_XHTML_1) CopyBasicFields

func (from *A_ATTRIBUTE_VALUE_XHTML_1) CopyBasicFields(to *A_ATTRIBUTE_VALUE_XHTML_1)

func (*A_ATTRIBUTE_VALUE_XHTML_1) GetName

func (a_attribute_value_xhtml_1 *A_ATTRIBUTE_VALUE_XHTML_1) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ATTRIBUTE_VALUE_XHTML_1) Stage

func (a_attribute_value_xhtml_1 *A_ATTRIBUTE_VALUE_XHTML_1) Stage(stage *Stage) *A_ATTRIBUTE_VALUE_XHTML_1

Stage puts a_attribute_value_xhtml_1 to the model stage

func (*A_ATTRIBUTE_VALUE_XHTML_1) Unstage

func (a_attribute_value_xhtml_1 *A_ATTRIBUTE_VALUE_XHTML_1) Unstage(stage *Stage) *A_ATTRIBUTE_VALUE_XHTML_1

Unstage removes a_attribute_value_xhtml_1 off the model stage

func (*A_ATTRIBUTE_VALUE_XHTML_1) UnstageVoid

func (a_attribute_value_xhtml_1 *A_ATTRIBUTE_VALUE_XHTML_1) UnstageVoid(stage *Stage)

UnstageVoid removes a_attribute_value_xhtml_1 off the model stage

type A_ATTRIBUTE_VALUE_XHTML_1_WOP

type A_ATTRIBUTE_VALUE_XHTML_1_WOP struct {
	Name string
}

type A_ATTRIBUTE_VALUE_XHTML_WOP

type A_ATTRIBUTE_VALUE_XHTML_WOP struct {
	Name string
}

type A_CHILDREN

type A_CHILDREN struct {
	Name string `xml:"-"`

	// generated from element "SPEC-HIERARCHY" of type SPEC-HIERARCHY order 228 depth 3
	SPEC_HIERARCHY []*SPEC_HIERARCHY `xml:"SPEC-HIERARCHY,omitempty"`
}

A_CHILDREN Named source within outer element "CHILDREN"

func CopyBranchA_CHILDREN

func CopyBranchA_CHILDREN(mapOrigCopy map[any]any, a_childrenFrom *A_CHILDREN) (a_childrenTo *A_CHILDREN)

func (*A_CHILDREN) Checkout

func (a_children *A_CHILDREN) Checkout(stage *Stage) *A_CHILDREN

Checkout a_children to the back repo (if it is already staged)

func (*A_CHILDREN) Commit

func (a_children *A_CHILDREN) Commit(stage *Stage) *A_CHILDREN

commit a_children to the back repo (if it is already staged)

func (*A_CHILDREN) CommitVoid

func (a_children *A_CHILDREN) CommitVoid(stage *Stage)

func (*A_CHILDREN) CopyBasicFields

func (from *A_CHILDREN) CopyBasicFields(to *A_CHILDREN)

func (*A_CHILDREN) GetName

func (a_children *A_CHILDREN) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_CHILDREN) Stage

func (a_children *A_CHILDREN) Stage(stage *Stage) *A_CHILDREN

Stage puts a_children to the model stage

func (*A_CHILDREN) Unstage

func (a_children *A_CHILDREN) Unstage(stage *Stage) *A_CHILDREN

Unstage removes a_children off the model stage

func (*A_CHILDREN) UnstageVoid

func (a_children *A_CHILDREN) UnstageVoid(stage *Stage)

UnstageVoid removes a_children off the model stage

type A_CHILDREN_WOP

type A_CHILDREN_WOP struct {
	Name string
}

type A_CORE_CONTENT

type A_CORE_CONTENT struct {
	Name string `xml:"-"`

	// generated from element "REQ-IF-CONTENT" of type REQ-IF-CONTENT order 182 depth 3
	REQ_IF_CONTENT *REQ_IF_CONTENT `xml:"REQ-IF-CONTENT,omitempty"`
}

A_CORE_CONTENT Named source within outer element "CORE-CONTENT"

func CopyBranchA_CORE_CONTENT

func CopyBranchA_CORE_CONTENT(mapOrigCopy map[any]any, a_core_contentFrom *A_CORE_CONTENT) (a_core_contentTo *A_CORE_CONTENT)

func (*A_CORE_CONTENT) Checkout

func (a_core_content *A_CORE_CONTENT) Checkout(stage *Stage) *A_CORE_CONTENT

Checkout a_core_content to the back repo (if it is already staged)

func (*A_CORE_CONTENT) Commit

func (a_core_content *A_CORE_CONTENT) Commit(stage *Stage) *A_CORE_CONTENT

commit a_core_content to the back repo (if it is already staged)

func (*A_CORE_CONTENT) CommitVoid

func (a_core_content *A_CORE_CONTENT) CommitVoid(stage *Stage)

func (*A_CORE_CONTENT) CopyBasicFields

func (from *A_CORE_CONTENT) CopyBasicFields(to *A_CORE_CONTENT)

func (*A_CORE_CONTENT) GetName

func (a_core_content *A_CORE_CONTENT) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_CORE_CONTENT) Stage

func (a_core_content *A_CORE_CONTENT) Stage(stage *Stage) *A_CORE_CONTENT

Stage puts a_core_content to the model stage

func (*A_CORE_CONTENT) Unstage

func (a_core_content *A_CORE_CONTENT) Unstage(stage *Stage) *A_CORE_CONTENT

Unstage removes a_core_content off the model stage

func (*A_CORE_CONTENT) UnstageVoid

func (a_core_content *A_CORE_CONTENT) UnstageVoid(stage *Stage)

UnstageVoid removes a_core_content off the model stage

type A_CORE_CONTENT_WOP

type A_CORE_CONTENT_WOP struct {
	Name string
}

type A_DATATYPES

type A_DATATYPES struct {
	Name string `xml:"-"`

	// generated from element "DATATYPE-DEFINITION-BOOLEAN" of type DATATYPE-DEFINITION-BOOLEAN order 189 depth 3
	DATATYPE_DEFINITION_BOOLEAN []*DATATYPE_DEFINITION_BOOLEAN `xml:"DATATYPE-DEFINITION-BOOLEAN,omitempty"`

	// generated from element "DATATYPE-DEFINITION-DATE" of type DATATYPE-DEFINITION-DATE order 190 depth 3
	DATATYPE_DEFINITION_DATE []*DATATYPE_DEFINITION_DATE `xml:"DATATYPE-DEFINITION-DATE,omitempty"`

	// generated from element "DATATYPE-DEFINITION-ENUMERATION" of type DATATYPE-DEFINITION-ENUMERATION order 191 depth 3
	DATATYPE_DEFINITION_ENUMERATION []*DATATYPE_DEFINITION_ENUMERATION `xml:"DATATYPE-DEFINITION-ENUMERATION,omitempty"`

	// generated from element "DATATYPE-DEFINITION-INTEGER" of type DATATYPE-DEFINITION-INTEGER order 192 depth 3
	DATATYPE_DEFINITION_INTEGER []*DATATYPE_DEFINITION_INTEGER `xml:"DATATYPE-DEFINITION-INTEGER,omitempty"`

	// generated from element "DATATYPE-DEFINITION-REAL" of type DATATYPE-DEFINITION-REAL order 193 depth 3
	DATATYPE_DEFINITION_REAL []*DATATYPE_DEFINITION_REAL `xml:"DATATYPE-DEFINITION-REAL,omitempty"`

	// generated from element "DATATYPE-DEFINITION-STRING" of type DATATYPE-DEFINITION-STRING order 194 depth 3
	DATATYPE_DEFINITION_STRING []*DATATYPE_DEFINITION_STRING `xml:"DATATYPE-DEFINITION-STRING,omitempty"`

	// generated from element "DATATYPE-DEFINITION-XHTML" of type DATATYPE-DEFINITION-XHTML order 195 depth 3
	DATATYPE_DEFINITION_XHTML []*DATATYPE_DEFINITION_XHTML `xml:"DATATYPE-DEFINITION-XHTML,omitempty"`
}

A_DATATYPES Named source within outer element "DATATYPES"

func CopyBranchA_DATATYPES

func CopyBranchA_DATATYPES(mapOrigCopy map[any]any, a_datatypesFrom *A_DATATYPES) (a_datatypesTo *A_DATATYPES)

func (*A_DATATYPES) Checkout

func (a_datatypes *A_DATATYPES) Checkout(stage *Stage) *A_DATATYPES

Checkout a_datatypes to the back repo (if it is already staged)

func (*A_DATATYPES) Commit

func (a_datatypes *A_DATATYPES) Commit(stage *Stage) *A_DATATYPES

commit a_datatypes to the back repo (if it is already staged)

func (*A_DATATYPES) CommitVoid

func (a_datatypes *A_DATATYPES) CommitVoid(stage *Stage)

func (*A_DATATYPES) CopyBasicFields

func (from *A_DATATYPES) CopyBasicFields(to *A_DATATYPES)

func (*A_DATATYPES) GetName

func (a_datatypes *A_DATATYPES) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_DATATYPES) Stage

func (a_datatypes *A_DATATYPES) Stage(stage *Stage) *A_DATATYPES

Stage puts a_datatypes to the model stage

func (*A_DATATYPES) Unstage

func (a_datatypes *A_DATATYPES) Unstage(stage *Stage) *A_DATATYPES

Unstage removes a_datatypes off the model stage

func (*A_DATATYPES) UnstageVoid

func (a_datatypes *A_DATATYPES) UnstageVoid(stage *Stage)

UnstageVoid removes a_datatypes off the model stage

type A_DATATYPES_WOP

type A_DATATYPES_WOP struct {
	Name string
}

type A_DATATYPE_DEFINITION_BOOLEAN_REF

type A_DATATYPE_DEFINITION_BOOLEAN_REF struct {
	Name string `xml:"-"`

	// generated from element "DATATYPE-DEFINITION-BOOLEAN-REF" of type LOCAL-REF order 14 depth 3
	DATATYPE_DEFINITION_BOOLEAN_REF string `xml:"DATATYPE-DEFINITION-BOOLEAN-REF,omitempty"`
}

A_DATATYPE_DEFINITION_BOOLEAN_REF Named source within outer element "TYPE"

func CopyBranchA_DATATYPE_DEFINITION_BOOLEAN_REF

func CopyBranchA_DATATYPE_DEFINITION_BOOLEAN_REF(mapOrigCopy map[any]any, a_datatype_definition_boolean_refFrom *A_DATATYPE_DEFINITION_BOOLEAN_REF) (a_datatype_definition_boolean_refTo *A_DATATYPE_DEFINITION_BOOLEAN_REF)

func (*A_DATATYPE_DEFINITION_BOOLEAN_REF) Checkout

func (a_datatype_definition_boolean_ref *A_DATATYPE_DEFINITION_BOOLEAN_REF) Checkout(stage *Stage) *A_DATATYPE_DEFINITION_BOOLEAN_REF

Checkout a_datatype_definition_boolean_ref to the back repo (if it is already staged)

func (*A_DATATYPE_DEFINITION_BOOLEAN_REF) Commit

func (a_datatype_definition_boolean_ref *A_DATATYPE_DEFINITION_BOOLEAN_REF) Commit(stage *Stage) *A_DATATYPE_DEFINITION_BOOLEAN_REF

commit a_datatype_definition_boolean_ref to the back repo (if it is already staged)

func (*A_DATATYPE_DEFINITION_BOOLEAN_REF) CommitVoid

func (a_datatype_definition_boolean_ref *A_DATATYPE_DEFINITION_BOOLEAN_REF) CommitVoid(stage *Stage)

func (*A_DATATYPE_DEFINITION_BOOLEAN_REF) CopyBasicFields

func (*A_DATATYPE_DEFINITION_BOOLEAN_REF) GetName

func (a_datatype_definition_boolean_ref *A_DATATYPE_DEFINITION_BOOLEAN_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_DATATYPE_DEFINITION_BOOLEAN_REF) Stage

func (a_datatype_definition_boolean_ref *A_DATATYPE_DEFINITION_BOOLEAN_REF) Stage(stage *Stage) *A_DATATYPE_DEFINITION_BOOLEAN_REF

Stage puts a_datatype_definition_boolean_ref to the model stage

func (*A_DATATYPE_DEFINITION_BOOLEAN_REF) Unstage

func (a_datatype_definition_boolean_ref *A_DATATYPE_DEFINITION_BOOLEAN_REF) Unstage(stage *Stage) *A_DATATYPE_DEFINITION_BOOLEAN_REF

Unstage removes a_datatype_definition_boolean_ref off the model stage

func (*A_DATATYPE_DEFINITION_BOOLEAN_REF) UnstageVoid

func (a_datatype_definition_boolean_ref *A_DATATYPE_DEFINITION_BOOLEAN_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_datatype_definition_boolean_ref off the model stage

type A_DATATYPE_DEFINITION_BOOLEAN_REF_WOP

type A_DATATYPE_DEFINITION_BOOLEAN_REF_WOP struct {
	Name string

	DATATYPE_DEFINITION_BOOLEAN_REF string
}

type A_DATATYPE_DEFINITION_DATE_REF

type A_DATATYPE_DEFINITION_DATE_REF struct {
	Name string `xml:"-"`

	// generated from element "DATATYPE-DEFINITION-DATE-REF" of type LOCAL-REF order 24 depth 3
	DATATYPE_DEFINITION_DATE_REF string `xml:"DATATYPE-DEFINITION-DATE-REF,omitempty"`
}

A_DATATYPE_DEFINITION_DATE_REF Named source within outer element "TYPE"

func CopyBranchA_DATATYPE_DEFINITION_DATE_REF

func CopyBranchA_DATATYPE_DEFINITION_DATE_REF(mapOrigCopy map[any]any, a_datatype_definition_date_refFrom *A_DATATYPE_DEFINITION_DATE_REF) (a_datatype_definition_date_refTo *A_DATATYPE_DEFINITION_DATE_REF)

func (*A_DATATYPE_DEFINITION_DATE_REF) Checkout

func (a_datatype_definition_date_ref *A_DATATYPE_DEFINITION_DATE_REF) Checkout(stage *Stage) *A_DATATYPE_DEFINITION_DATE_REF

Checkout a_datatype_definition_date_ref to the back repo (if it is already staged)

func (*A_DATATYPE_DEFINITION_DATE_REF) Commit

func (a_datatype_definition_date_ref *A_DATATYPE_DEFINITION_DATE_REF) Commit(stage *Stage) *A_DATATYPE_DEFINITION_DATE_REF

commit a_datatype_definition_date_ref to the back repo (if it is already staged)

func (*A_DATATYPE_DEFINITION_DATE_REF) CommitVoid

func (a_datatype_definition_date_ref *A_DATATYPE_DEFINITION_DATE_REF) CommitVoid(stage *Stage)

func (*A_DATATYPE_DEFINITION_DATE_REF) CopyBasicFields

func (*A_DATATYPE_DEFINITION_DATE_REF) GetName

func (a_datatype_definition_date_ref *A_DATATYPE_DEFINITION_DATE_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_DATATYPE_DEFINITION_DATE_REF) Stage

func (a_datatype_definition_date_ref *A_DATATYPE_DEFINITION_DATE_REF) Stage(stage *Stage) *A_DATATYPE_DEFINITION_DATE_REF

Stage puts a_datatype_definition_date_ref to the model stage

func (*A_DATATYPE_DEFINITION_DATE_REF) Unstage

func (a_datatype_definition_date_ref *A_DATATYPE_DEFINITION_DATE_REF) Unstage(stage *Stage) *A_DATATYPE_DEFINITION_DATE_REF

Unstage removes a_datatype_definition_date_ref off the model stage

func (*A_DATATYPE_DEFINITION_DATE_REF) UnstageVoid

func (a_datatype_definition_date_ref *A_DATATYPE_DEFINITION_DATE_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_datatype_definition_date_ref off the model stage

type A_DATATYPE_DEFINITION_DATE_REF_WOP

type A_DATATYPE_DEFINITION_DATE_REF_WOP struct {
	Name string

	DATATYPE_DEFINITION_DATE_REF string
}

type A_DATATYPE_DEFINITION_ENUMERATION_REF

type A_DATATYPE_DEFINITION_ENUMERATION_REF struct {
	Name string `xml:"-"`

	// generated from element "DATATYPE-DEFINITION-ENUMERATION-REF" of type LOCAL-REF order 34 depth 3
	DATATYPE_DEFINITION_ENUMERATION_REF string `xml:"DATATYPE-DEFINITION-ENUMERATION-REF,omitempty"`
}

A_DATATYPE_DEFINITION_ENUMERATION_REF Named source within outer element "TYPE"

func CopyBranchA_DATATYPE_DEFINITION_ENUMERATION_REF

func CopyBranchA_DATATYPE_DEFINITION_ENUMERATION_REF(mapOrigCopy map[any]any, a_datatype_definition_enumeration_refFrom *A_DATATYPE_DEFINITION_ENUMERATION_REF) (a_datatype_definition_enumeration_refTo *A_DATATYPE_DEFINITION_ENUMERATION_REF)

func (*A_DATATYPE_DEFINITION_ENUMERATION_REF) Checkout

func (a_datatype_definition_enumeration_ref *A_DATATYPE_DEFINITION_ENUMERATION_REF) Checkout(stage *Stage) *A_DATATYPE_DEFINITION_ENUMERATION_REF

Checkout a_datatype_definition_enumeration_ref to the back repo (if it is already staged)

func (*A_DATATYPE_DEFINITION_ENUMERATION_REF) Commit

func (a_datatype_definition_enumeration_ref *A_DATATYPE_DEFINITION_ENUMERATION_REF) Commit(stage *Stage) *A_DATATYPE_DEFINITION_ENUMERATION_REF

commit a_datatype_definition_enumeration_ref to the back repo (if it is already staged)

func (*A_DATATYPE_DEFINITION_ENUMERATION_REF) CommitVoid

func (a_datatype_definition_enumeration_ref *A_DATATYPE_DEFINITION_ENUMERATION_REF) CommitVoid(stage *Stage)

func (*A_DATATYPE_DEFINITION_ENUMERATION_REF) CopyBasicFields

func (*A_DATATYPE_DEFINITION_ENUMERATION_REF) GetName

func (a_datatype_definition_enumeration_ref *A_DATATYPE_DEFINITION_ENUMERATION_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_DATATYPE_DEFINITION_ENUMERATION_REF) Stage

func (a_datatype_definition_enumeration_ref *A_DATATYPE_DEFINITION_ENUMERATION_REF) Stage(stage *Stage) *A_DATATYPE_DEFINITION_ENUMERATION_REF

Stage puts a_datatype_definition_enumeration_ref to the model stage

func (*A_DATATYPE_DEFINITION_ENUMERATION_REF) Unstage

func (a_datatype_definition_enumeration_ref *A_DATATYPE_DEFINITION_ENUMERATION_REF) Unstage(stage *Stage) *A_DATATYPE_DEFINITION_ENUMERATION_REF

Unstage removes a_datatype_definition_enumeration_ref off the model stage

func (*A_DATATYPE_DEFINITION_ENUMERATION_REF) UnstageVoid

func (a_datatype_definition_enumeration_ref *A_DATATYPE_DEFINITION_ENUMERATION_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_datatype_definition_enumeration_ref off the model stage

type A_DATATYPE_DEFINITION_ENUMERATION_REF_WOP

type A_DATATYPE_DEFINITION_ENUMERATION_REF_WOP struct {
	Name string

	DATATYPE_DEFINITION_ENUMERATION_REF string
}

type A_DATATYPE_DEFINITION_INTEGER_REF

type A_DATATYPE_DEFINITION_INTEGER_REF struct {
	Name string `xml:"-"`

	// generated from element "DATATYPE-DEFINITION-INTEGER-REF" of type LOCAL-REF order 44 depth 3
	DATATYPE_DEFINITION_INTEGER_REF string `xml:"DATATYPE-DEFINITION-INTEGER-REF,omitempty"`
}

A_DATATYPE_DEFINITION_INTEGER_REF Named source within outer element "TYPE"

func CopyBranchA_DATATYPE_DEFINITION_INTEGER_REF

func CopyBranchA_DATATYPE_DEFINITION_INTEGER_REF(mapOrigCopy map[any]any, a_datatype_definition_integer_refFrom *A_DATATYPE_DEFINITION_INTEGER_REF) (a_datatype_definition_integer_refTo *A_DATATYPE_DEFINITION_INTEGER_REF)

func (*A_DATATYPE_DEFINITION_INTEGER_REF) Checkout

func (a_datatype_definition_integer_ref *A_DATATYPE_DEFINITION_INTEGER_REF) Checkout(stage *Stage) *A_DATATYPE_DEFINITION_INTEGER_REF

Checkout a_datatype_definition_integer_ref to the back repo (if it is already staged)

func (*A_DATATYPE_DEFINITION_INTEGER_REF) Commit

func (a_datatype_definition_integer_ref *A_DATATYPE_DEFINITION_INTEGER_REF) Commit(stage *Stage) *A_DATATYPE_DEFINITION_INTEGER_REF

commit a_datatype_definition_integer_ref to the back repo (if it is already staged)

func (*A_DATATYPE_DEFINITION_INTEGER_REF) CommitVoid

func (a_datatype_definition_integer_ref *A_DATATYPE_DEFINITION_INTEGER_REF) CommitVoid(stage *Stage)

func (*A_DATATYPE_DEFINITION_INTEGER_REF) CopyBasicFields

func (*A_DATATYPE_DEFINITION_INTEGER_REF) GetName

func (a_datatype_definition_integer_ref *A_DATATYPE_DEFINITION_INTEGER_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_DATATYPE_DEFINITION_INTEGER_REF) Stage

func (a_datatype_definition_integer_ref *A_DATATYPE_DEFINITION_INTEGER_REF) Stage(stage *Stage) *A_DATATYPE_DEFINITION_INTEGER_REF

Stage puts a_datatype_definition_integer_ref to the model stage

func (*A_DATATYPE_DEFINITION_INTEGER_REF) Unstage

func (a_datatype_definition_integer_ref *A_DATATYPE_DEFINITION_INTEGER_REF) Unstage(stage *Stage) *A_DATATYPE_DEFINITION_INTEGER_REF

Unstage removes a_datatype_definition_integer_ref off the model stage

func (*A_DATATYPE_DEFINITION_INTEGER_REF) UnstageVoid

func (a_datatype_definition_integer_ref *A_DATATYPE_DEFINITION_INTEGER_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_datatype_definition_integer_ref off the model stage

type A_DATATYPE_DEFINITION_INTEGER_REF_WOP

type A_DATATYPE_DEFINITION_INTEGER_REF_WOP struct {
	Name string

	DATATYPE_DEFINITION_INTEGER_REF string
}

type A_DATATYPE_DEFINITION_REAL_REF

type A_DATATYPE_DEFINITION_REAL_REF struct {
	Name string `xml:"-"`

	// generated from element "DATATYPE-DEFINITION-REAL-REF" of type LOCAL-REF order 54 depth 3
	DATATYPE_DEFINITION_REAL_REF string `xml:"DATATYPE-DEFINITION-REAL-REF,omitempty"`
}

A_DATATYPE_DEFINITION_REAL_REF Named source within outer element "TYPE"

func CopyBranchA_DATATYPE_DEFINITION_REAL_REF

func CopyBranchA_DATATYPE_DEFINITION_REAL_REF(mapOrigCopy map[any]any, a_datatype_definition_real_refFrom *A_DATATYPE_DEFINITION_REAL_REF) (a_datatype_definition_real_refTo *A_DATATYPE_DEFINITION_REAL_REF)

func (*A_DATATYPE_DEFINITION_REAL_REF) Checkout

func (a_datatype_definition_real_ref *A_DATATYPE_DEFINITION_REAL_REF) Checkout(stage *Stage) *A_DATATYPE_DEFINITION_REAL_REF

Checkout a_datatype_definition_real_ref to the back repo (if it is already staged)

func (*A_DATATYPE_DEFINITION_REAL_REF) Commit

func (a_datatype_definition_real_ref *A_DATATYPE_DEFINITION_REAL_REF) Commit(stage *Stage) *A_DATATYPE_DEFINITION_REAL_REF

commit a_datatype_definition_real_ref to the back repo (if it is already staged)

func (*A_DATATYPE_DEFINITION_REAL_REF) CommitVoid

func (a_datatype_definition_real_ref *A_DATATYPE_DEFINITION_REAL_REF) CommitVoid(stage *Stage)

func (*A_DATATYPE_DEFINITION_REAL_REF) CopyBasicFields

func (*A_DATATYPE_DEFINITION_REAL_REF) GetName

func (a_datatype_definition_real_ref *A_DATATYPE_DEFINITION_REAL_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_DATATYPE_DEFINITION_REAL_REF) Stage

func (a_datatype_definition_real_ref *A_DATATYPE_DEFINITION_REAL_REF) Stage(stage *Stage) *A_DATATYPE_DEFINITION_REAL_REF

Stage puts a_datatype_definition_real_ref to the model stage

func (*A_DATATYPE_DEFINITION_REAL_REF) Unstage

func (a_datatype_definition_real_ref *A_DATATYPE_DEFINITION_REAL_REF) Unstage(stage *Stage) *A_DATATYPE_DEFINITION_REAL_REF

Unstage removes a_datatype_definition_real_ref off the model stage

func (*A_DATATYPE_DEFINITION_REAL_REF) UnstageVoid

func (a_datatype_definition_real_ref *A_DATATYPE_DEFINITION_REAL_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_datatype_definition_real_ref off the model stage

type A_DATATYPE_DEFINITION_REAL_REF_WOP

type A_DATATYPE_DEFINITION_REAL_REF_WOP struct {
	Name string

	DATATYPE_DEFINITION_REAL_REF string
}

type A_DATATYPE_DEFINITION_STRING_REF

type A_DATATYPE_DEFINITION_STRING_REF struct {
	Name string `xml:"-"`

	// generated from element "DATATYPE-DEFINITION-STRING-REF" of type LOCAL-REF order 64 depth 3
	DATATYPE_DEFINITION_STRING_REF string `xml:"DATATYPE-DEFINITION-STRING-REF,omitempty"`
}

A_DATATYPE_DEFINITION_STRING_REF Named source within outer element "TYPE"

func CopyBranchA_DATATYPE_DEFINITION_STRING_REF

func CopyBranchA_DATATYPE_DEFINITION_STRING_REF(mapOrigCopy map[any]any, a_datatype_definition_string_refFrom *A_DATATYPE_DEFINITION_STRING_REF) (a_datatype_definition_string_refTo *A_DATATYPE_DEFINITION_STRING_REF)

func (*A_DATATYPE_DEFINITION_STRING_REF) Checkout

func (a_datatype_definition_string_ref *A_DATATYPE_DEFINITION_STRING_REF) Checkout(stage *Stage) *A_DATATYPE_DEFINITION_STRING_REF

Checkout a_datatype_definition_string_ref to the back repo (if it is already staged)

func (*A_DATATYPE_DEFINITION_STRING_REF) Commit

func (a_datatype_definition_string_ref *A_DATATYPE_DEFINITION_STRING_REF) Commit(stage *Stage) *A_DATATYPE_DEFINITION_STRING_REF

commit a_datatype_definition_string_ref to the back repo (if it is already staged)

func (*A_DATATYPE_DEFINITION_STRING_REF) CommitVoid

func (a_datatype_definition_string_ref *A_DATATYPE_DEFINITION_STRING_REF) CommitVoid(stage *Stage)

func (*A_DATATYPE_DEFINITION_STRING_REF) CopyBasicFields

func (*A_DATATYPE_DEFINITION_STRING_REF) GetName

func (a_datatype_definition_string_ref *A_DATATYPE_DEFINITION_STRING_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_DATATYPE_DEFINITION_STRING_REF) Stage

func (a_datatype_definition_string_ref *A_DATATYPE_DEFINITION_STRING_REF) Stage(stage *Stage) *A_DATATYPE_DEFINITION_STRING_REF

Stage puts a_datatype_definition_string_ref to the model stage

func (*A_DATATYPE_DEFINITION_STRING_REF) Unstage

func (a_datatype_definition_string_ref *A_DATATYPE_DEFINITION_STRING_REF) Unstage(stage *Stage) *A_DATATYPE_DEFINITION_STRING_REF

Unstage removes a_datatype_definition_string_ref off the model stage

func (*A_DATATYPE_DEFINITION_STRING_REF) UnstageVoid

func (a_datatype_definition_string_ref *A_DATATYPE_DEFINITION_STRING_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_datatype_definition_string_ref off the model stage

type A_DATATYPE_DEFINITION_STRING_REF_WOP

type A_DATATYPE_DEFINITION_STRING_REF_WOP struct {
	Name string

	DATATYPE_DEFINITION_STRING_REF string
}

type A_DATATYPE_DEFINITION_XHTML_REF

type A_DATATYPE_DEFINITION_XHTML_REF struct {
	Name string `xml:"-"`

	// generated from element "DATATYPE-DEFINITION-XHTML-REF" of type LOCAL-REF order 74 depth 3
	DATATYPE_DEFINITION_XHTML_REF string `xml:"DATATYPE-DEFINITION-XHTML-REF,omitempty"`
}

A_DATATYPE_DEFINITION_XHTML_REF Named source within outer element "TYPE"

func CopyBranchA_DATATYPE_DEFINITION_XHTML_REF

func CopyBranchA_DATATYPE_DEFINITION_XHTML_REF(mapOrigCopy map[any]any, a_datatype_definition_xhtml_refFrom *A_DATATYPE_DEFINITION_XHTML_REF) (a_datatype_definition_xhtml_refTo *A_DATATYPE_DEFINITION_XHTML_REF)

func (*A_DATATYPE_DEFINITION_XHTML_REF) Checkout

func (a_datatype_definition_xhtml_ref *A_DATATYPE_DEFINITION_XHTML_REF) Checkout(stage *Stage) *A_DATATYPE_DEFINITION_XHTML_REF

Checkout a_datatype_definition_xhtml_ref to the back repo (if it is already staged)

func (*A_DATATYPE_DEFINITION_XHTML_REF) Commit

func (a_datatype_definition_xhtml_ref *A_DATATYPE_DEFINITION_XHTML_REF) Commit(stage *Stage) *A_DATATYPE_DEFINITION_XHTML_REF

commit a_datatype_definition_xhtml_ref to the back repo (if it is already staged)

func (*A_DATATYPE_DEFINITION_XHTML_REF) CommitVoid

func (a_datatype_definition_xhtml_ref *A_DATATYPE_DEFINITION_XHTML_REF) CommitVoid(stage *Stage)

func (*A_DATATYPE_DEFINITION_XHTML_REF) CopyBasicFields

func (*A_DATATYPE_DEFINITION_XHTML_REF) GetName

func (a_datatype_definition_xhtml_ref *A_DATATYPE_DEFINITION_XHTML_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_DATATYPE_DEFINITION_XHTML_REF) Stage

func (a_datatype_definition_xhtml_ref *A_DATATYPE_DEFINITION_XHTML_REF) Stage(stage *Stage) *A_DATATYPE_DEFINITION_XHTML_REF

Stage puts a_datatype_definition_xhtml_ref to the model stage

func (*A_DATATYPE_DEFINITION_XHTML_REF) Unstage

func (a_datatype_definition_xhtml_ref *A_DATATYPE_DEFINITION_XHTML_REF) Unstage(stage *Stage) *A_DATATYPE_DEFINITION_XHTML_REF

Unstage removes a_datatype_definition_xhtml_ref off the model stage

func (*A_DATATYPE_DEFINITION_XHTML_REF) UnstageVoid

func (a_datatype_definition_xhtml_ref *A_DATATYPE_DEFINITION_XHTML_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_datatype_definition_xhtml_ref off the model stage

type A_DATATYPE_DEFINITION_XHTML_REF_WOP

type A_DATATYPE_DEFINITION_XHTML_REF_WOP struct {
	Name string

	DATATYPE_DEFINITION_XHTML_REF string
}

type A_EDITABLE_ATTS

type A_EDITABLE_ATTS struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-DEFINITION-BOOLEAN-REF" of type LOCAL-REF order 78 depth 3
	ATTRIBUTE_DEFINITION_BOOLEAN_REF string `xml:"ATTRIBUTE-DEFINITION-BOOLEAN-REF,omitempty"`

	// generated from element "ATTRIBUTE-DEFINITION-DATE-REF" of type LOCAL-REF order 82 depth 3
	ATTRIBUTE_DEFINITION_DATE_REF string `xml:"ATTRIBUTE-DEFINITION-DATE-REF,omitempty"`

	// generated from element "ATTRIBUTE-DEFINITION-ENUMERATION-REF" of type LOCAL-REF order 86 depth 3
	ATTRIBUTE_DEFINITION_ENUMERATION_REF string `xml:"ATTRIBUTE-DEFINITION-ENUMERATION-REF,omitempty"`

	// generated from element "ATTRIBUTE-DEFINITION-INTEGER-REF" of type LOCAL-REF order 93 depth 3
	ATTRIBUTE_DEFINITION_INTEGER_REF string `xml:"ATTRIBUTE-DEFINITION-INTEGER-REF,omitempty"`

	// generated from element "ATTRIBUTE-DEFINITION-REAL-REF" of type LOCAL-REF order 97 depth 3
	ATTRIBUTE_DEFINITION_REAL_REF string `xml:"ATTRIBUTE-DEFINITION-REAL-REF,omitempty"`

	// generated from element "ATTRIBUTE-DEFINITION-STRING-REF" of type LOCAL-REF order 101 depth 3
	ATTRIBUTE_DEFINITION_STRING_REF string `xml:"ATTRIBUTE-DEFINITION-STRING-REF,omitempty"`

	// generated from element "ATTRIBUTE-DEFINITION-XHTML-REF" of type LOCAL-REF order 107 depth 3
	ATTRIBUTE_DEFINITION_XHTML_REF string `xml:"ATTRIBUTE-DEFINITION-XHTML-REF,omitempty"`
}

A_EDITABLE_ATTS Named source within outer element "EDITABLE-ATTS"

func CopyBranchA_EDITABLE_ATTS

func CopyBranchA_EDITABLE_ATTS(mapOrigCopy map[any]any, a_editable_attsFrom *A_EDITABLE_ATTS) (a_editable_attsTo *A_EDITABLE_ATTS)

func (*A_EDITABLE_ATTS) Checkout

func (a_editable_atts *A_EDITABLE_ATTS) Checkout(stage *Stage) *A_EDITABLE_ATTS

Checkout a_editable_atts to the back repo (if it is already staged)

func (*A_EDITABLE_ATTS) Commit

func (a_editable_atts *A_EDITABLE_ATTS) Commit(stage *Stage) *A_EDITABLE_ATTS

commit a_editable_atts to the back repo (if it is already staged)

func (*A_EDITABLE_ATTS) CommitVoid

func (a_editable_atts *A_EDITABLE_ATTS) CommitVoid(stage *Stage)

func (*A_EDITABLE_ATTS) CopyBasicFields

func (from *A_EDITABLE_ATTS) CopyBasicFields(to *A_EDITABLE_ATTS)

func (*A_EDITABLE_ATTS) GetName

func (a_editable_atts *A_EDITABLE_ATTS) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_EDITABLE_ATTS) Stage

func (a_editable_atts *A_EDITABLE_ATTS) Stage(stage *Stage) *A_EDITABLE_ATTS

Stage puts a_editable_atts to the model stage

func (*A_EDITABLE_ATTS) Unstage

func (a_editable_atts *A_EDITABLE_ATTS) Unstage(stage *Stage) *A_EDITABLE_ATTS

Unstage removes a_editable_atts off the model stage

func (*A_EDITABLE_ATTS) UnstageVoid

func (a_editable_atts *A_EDITABLE_ATTS) UnstageVoid(stage *Stage)

UnstageVoid removes a_editable_atts off the model stage

type A_EDITABLE_ATTS_WOP

type A_EDITABLE_ATTS_WOP struct {
	Name string

	ATTRIBUTE_DEFINITION_BOOLEAN_REF string

	ATTRIBUTE_DEFINITION_DATE_REF string

	ATTRIBUTE_DEFINITION_ENUMERATION_REF string

	ATTRIBUTE_DEFINITION_INTEGER_REF string

	ATTRIBUTE_DEFINITION_REAL_REF string

	ATTRIBUTE_DEFINITION_STRING_REF string

	ATTRIBUTE_DEFINITION_XHTML_REF string
}

type A_ENUM_VALUE_REF

type A_ENUM_VALUE_REF struct {
	Name string `xml:"-"`

	// generated from element "ENUM-VALUE-REF" of type LOCAL-REF order 89 depth 3
	ENUM_VALUE_REF string `xml:"ENUM-VALUE-REF,omitempty"`
}

A_ENUM_VALUE_REF Named source within outer element "VALUES"

func CopyBranchA_ENUM_VALUE_REF

func CopyBranchA_ENUM_VALUE_REF(mapOrigCopy map[any]any, a_enum_value_refFrom *A_ENUM_VALUE_REF) (a_enum_value_refTo *A_ENUM_VALUE_REF)

func (*A_ENUM_VALUE_REF) Checkout

func (a_enum_value_ref *A_ENUM_VALUE_REF) Checkout(stage *Stage) *A_ENUM_VALUE_REF

Checkout a_enum_value_ref to the back repo (if it is already staged)

func (*A_ENUM_VALUE_REF) Commit

func (a_enum_value_ref *A_ENUM_VALUE_REF) Commit(stage *Stage) *A_ENUM_VALUE_REF

commit a_enum_value_ref to the back repo (if it is already staged)

func (*A_ENUM_VALUE_REF) CommitVoid

func (a_enum_value_ref *A_ENUM_VALUE_REF) CommitVoid(stage *Stage)

func (*A_ENUM_VALUE_REF) CopyBasicFields

func (from *A_ENUM_VALUE_REF) CopyBasicFields(to *A_ENUM_VALUE_REF)

func (*A_ENUM_VALUE_REF) GetName

func (a_enum_value_ref *A_ENUM_VALUE_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_ENUM_VALUE_REF) Stage

func (a_enum_value_ref *A_ENUM_VALUE_REF) Stage(stage *Stage) *A_ENUM_VALUE_REF

Stage puts a_enum_value_ref to the model stage

func (*A_ENUM_VALUE_REF) Unstage

func (a_enum_value_ref *A_ENUM_VALUE_REF) Unstage(stage *Stage) *A_ENUM_VALUE_REF

Unstage removes a_enum_value_ref off the model stage

func (*A_ENUM_VALUE_REF) UnstageVoid

func (a_enum_value_ref *A_ENUM_VALUE_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_enum_value_ref off the model stage

type A_ENUM_VALUE_REF_WOP

type A_ENUM_VALUE_REF_WOP struct {
	Name string

	ENUM_VALUE_REF string
}

type A_OBJECT

type A_OBJECT struct {
	Name string `xml:"-"`

	// generated from element "SPEC-OBJECT-REF" of type LOCAL-REF order 240 depth 3
	SPEC_OBJECT_REF string `xml:"SPEC-OBJECT-REF,omitempty"`
}

A_OBJECT Named source within outer element "OBJECT"

func CopyBranchA_OBJECT

func CopyBranchA_OBJECT(mapOrigCopy map[any]any, a_objectFrom *A_OBJECT) (a_objectTo *A_OBJECT)

func (*A_OBJECT) Checkout

func (a_object *A_OBJECT) Checkout(stage *Stage) *A_OBJECT

Checkout a_object to the back repo (if it is already staged)

func (*A_OBJECT) Commit

func (a_object *A_OBJECT) Commit(stage *Stage) *A_OBJECT

commit a_object to the back repo (if it is already staged)

func (*A_OBJECT) CommitVoid

func (a_object *A_OBJECT) CommitVoid(stage *Stage)

func (*A_OBJECT) CopyBasicFields

func (from *A_OBJECT) CopyBasicFields(to *A_OBJECT)

func (*A_OBJECT) GetName

func (a_object *A_OBJECT) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_OBJECT) Stage

func (a_object *A_OBJECT) Stage(stage *Stage) *A_OBJECT

Stage puts a_object to the model stage

func (*A_OBJECT) Unstage

func (a_object *A_OBJECT) Unstage(stage *Stage) *A_OBJECT

Unstage removes a_object off the model stage

func (*A_OBJECT) UnstageVoid

func (a_object *A_OBJECT) UnstageVoid(stage *Stage)

UnstageVoid removes a_object off the model stage

type A_OBJECT_WOP

type A_OBJECT_WOP struct {
	Name string

	SPEC_OBJECT_REF string
}

type A_PROPERTIES

type A_PROPERTIES struct {
	Name string `xml:"-"`

	// generated from element "EMBEDDED-VALUE" of type EMBEDDED-VALUE order 146 depth 3
	EMBEDDED_VALUE *EMBEDDED_VALUE `xml:"EMBEDDED-VALUE,omitempty"`
}

A_PROPERTIES Named source within outer element "PROPERTIES"

func CopyBranchA_PROPERTIES

func CopyBranchA_PROPERTIES(mapOrigCopy map[any]any, a_propertiesFrom *A_PROPERTIES) (a_propertiesTo *A_PROPERTIES)

func (*A_PROPERTIES) Checkout

func (a_properties *A_PROPERTIES) Checkout(stage *Stage) *A_PROPERTIES

Checkout a_properties to the back repo (if it is already staged)

func (*A_PROPERTIES) Commit

func (a_properties *A_PROPERTIES) Commit(stage *Stage) *A_PROPERTIES

commit a_properties to the back repo (if it is already staged)

func (*A_PROPERTIES) CommitVoid

func (a_properties *A_PROPERTIES) CommitVoid(stage *Stage)

func (*A_PROPERTIES) CopyBasicFields

func (from *A_PROPERTIES) CopyBasicFields(to *A_PROPERTIES)

func (*A_PROPERTIES) GetName

func (a_properties *A_PROPERTIES) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_PROPERTIES) Stage

func (a_properties *A_PROPERTIES) Stage(stage *Stage) *A_PROPERTIES

Stage puts a_properties to the model stage

func (*A_PROPERTIES) Unstage

func (a_properties *A_PROPERTIES) Unstage(stage *Stage) *A_PROPERTIES

Unstage removes a_properties off the model stage

func (*A_PROPERTIES) UnstageVoid

func (a_properties *A_PROPERTIES) UnstageVoid(stage *Stage)

UnstageVoid removes a_properties off the model stage

type A_PROPERTIES_WOP

type A_PROPERTIES_WOP struct {
	Name string
}

type A_RELATION_GROUP_TYPE_REF

type A_RELATION_GROUP_TYPE_REF struct {
	Name string `xml:"-"`

	// generated from element "RELATION-GROUP-TYPE-REF" of type LOCAL-REF order 162 depth 3
	RELATION_GROUP_TYPE_REF string `xml:"RELATION-GROUP-TYPE-REF,omitempty"`
}

A_RELATION_GROUP_TYPE_REF Named source within outer element "TYPE"

func CopyBranchA_RELATION_GROUP_TYPE_REF

func CopyBranchA_RELATION_GROUP_TYPE_REF(mapOrigCopy map[any]any, a_relation_group_type_refFrom *A_RELATION_GROUP_TYPE_REF) (a_relation_group_type_refTo *A_RELATION_GROUP_TYPE_REF)

func (*A_RELATION_GROUP_TYPE_REF) Checkout

func (a_relation_group_type_ref *A_RELATION_GROUP_TYPE_REF) Checkout(stage *Stage) *A_RELATION_GROUP_TYPE_REF

Checkout a_relation_group_type_ref to the back repo (if it is already staged)

func (*A_RELATION_GROUP_TYPE_REF) Commit

func (a_relation_group_type_ref *A_RELATION_GROUP_TYPE_REF) Commit(stage *Stage) *A_RELATION_GROUP_TYPE_REF

commit a_relation_group_type_ref to the back repo (if it is already staged)

func (*A_RELATION_GROUP_TYPE_REF) CommitVoid

func (a_relation_group_type_ref *A_RELATION_GROUP_TYPE_REF) CommitVoid(stage *Stage)

func (*A_RELATION_GROUP_TYPE_REF) CopyBasicFields

func (from *A_RELATION_GROUP_TYPE_REF) CopyBasicFields(to *A_RELATION_GROUP_TYPE_REF)

func (*A_RELATION_GROUP_TYPE_REF) GetName

func (a_relation_group_type_ref *A_RELATION_GROUP_TYPE_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_RELATION_GROUP_TYPE_REF) Stage

func (a_relation_group_type_ref *A_RELATION_GROUP_TYPE_REF) Stage(stage *Stage) *A_RELATION_GROUP_TYPE_REF

Stage puts a_relation_group_type_ref to the model stage

func (*A_RELATION_GROUP_TYPE_REF) Unstage

func (a_relation_group_type_ref *A_RELATION_GROUP_TYPE_REF) Unstage(stage *Stage) *A_RELATION_GROUP_TYPE_REF

Unstage removes a_relation_group_type_ref off the model stage

func (*A_RELATION_GROUP_TYPE_REF) UnstageVoid

func (a_relation_group_type_ref *A_RELATION_GROUP_TYPE_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_relation_group_type_ref off the model stage

type A_RELATION_GROUP_TYPE_REF_WOP

type A_RELATION_GROUP_TYPE_REF_WOP struct {
	Name string

	RELATION_GROUP_TYPE_REF string
}

type A_SOURCE_1

type A_SOURCE_1 struct {
	Name string `xml:"-"`

	// generated from element "SPEC-OBJECT-REF" of type GLOBAL-REF order 285 depth 3
	SPEC_OBJECT_REF string `xml:"SPEC-OBJECT-REF,omitempty"`
}

A_SOURCE_1 Named source within outer element "TARGET"

func CopyBranchA_SOURCE_1

func CopyBranchA_SOURCE_1(mapOrigCopy map[any]any, a_source_1From *A_SOURCE_1) (a_source_1To *A_SOURCE_1)

func (*A_SOURCE_1) Checkout

func (a_source_1 *A_SOURCE_1) Checkout(stage *Stage) *A_SOURCE_1

Checkout a_source_1 to the back repo (if it is already staged)

func (*A_SOURCE_1) Commit

func (a_source_1 *A_SOURCE_1) Commit(stage *Stage) *A_SOURCE_1

commit a_source_1 to the back repo (if it is already staged)

func (*A_SOURCE_1) CommitVoid

func (a_source_1 *A_SOURCE_1) CommitVoid(stage *Stage)

func (*A_SOURCE_1) CopyBasicFields

func (from *A_SOURCE_1) CopyBasicFields(to *A_SOURCE_1)

func (*A_SOURCE_1) GetName

func (a_source_1 *A_SOURCE_1) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_SOURCE_1) Stage

func (a_source_1 *A_SOURCE_1) Stage(stage *Stage) *A_SOURCE_1

Stage puts a_source_1 to the model stage

func (*A_SOURCE_1) Unstage

func (a_source_1 *A_SOURCE_1) Unstage(stage *Stage) *A_SOURCE_1

Unstage removes a_source_1 off the model stage

func (*A_SOURCE_1) UnstageVoid

func (a_source_1 *A_SOURCE_1) UnstageVoid(stage *Stage)

UnstageVoid removes a_source_1 off the model stage

type A_SOURCE_1_WOP

type A_SOURCE_1_WOP struct {
	Name string

	SPEC_OBJECT_REF string
}

type A_SOURCE_SPECIFICATION_1

type A_SOURCE_SPECIFICATION_1 struct {
	Name string `xml:"-"`

	// generated from element "SPECIFICATION-REF" of type GLOBAL-REF order 153 depth 3
	SPECIFICATION_REF Enum_GLOBAL_REF `xml:"SPECIFICATION-REF,omitempty"`
}

A_SOURCE_SPECIFICATION_1 Named source within outer element "TARGET-SPECIFICATION"

func CopyBranchA_SOURCE_SPECIFICATION_1

func CopyBranchA_SOURCE_SPECIFICATION_1(mapOrigCopy map[any]any, a_source_specification_1From *A_SOURCE_SPECIFICATION_1) (a_source_specification_1To *A_SOURCE_SPECIFICATION_1)

func (*A_SOURCE_SPECIFICATION_1) Checkout

func (a_source_specification_1 *A_SOURCE_SPECIFICATION_1) Checkout(stage *Stage) *A_SOURCE_SPECIFICATION_1

Checkout a_source_specification_1 to the back repo (if it is already staged)

func (*A_SOURCE_SPECIFICATION_1) Commit

func (a_source_specification_1 *A_SOURCE_SPECIFICATION_1) Commit(stage *Stage) *A_SOURCE_SPECIFICATION_1

commit a_source_specification_1 to the back repo (if it is already staged)

func (*A_SOURCE_SPECIFICATION_1) CommitVoid

func (a_source_specification_1 *A_SOURCE_SPECIFICATION_1) CommitVoid(stage *Stage)

func (*A_SOURCE_SPECIFICATION_1) CopyBasicFields

func (from *A_SOURCE_SPECIFICATION_1) CopyBasicFields(to *A_SOURCE_SPECIFICATION_1)

func (*A_SOURCE_SPECIFICATION_1) GetName

func (a_source_specification_1 *A_SOURCE_SPECIFICATION_1) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_SOURCE_SPECIFICATION_1) Stage

func (a_source_specification_1 *A_SOURCE_SPECIFICATION_1) Stage(stage *Stage) *A_SOURCE_SPECIFICATION_1

Stage puts a_source_specification_1 to the model stage

func (*A_SOURCE_SPECIFICATION_1) Unstage

func (a_source_specification_1 *A_SOURCE_SPECIFICATION_1) Unstage(stage *Stage) *A_SOURCE_SPECIFICATION_1

Unstage removes a_source_specification_1 off the model stage

func (*A_SOURCE_SPECIFICATION_1) UnstageVoid

func (a_source_specification_1 *A_SOURCE_SPECIFICATION_1) UnstageVoid(stage *Stage)

UnstageVoid removes a_source_specification_1 off the model stage

type A_SOURCE_SPECIFICATION_1_WOP

type A_SOURCE_SPECIFICATION_1_WOP struct {
	Name string

	SPECIFICATION_REF Enum_GLOBAL_REF
}

type A_SPECIFICATIONS

type A_SPECIFICATIONS struct {
	Name string `xml:"-"`

	// generated from element "SPECIFICATION" of type SPECIFICATION order 210 depth 3
	SPECIFICATION []*SPECIFICATION `xml:"SPECIFICATION,omitempty"`
}

A_SPECIFICATIONS Named source within outer element "SPECIFICATIONS"

func CopyBranchA_SPECIFICATIONS

func CopyBranchA_SPECIFICATIONS(mapOrigCopy map[any]any, a_specificationsFrom *A_SPECIFICATIONS) (a_specificationsTo *A_SPECIFICATIONS)

func (*A_SPECIFICATIONS) Checkout

func (a_specifications *A_SPECIFICATIONS) Checkout(stage *Stage) *A_SPECIFICATIONS

Checkout a_specifications to the back repo (if it is already staged)

func (*A_SPECIFICATIONS) Commit

func (a_specifications *A_SPECIFICATIONS) Commit(stage *Stage) *A_SPECIFICATIONS

commit a_specifications to the back repo (if it is already staged)

func (*A_SPECIFICATIONS) CommitVoid

func (a_specifications *A_SPECIFICATIONS) CommitVoid(stage *Stage)

func (*A_SPECIFICATIONS) CopyBasicFields

func (from *A_SPECIFICATIONS) CopyBasicFields(to *A_SPECIFICATIONS)

func (*A_SPECIFICATIONS) GetName

func (a_specifications *A_SPECIFICATIONS) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_SPECIFICATIONS) Stage

func (a_specifications *A_SPECIFICATIONS) Stage(stage *Stage) *A_SPECIFICATIONS

Stage puts a_specifications to the model stage

func (*A_SPECIFICATIONS) Unstage

func (a_specifications *A_SPECIFICATIONS) Unstage(stage *Stage) *A_SPECIFICATIONS

Unstage removes a_specifications off the model stage

func (*A_SPECIFICATIONS) UnstageVoid

func (a_specifications *A_SPECIFICATIONS) UnstageVoid(stage *Stage)

UnstageVoid removes a_specifications off the model stage

type A_SPECIFICATIONS_WOP

type A_SPECIFICATIONS_WOP struct {
	Name string
}

type A_SPECIFICATION_TYPE_REF

type A_SPECIFICATION_TYPE_REF struct {
	Name string `xml:"-"`

	// generated from element "SPECIFICATION-TYPE-REF" of type LOCAL-REF order 323 depth 3
	SPECIFICATION_TYPE_REF string `xml:"SPECIFICATION-TYPE-REF,omitempty"`
}

A_SPECIFICATION_TYPE_REF Named source within outer element "TYPE"

func CopyBranchA_SPECIFICATION_TYPE_REF

func CopyBranchA_SPECIFICATION_TYPE_REF(mapOrigCopy map[any]any, a_specification_type_refFrom *A_SPECIFICATION_TYPE_REF) (a_specification_type_refTo *A_SPECIFICATION_TYPE_REF)

func (*A_SPECIFICATION_TYPE_REF) Checkout

func (a_specification_type_ref *A_SPECIFICATION_TYPE_REF) Checkout(stage *Stage) *A_SPECIFICATION_TYPE_REF

Checkout a_specification_type_ref to the back repo (if it is already staged)

func (*A_SPECIFICATION_TYPE_REF) Commit

func (a_specification_type_ref *A_SPECIFICATION_TYPE_REF) Commit(stage *Stage) *A_SPECIFICATION_TYPE_REF

commit a_specification_type_ref to the back repo (if it is already staged)

func (*A_SPECIFICATION_TYPE_REF) CommitVoid

func (a_specification_type_ref *A_SPECIFICATION_TYPE_REF) CommitVoid(stage *Stage)

func (*A_SPECIFICATION_TYPE_REF) CopyBasicFields

func (from *A_SPECIFICATION_TYPE_REF) CopyBasicFields(to *A_SPECIFICATION_TYPE_REF)

func (*A_SPECIFICATION_TYPE_REF) GetName

func (a_specification_type_ref *A_SPECIFICATION_TYPE_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_SPECIFICATION_TYPE_REF) Stage

func (a_specification_type_ref *A_SPECIFICATION_TYPE_REF) Stage(stage *Stage) *A_SPECIFICATION_TYPE_REF

Stage puts a_specification_type_ref to the model stage

func (*A_SPECIFICATION_TYPE_REF) Unstage

func (a_specification_type_ref *A_SPECIFICATION_TYPE_REF) Unstage(stage *Stage) *A_SPECIFICATION_TYPE_REF

Unstage removes a_specification_type_ref off the model stage

func (*A_SPECIFICATION_TYPE_REF) UnstageVoid

func (a_specification_type_ref *A_SPECIFICATION_TYPE_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_specification_type_ref off the model stage

type A_SPECIFICATION_TYPE_REF_WOP

type A_SPECIFICATION_TYPE_REF_WOP struct {
	Name string

	SPECIFICATION_TYPE_REF string
}

type A_SPECIFIED_VALUES

type A_SPECIFIED_VALUES struct {
	Name string `xml:"-"`

	// generated from element "ENUM-VALUE" of type ENUM-VALUE order 122 depth 3
	ENUM_VALUE []*ENUM_VALUE `xml:"ENUM-VALUE,omitempty"`
}

A_SPECIFIED_VALUES Named source within outer element "SPECIFIED-VALUES"

func CopyBranchA_SPECIFIED_VALUES

func CopyBranchA_SPECIFIED_VALUES(mapOrigCopy map[any]any, a_specified_valuesFrom *A_SPECIFIED_VALUES) (a_specified_valuesTo *A_SPECIFIED_VALUES)

func (*A_SPECIFIED_VALUES) Checkout

func (a_specified_values *A_SPECIFIED_VALUES) Checkout(stage *Stage) *A_SPECIFIED_VALUES

Checkout a_specified_values to the back repo (if it is already staged)

func (*A_SPECIFIED_VALUES) Commit

func (a_specified_values *A_SPECIFIED_VALUES) Commit(stage *Stage) *A_SPECIFIED_VALUES

commit a_specified_values to the back repo (if it is already staged)

func (*A_SPECIFIED_VALUES) CommitVoid

func (a_specified_values *A_SPECIFIED_VALUES) CommitVoid(stage *Stage)

func (*A_SPECIFIED_VALUES) CopyBasicFields

func (from *A_SPECIFIED_VALUES) CopyBasicFields(to *A_SPECIFIED_VALUES)

func (*A_SPECIFIED_VALUES) GetName

func (a_specified_values *A_SPECIFIED_VALUES) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_SPECIFIED_VALUES) Stage

func (a_specified_values *A_SPECIFIED_VALUES) Stage(stage *Stage) *A_SPECIFIED_VALUES

Stage puts a_specified_values to the model stage

func (*A_SPECIFIED_VALUES) Unstage

func (a_specified_values *A_SPECIFIED_VALUES) Unstage(stage *Stage) *A_SPECIFIED_VALUES

Unstage removes a_specified_values off the model stage

func (*A_SPECIFIED_VALUES) UnstageVoid

func (a_specified_values *A_SPECIFIED_VALUES) UnstageVoid(stage *Stage)

UnstageVoid removes a_specified_values off the model stage

type A_SPECIFIED_VALUES_WOP

type A_SPECIFIED_VALUES_WOP struct {
	Name string
}

type A_SPEC_ATTRIBUTES

type A_SPEC_ATTRIBUTES struct {
	Name string `xml:"-"`

	// generated from element "ATTRIBUTE-DEFINITION-BOOLEAN" of type ATTRIBUTE-DEFINITION-BOOLEAN order 169 depth 3
	ATTRIBUTE_DEFINITION_BOOLEAN []*ATTRIBUTE_DEFINITION_BOOLEAN `xml:"ATTRIBUTE-DEFINITION-BOOLEAN,omitempty"`

	// generated from element "ATTRIBUTE-DEFINITION-DATE" of type ATTRIBUTE-DEFINITION-DATE order 170 depth 3
	ATTRIBUTE_DEFINITION_DATE []*ATTRIBUTE_DEFINITION_DATE `xml:"ATTRIBUTE-DEFINITION-DATE,omitempty"`

	// generated from element "ATTRIBUTE-DEFINITION-ENUMERATION" of type ATTRIBUTE-DEFINITION-ENUMERATION order 171 depth 3
	ATTRIBUTE_DEFINITION_ENUMERATION []*ATTRIBUTE_DEFINITION_ENUMERATION `xml:"ATTRIBUTE-DEFINITION-ENUMERATION,omitempty"`

	// generated from element "ATTRIBUTE-DEFINITION-INTEGER" of type ATTRIBUTE-DEFINITION-INTEGER order 172 depth 3
	ATTRIBUTE_DEFINITION_INTEGER []*ATTRIBUTE_DEFINITION_INTEGER `xml:"ATTRIBUTE-DEFINITION-INTEGER,omitempty"`

	// generated from element "ATTRIBUTE-DEFINITION-REAL" of type ATTRIBUTE-DEFINITION-REAL order 173 depth 3
	ATTRIBUTE_DEFINITION_REAL []*ATTRIBUTE_DEFINITION_REAL `xml:"ATTRIBUTE-DEFINITION-REAL,omitempty"`

	// generated from element "ATTRIBUTE-DEFINITION-STRING" of type ATTRIBUTE-DEFINITION-STRING order 174 depth 3
	ATTRIBUTE_DEFINITION_STRING []*ATTRIBUTE_DEFINITION_STRING `xml:"ATTRIBUTE-DEFINITION-STRING,omitempty"`

	// generated from element "ATTRIBUTE-DEFINITION-XHTML" of type ATTRIBUTE-DEFINITION-XHTML order 175 depth 3
	ATTRIBUTE_DEFINITION_XHTML []*ATTRIBUTE_DEFINITION_XHTML `xml:"ATTRIBUTE-DEFINITION-XHTML,omitempty"`
}

A_SPEC_ATTRIBUTES Named source within outer element "SPEC-ATTRIBUTES"

func CopyBranchA_SPEC_ATTRIBUTES

func CopyBranchA_SPEC_ATTRIBUTES(mapOrigCopy map[any]any, a_spec_attributesFrom *A_SPEC_ATTRIBUTES) (a_spec_attributesTo *A_SPEC_ATTRIBUTES)

func (*A_SPEC_ATTRIBUTES) Checkout

func (a_spec_attributes *A_SPEC_ATTRIBUTES) Checkout(stage *Stage) *A_SPEC_ATTRIBUTES

Checkout a_spec_attributes to the back repo (if it is already staged)

func (*A_SPEC_ATTRIBUTES) Commit

func (a_spec_attributes *A_SPEC_ATTRIBUTES) Commit(stage *Stage) *A_SPEC_ATTRIBUTES

commit a_spec_attributes to the back repo (if it is already staged)

func (*A_SPEC_ATTRIBUTES) CommitVoid

func (a_spec_attributes *A_SPEC_ATTRIBUTES) CommitVoid(stage *Stage)

func (*A_SPEC_ATTRIBUTES) CopyBasicFields

func (from *A_SPEC_ATTRIBUTES) CopyBasicFields(to *A_SPEC_ATTRIBUTES)

func (*A_SPEC_ATTRIBUTES) GetName

func (a_spec_attributes *A_SPEC_ATTRIBUTES) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_SPEC_ATTRIBUTES) Stage

func (a_spec_attributes *A_SPEC_ATTRIBUTES) Stage(stage *Stage) *A_SPEC_ATTRIBUTES

Stage puts a_spec_attributes to the model stage

func (*A_SPEC_ATTRIBUTES) Unstage

func (a_spec_attributes *A_SPEC_ATTRIBUTES) Unstage(stage *Stage) *A_SPEC_ATTRIBUTES

Unstage removes a_spec_attributes off the model stage

func (*A_SPEC_ATTRIBUTES) UnstageVoid

func (a_spec_attributes *A_SPEC_ATTRIBUTES) UnstageVoid(stage *Stage)

UnstageVoid removes a_spec_attributes off the model stage

type A_SPEC_ATTRIBUTES_WOP

type A_SPEC_ATTRIBUTES_WOP struct {
	Name string
}

type A_SPEC_OBJECTS

type A_SPEC_OBJECTS struct {
	Name string `xml:"-"`

	// generated from element "SPEC-OBJECT" of type SPEC-OBJECT order 204 depth 3
	SPEC_OBJECT []*SPEC_OBJECT `xml:"SPEC-OBJECT,omitempty"`
}

A_SPEC_OBJECTS Named source within outer element "SPEC-OBJECTS"

func CopyBranchA_SPEC_OBJECTS

func CopyBranchA_SPEC_OBJECTS(mapOrigCopy map[any]any, a_spec_objectsFrom *A_SPEC_OBJECTS) (a_spec_objectsTo *A_SPEC_OBJECTS)

func (*A_SPEC_OBJECTS) Checkout

func (a_spec_objects *A_SPEC_OBJECTS) Checkout(stage *Stage) *A_SPEC_OBJECTS

Checkout a_spec_objects to the back repo (if it is already staged)

func (*A_SPEC_OBJECTS) Commit

func (a_spec_objects *A_SPEC_OBJECTS) Commit(stage *Stage) *A_SPEC_OBJECTS

commit a_spec_objects to the back repo (if it is already staged)

func (*A_SPEC_OBJECTS) CommitVoid

func (a_spec_objects *A_SPEC_OBJECTS) CommitVoid(stage *Stage)

func (*A_SPEC_OBJECTS) CopyBasicFields

func (from *A_SPEC_OBJECTS) CopyBasicFields(to *A_SPEC_OBJECTS)

func (*A_SPEC_OBJECTS) GetName

func (a_spec_objects *A_SPEC_OBJECTS) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_SPEC_OBJECTS) Stage

func (a_spec_objects *A_SPEC_OBJECTS) Stage(stage *Stage) *A_SPEC_OBJECTS

Stage puts a_spec_objects to the model stage

func (*A_SPEC_OBJECTS) Unstage

func (a_spec_objects *A_SPEC_OBJECTS) Unstage(stage *Stage) *A_SPEC_OBJECTS

Unstage removes a_spec_objects off the model stage

func (*A_SPEC_OBJECTS) UnstageVoid

func (a_spec_objects *A_SPEC_OBJECTS) UnstageVoid(stage *Stage)

UnstageVoid removes a_spec_objects off the model stage

type A_SPEC_OBJECTS_WOP

type A_SPEC_OBJECTS_WOP struct {
	Name string
}

type A_SPEC_OBJECT_TYPE_REF

type A_SPEC_OBJECT_TYPE_REF struct {
	Name string `xml:"-"`

	// generated from element "SPEC-OBJECT-TYPE-REF" of type LOCAL-REF order 256 depth 3
	SPEC_OBJECT_TYPE_REF string `xml:"SPEC-OBJECT-TYPE-REF,omitempty"`
}

A_SPEC_OBJECT_TYPE_REF Named source within outer element "TYPE"

func CopyBranchA_SPEC_OBJECT_TYPE_REF

func CopyBranchA_SPEC_OBJECT_TYPE_REF(mapOrigCopy map[any]any, a_spec_object_type_refFrom *A_SPEC_OBJECT_TYPE_REF) (a_spec_object_type_refTo *A_SPEC_OBJECT_TYPE_REF)

func (*A_SPEC_OBJECT_TYPE_REF) Checkout

func (a_spec_object_type_ref *A_SPEC_OBJECT_TYPE_REF) Checkout(stage *Stage) *A_SPEC_OBJECT_TYPE_REF

Checkout a_spec_object_type_ref to the back repo (if it is already staged)

func (*A_SPEC_OBJECT_TYPE_REF) Commit

func (a_spec_object_type_ref *A_SPEC_OBJECT_TYPE_REF) Commit(stage *Stage) *A_SPEC_OBJECT_TYPE_REF

commit a_spec_object_type_ref to the back repo (if it is already staged)

func (*A_SPEC_OBJECT_TYPE_REF) CommitVoid

func (a_spec_object_type_ref *A_SPEC_OBJECT_TYPE_REF) CommitVoid(stage *Stage)

func (*A_SPEC_OBJECT_TYPE_REF) CopyBasicFields

func (from *A_SPEC_OBJECT_TYPE_REF) CopyBasicFields(to *A_SPEC_OBJECT_TYPE_REF)

func (*A_SPEC_OBJECT_TYPE_REF) GetName

func (a_spec_object_type_ref *A_SPEC_OBJECT_TYPE_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_SPEC_OBJECT_TYPE_REF) Stage

func (a_spec_object_type_ref *A_SPEC_OBJECT_TYPE_REF) Stage(stage *Stage) *A_SPEC_OBJECT_TYPE_REF

Stage puts a_spec_object_type_ref to the model stage

func (*A_SPEC_OBJECT_TYPE_REF) Unstage

func (a_spec_object_type_ref *A_SPEC_OBJECT_TYPE_REF) Unstage(stage *Stage) *A_SPEC_OBJECT_TYPE_REF

Unstage removes a_spec_object_type_ref off the model stage

func (*A_SPEC_OBJECT_TYPE_REF) UnstageVoid

func (a_spec_object_type_ref *A_SPEC_OBJECT_TYPE_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_spec_object_type_ref off the model stage

type A_SPEC_OBJECT_TYPE_REF_WOP

type A_SPEC_OBJECT_TYPE_REF_WOP struct {
	Name string

	SPEC_OBJECT_TYPE_REF string
}

type A_SPEC_RELATIONS

type A_SPEC_RELATIONS struct {
	Name string `xml:"-"`

	// generated from element "SPEC-RELATION" of type SPEC-RELATION order 207 depth 3
	SPEC_RELATION []*SPEC_RELATION `xml:"SPEC-RELATION,omitempty"`
}

A_SPEC_RELATIONS Named source within outer element "SPEC-RELATIONS"

func CopyBranchA_SPEC_RELATIONS

func CopyBranchA_SPEC_RELATIONS(mapOrigCopy map[any]any, a_spec_relationsFrom *A_SPEC_RELATIONS) (a_spec_relationsTo *A_SPEC_RELATIONS)

func (*A_SPEC_RELATIONS) Checkout

func (a_spec_relations *A_SPEC_RELATIONS) Checkout(stage *Stage) *A_SPEC_RELATIONS

Checkout a_spec_relations to the back repo (if it is already staged)

func (*A_SPEC_RELATIONS) Commit

func (a_spec_relations *A_SPEC_RELATIONS) Commit(stage *Stage) *A_SPEC_RELATIONS

commit a_spec_relations to the back repo (if it is already staged)

func (*A_SPEC_RELATIONS) CommitVoid

func (a_spec_relations *A_SPEC_RELATIONS) CommitVoid(stage *Stage)

func (*A_SPEC_RELATIONS) CopyBasicFields

func (from *A_SPEC_RELATIONS) CopyBasicFields(to *A_SPEC_RELATIONS)

func (*A_SPEC_RELATIONS) GetName

func (a_spec_relations *A_SPEC_RELATIONS) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_SPEC_RELATIONS) Stage

func (a_spec_relations *A_SPEC_RELATIONS) Stage(stage *Stage) *A_SPEC_RELATIONS

Stage puts a_spec_relations to the model stage

func (*A_SPEC_RELATIONS) Unstage

func (a_spec_relations *A_SPEC_RELATIONS) Unstage(stage *Stage) *A_SPEC_RELATIONS

Unstage removes a_spec_relations off the model stage

func (*A_SPEC_RELATIONS) UnstageVoid

func (a_spec_relations *A_SPEC_RELATIONS) UnstageVoid(stage *Stage)

UnstageVoid removes a_spec_relations off the model stage

type A_SPEC_RELATIONS_WOP

type A_SPEC_RELATIONS_WOP struct {
	Name string
}

type A_SPEC_RELATION_GROUPS

type A_SPEC_RELATION_GROUPS struct {
	Name string `xml:"-"`

	// generated from element "RELATION-GROUP" of type RELATION-GROUP order 213 depth 3
	RELATION_GROUP []*RELATION_GROUP `xml:"RELATION-GROUP,omitempty"`
}

A_SPEC_RELATION_GROUPS Named source within outer element "SPEC-RELATION-GROUPS"

func CopyBranchA_SPEC_RELATION_GROUPS

func CopyBranchA_SPEC_RELATION_GROUPS(mapOrigCopy map[any]any, a_spec_relation_groupsFrom *A_SPEC_RELATION_GROUPS) (a_spec_relation_groupsTo *A_SPEC_RELATION_GROUPS)

func (*A_SPEC_RELATION_GROUPS) Checkout

func (a_spec_relation_groups *A_SPEC_RELATION_GROUPS) Checkout(stage *Stage) *A_SPEC_RELATION_GROUPS

Checkout a_spec_relation_groups to the back repo (if it is already staged)

func (*A_SPEC_RELATION_GROUPS) Commit

func (a_spec_relation_groups *A_SPEC_RELATION_GROUPS) Commit(stage *Stage) *A_SPEC_RELATION_GROUPS

commit a_spec_relation_groups to the back repo (if it is already staged)

func (*A_SPEC_RELATION_GROUPS) CommitVoid

func (a_spec_relation_groups *A_SPEC_RELATION_GROUPS) CommitVoid(stage *Stage)

func (*A_SPEC_RELATION_GROUPS) CopyBasicFields

func (from *A_SPEC_RELATION_GROUPS) CopyBasicFields(to *A_SPEC_RELATION_GROUPS)

func (*A_SPEC_RELATION_GROUPS) GetName

func (a_spec_relation_groups *A_SPEC_RELATION_GROUPS) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_SPEC_RELATION_GROUPS) Stage

func (a_spec_relation_groups *A_SPEC_RELATION_GROUPS) Stage(stage *Stage) *A_SPEC_RELATION_GROUPS

Stage puts a_spec_relation_groups to the model stage

func (*A_SPEC_RELATION_GROUPS) Unstage

func (a_spec_relation_groups *A_SPEC_RELATION_GROUPS) Unstage(stage *Stage) *A_SPEC_RELATION_GROUPS

Unstage removes a_spec_relation_groups off the model stage

func (*A_SPEC_RELATION_GROUPS) UnstageVoid

func (a_spec_relation_groups *A_SPEC_RELATION_GROUPS) UnstageVoid(stage *Stage)

UnstageVoid removes a_spec_relation_groups off the model stage

type A_SPEC_RELATION_GROUPS_WOP

type A_SPEC_RELATION_GROUPS_WOP struct {
	Name string
}

type A_SPEC_RELATION_REF

type A_SPEC_RELATION_REF struct {
	Name string `xml:"-"`

	// generated from element "SPEC-RELATION-REF" of type LOCAL-REF order 156 depth 3
	SPEC_RELATION_REF string `xml:"SPEC-RELATION-REF,omitempty"`
}

A_SPEC_RELATION_REF Named source within outer element "SPEC-RELATIONS"

func CopyBranchA_SPEC_RELATION_REF

func CopyBranchA_SPEC_RELATION_REF(mapOrigCopy map[any]any, a_spec_relation_refFrom *A_SPEC_RELATION_REF) (a_spec_relation_refTo *A_SPEC_RELATION_REF)

func (*A_SPEC_RELATION_REF) Checkout

func (a_spec_relation_ref *A_SPEC_RELATION_REF) Checkout(stage *Stage) *A_SPEC_RELATION_REF

Checkout a_spec_relation_ref to the back repo (if it is already staged)

func (*A_SPEC_RELATION_REF) Commit

func (a_spec_relation_ref *A_SPEC_RELATION_REF) Commit(stage *Stage) *A_SPEC_RELATION_REF

commit a_spec_relation_ref to the back repo (if it is already staged)

func (*A_SPEC_RELATION_REF) CommitVoid

func (a_spec_relation_ref *A_SPEC_RELATION_REF) CommitVoid(stage *Stage)

func (*A_SPEC_RELATION_REF) CopyBasicFields

func (from *A_SPEC_RELATION_REF) CopyBasicFields(to *A_SPEC_RELATION_REF)

func (*A_SPEC_RELATION_REF) GetName

func (a_spec_relation_ref *A_SPEC_RELATION_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_SPEC_RELATION_REF) Stage

func (a_spec_relation_ref *A_SPEC_RELATION_REF) Stage(stage *Stage) *A_SPEC_RELATION_REF

Stage puts a_spec_relation_ref to the model stage

func (*A_SPEC_RELATION_REF) Unstage

func (a_spec_relation_ref *A_SPEC_RELATION_REF) Unstage(stage *Stage) *A_SPEC_RELATION_REF

Unstage removes a_spec_relation_ref off the model stage

func (*A_SPEC_RELATION_REF) UnstageVoid

func (a_spec_relation_ref *A_SPEC_RELATION_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_spec_relation_ref off the model stage

type A_SPEC_RELATION_REF_WOP

type A_SPEC_RELATION_REF_WOP struct {
	Name string

	SPEC_RELATION_REF string
}

type A_SPEC_RELATION_TYPE_REF

type A_SPEC_RELATION_TYPE_REF struct {
	Name string `xml:"-"`

	// generated from element "SPEC-RELATION-TYPE-REF" of type LOCAL-REF order 291 depth 3
	SPEC_RELATION_TYPE_REF string `xml:"SPEC-RELATION-TYPE-REF,omitempty"`
}

A_SPEC_RELATION_TYPE_REF Named source within outer element "TYPE"

func CopyBranchA_SPEC_RELATION_TYPE_REF

func CopyBranchA_SPEC_RELATION_TYPE_REF(mapOrigCopy map[any]any, a_spec_relation_type_refFrom *A_SPEC_RELATION_TYPE_REF) (a_spec_relation_type_refTo *A_SPEC_RELATION_TYPE_REF)

func (*A_SPEC_RELATION_TYPE_REF) Checkout

func (a_spec_relation_type_ref *A_SPEC_RELATION_TYPE_REF) Checkout(stage *Stage) *A_SPEC_RELATION_TYPE_REF

Checkout a_spec_relation_type_ref to the back repo (if it is already staged)

func (*A_SPEC_RELATION_TYPE_REF) Commit

func (a_spec_relation_type_ref *A_SPEC_RELATION_TYPE_REF) Commit(stage *Stage) *A_SPEC_RELATION_TYPE_REF

commit a_spec_relation_type_ref to the back repo (if it is already staged)

func (*A_SPEC_RELATION_TYPE_REF) CommitVoid

func (a_spec_relation_type_ref *A_SPEC_RELATION_TYPE_REF) CommitVoid(stage *Stage)

func (*A_SPEC_RELATION_TYPE_REF) CopyBasicFields

func (from *A_SPEC_RELATION_TYPE_REF) CopyBasicFields(to *A_SPEC_RELATION_TYPE_REF)

func (*A_SPEC_RELATION_TYPE_REF) GetName

func (a_spec_relation_type_ref *A_SPEC_RELATION_TYPE_REF) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_SPEC_RELATION_TYPE_REF) Stage

func (a_spec_relation_type_ref *A_SPEC_RELATION_TYPE_REF) Stage(stage *Stage) *A_SPEC_RELATION_TYPE_REF

Stage puts a_spec_relation_type_ref to the model stage

func (*A_SPEC_RELATION_TYPE_REF) Unstage

func (a_spec_relation_type_ref *A_SPEC_RELATION_TYPE_REF) Unstage(stage *Stage) *A_SPEC_RELATION_TYPE_REF

Unstage removes a_spec_relation_type_ref off the model stage

func (*A_SPEC_RELATION_TYPE_REF) UnstageVoid

func (a_spec_relation_type_ref *A_SPEC_RELATION_TYPE_REF) UnstageVoid(stage *Stage)

UnstageVoid removes a_spec_relation_type_ref off the model stage

type A_SPEC_RELATION_TYPE_REF_WOP

type A_SPEC_RELATION_TYPE_REF_WOP struct {
	Name string

	SPEC_RELATION_TYPE_REF string
}

type A_SPEC_TYPES

type A_SPEC_TYPES struct {
	Name string `xml:"-"`

	// generated from element "RELATION-GROUP-TYPE" of type RELATION-GROUP-TYPE order 198 depth 3
	RELATION_GROUP_TYPE []*RELATION_GROUP_TYPE `xml:"RELATION-GROUP-TYPE,omitempty"`

	// generated from element "SPEC-OBJECT-TYPE" of type SPEC-OBJECT-TYPE order 199 depth 3
	SPEC_OBJECT_TYPE []*SPEC_OBJECT_TYPE `xml:"SPEC-OBJECT-TYPE,omitempty"`

	// generated from element "SPEC-RELATION-TYPE" of type SPEC-RELATION-TYPE order 200 depth 3
	SPEC_RELATION_TYPE []*SPEC_RELATION_TYPE `xml:"SPEC-RELATION-TYPE,omitempty"`

	// generated from element "SPECIFICATION-TYPE" of type SPECIFICATION-TYPE order 201 depth 3
	SPECIFICATION_TYPE []*SPECIFICATION_TYPE `xml:"SPECIFICATION-TYPE,omitempty"`
}

A_SPEC_TYPES Named source within outer element "SPEC-TYPES"

func CopyBranchA_SPEC_TYPES

func CopyBranchA_SPEC_TYPES(mapOrigCopy map[any]any, a_spec_typesFrom *A_SPEC_TYPES) (a_spec_typesTo *A_SPEC_TYPES)

func (*A_SPEC_TYPES) Checkout

func (a_spec_types *A_SPEC_TYPES) Checkout(stage *Stage) *A_SPEC_TYPES

Checkout a_spec_types to the back repo (if it is already staged)

func (*A_SPEC_TYPES) Commit

func (a_spec_types *A_SPEC_TYPES) Commit(stage *Stage) *A_SPEC_TYPES

commit a_spec_types to the back repo (if it is already staged)

func (*A_SPEC_TYPES) CommitVoid

func (a_spec_types *A_SPEC_TYPES) CommitVoid(stage *Stage)

func (*A_SPEC_TYPES) CopyBasicFields

func (from *A_SPEC_TYPES) CopyBasicFields(to *A_SPEC_TYPES)

func (*A_SPEC_TYPES) GetName

func (a_spec_types *A_SPEC_TYPES) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_SPEC_TYPES) Stage

func (a_spec_types *A_SPEC_TYPES) Stage(stage *Stage) *A_SPEC_TYPES

Stage puts a_spec_types to the model stage

func (*A_SPEC_TYPES) Unstage

func (a_spec_types *A_SPEC_TYPES) Unstage(stage *Stage) *A_SPEC_TYPES

Unstage removes a_spec_types off the model stage

func (*A_SPEC_TYPES) UnstageVoid

func (a_spec_types *A_SPEC_TYPES) UnstageVoid(stage *Stage)

UnstageVoid removes a_spec_types off the model stage

type A_SPEC_TYPES_WOP

type A_SPEC_TYPES_WOP struct {
	Name string
}

type A_THE_HEADER

type A_THE_HEADER struct {
	Name string `xml:"-"`

	// generated from element "REQ-IF-HEADER" of type REQ-IF-HEADER order 179 depth 3
	REQ_IF_HEADER *REQ_IF_HEADER `xml:"REQ-IF-HEADER,omitempty"`
}

A_THE_HEADER Named source within outer element "THE-HEADER"

func CopyBranchA_THE_HEADER

func CopyBranchA_THE_HEADER(mapOrigCopy map[any]any, a_the_headerFrom *A_THE_HEADER) (a_the_headerTo *A_THE_HEADER)

func (*A_THE_HEADER) Checkout

func (a_the_header *A_THE_HEADER) Checkout(stage *Stage) *A_THE_HEADER

Checkout a_the_header to the back repo (if it is already staged)

func (*A_THE_HEADER) Commit

func (a_the_header *A_THE_HEADER) Commit(stage *Stage) *A_THE_HEADER

commit a_the_header to the back repo (if it is already staged)

func (*A_THE_HEADER) CommitVoid

func (a_the_header *A_THE_HEADER) CommitVoid(stage *Stage)

func (*A_THE_HEADER) CopyBasicFields

func (from *A_THE_HEADER) CopyBasicFields(to *A_THE_HEADER)

func (*A_THE_HEADER) GetName

func (a_the_header *A_THE_HEADER) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_THE_HEADER) Stage

func (a_the_header *A_THE_HEADER) Stage(stage *Stage) *A_THE_HEADER

Stage puts a_the_header to the model stage

func (*A_THE_HEADER) Unstage

func (a_the_header *A_THE_HEADER) Unstage(stage *Stage) *A_THE_HEADER

Unstage removes a_the_header off the model stage

func (*A_THE_HEADER) UnstageVoid

func (a_the_header *A_THE_HEADER) UnstageVoid(stage *Stage)

UnstageVoid removes a_the_header off the model stage

type A_THE_HEADER_WOP

type A_THE_HEADER_WOP struct {
	Name string
}

type A_TOOL_EXTENSIONS

type A_TOOL_EXTENSIONS struct {
	Name string `xml:"-"`

	// generated from element "REQ-IF-TOOL-EXTENSION" of type REQ-IF-TOOL-EXTENSION order 185 depth 3
	REQ_IF_TOOL_EXTENSION []*REQ_IF_TOOL_EXTENSION `xml:"REQ-IF-TOOL-EXTENSION,omitempty"`
}

A_TOOL_EXTENSIONS Named source within outer element "TOOL-EXTENSIONS"

func CopyBranchA_TOOL_EXTENSIONS

func CopyBranchA_TOOL_EXTENSIONS(mapOrigCopy map[any]any, a_tool_extensionsFrom *A_TOOL_EXTENSIONS) (a_tool_extensionsTo *A_TOOL_EXTENSIONS)

func (*A_TOOL_EXTENSIONS) Checkout

func (a_tool_extensions *A_TOOL_EXTENSIONS) Checkout(stage *Stage) *A_TOOL_EXTENSIONS

Checkout a_tool_extensions to the back repo (if it is already staged)

func (*A_TOOL_EXTENSIONS) Commit

func (a_tool_extensions *A_TOOL_EXTENSIONS) Commit(stage *Stage) *A_TOOL_EXTENSIONS

commit a_tool_extensions to the back repo (if it is already staged)

func (*A_TOOL_EXTENSIONS) CommitVoid

func (a_tool_extensions *A_TOOL_EXTENSIONS) CommitVoid(stage *Stage)

func (*A_TOOL_EXTENSIONS) CopyBasicFields

func (from *A_TOOL_EXTENSIONS) CopyBasicFields(to *A_TOOL_EXTENSIONS)

func (*A_TOOL_EXTENSIONS) GetName

func (a_tool_extensions *A_TOOL_EXTENSIONS) GetName() (res string)

for satisfaction of GongStruct interface

func (*A_TOOL_EXTENSIONS) Stage

func (a_tool_extensions *A_TOOL_EXTENSIONS) Stage(stage *Stage) *A_TOOL_EXTENSIONS

Stage puts a_tool_extensions to the model stage

func (*A_TOOL_EXTENSIONS) Unstage

func (a_tool_extensions *A_TOOL_EXTENSIONS) Unstage(stage *Stage) *A_TOOL_EXTENSIONS

Unstage removes a_tool_extensions off the model stage

func (*A_TOOL_EXTENSIONS) UnstageVoid

func (a_tool_extensions *A_TOOL_EXTENSIONS) UnstageVoid(stage *Stage)

UnstageVoid removes a_tool_extensions off the model stage

type A_TOOL_EXTENSIONS_WOP

type A_TOOL_EXTENSIONS_WOP struct {
	Name string
}

type AllModelsStructCreateInterface

type AllModelsStructCreateInterface interface {
	CreateORMALTERNATIVE_ID(ALTERNATIVE_ID *ALTERNATIVE_ID)
	CreateORMATTRIBUTE_DEFINITION_BOOLEAN(ATTRIBUTE_DEFINITION_BOOLEAN *ATTRIBUTE_DEFINITION_BOOLEAN)
	CreateORMATTRIBUTE_DEFINITION_DATE(ATTRIBUTE_DEFINITION_DATE *ATTRIBUTE_DEFINITION_DATE)
	CreateORMATTRIBUTE_DEFINITION_ENUMERATION(ATTRIBUTE_DEFINITION_ENUMERATION *ATTRIBUTE_DEFINITION_ENUMERATION)
	CreateORMATTRIBUTE_DEFINITION_INTEGER(ATTRIBUTE_DEFINITION_INTEGER *ATTRIBUTE_DEFINITION_INTEGER)
	CreateORMATTRIBUTE_DEFINITION_REAL(ATTRIBUTE_DEFINITION_REAL *ATTRIBUTE_DEFINITION_REAL)
	CreateORMATTRIBUTE_DEFINITION_STRING(ATTRIBUTE_DEFINITION_STRING *ATTRIBUTE_DEFINITION_STRING)
	CreateORMATTRIBUTE_DEFINITION_XHTML(ATTRIBUTE_DEFINITION_XHTML *ATTRIBUTE_DEFINITION_XHTML)
	CreateORMATTRIBUTE_VALUE_BOOLEAN(ATTRIBUTE_VALUE_BOOLEAN *ATTRIBUTE_VALUE_BOOLEAN)
	CreateORMATTRIBUTE_VALUE_DATE(ATTRIBUTE_VALUE_DATE *ATTRIBUTE_VALUE_DATE)
	CreateORMATTRIBUTE_VALUE_ENUMERATION(ATTRIBUTE_VALUE_ENUMERATION *ATTRIBUTE_VALUE_ENUMERATION)
	CreateORMATTRIBUTE_VALUE_INTEGER(ATTRIBUTE_VALUE_INTEGER *ATTRIBUTE_VALUE_INTEGER)
	CreateORMATTRIBUTE_VALUE_REAL(ATTRIBUTE_VALUE_REAL *ATTRIBUTE_VALUE_REAL)
	CreateORMATTRIBUTE_VALUE_STRING(ATTRIBUTE_VALUE_STRING *ATTRIBUTE_VALUE_STRING)
	CreateORMATTRIBUTE_VALUE_XHTML(ATTRIBUTE_VALUE_XHTML *ATTRIBUTE_VALUE_XHTML)
	CreateORMA_ALTERNATIVE_ID(A_ALTERNATIVE_ID *A_ALTERNATIVE_ID)
	CreateORMA_ATTRIBUTE_DEFINITION_BOOLEAN_REF(A_ATTRIBUTE_DEFINITION_BOOLEAN_REF *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF)
	CreateORMA_ATTRIBUTE_DEFINITION_DATE_REF(A_ATTRIBUTE_DEFINITION_DATE_REF *A_ATTRIBUTE_DEFINITION_DATE_REF)
	CreateORMA_ATTRIBUTE_DEFINITION_ENUMERATION_REF(A_ATTRIBUTE_DEFINITION_ENUMERATION_REF *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF)
	CreateORMA_ATTRIBUTE_DEFINITION_INTEGER_REF(A_ATTRIBUTE_DEFINITION_INTEGER_REF *A_ATTRIBUTE_DEFINITION_INTEGER_REF)
	CreateORMA_ATTRIBUTE_DEFINITION_REAL_REF(A_ATTRIBUTE_DEFINITION_REAL_REF *A_ATTRIBUTE_DEFINITION_REAL_REF)
	CreateORMA_ATTRIBUTE_DEFINITION_STRING_REF(A_ATTRIBUTE_DEFINITION_STRING_REF *A_ATTRIBUTE_DEFINITION_STRING_REF)
	CreateORMA_ATTRIBUTE_DEFINITION_XHTML_REF(A_ATTRIBUTE_DEFINITION_XHTML_REF *A_ATTRIBUTE_DEFINITION_XHTML_REF)
	CreateORMA_ATTRIBUTE_VALUE_BOOLEAN(A_ATTRIBUTE_VALUE_BOOLEAN *A_ATTRIBUTE_VALUE_BOOLEAN)
	CreateORMA_ATTRIBUTE_VALUE_DATE(A_ATTRIBUTE_VALUE_DATE *A_ATTRIBUTE_VALUE_DATE)
	CreateORMA_ATTRIBUTE_VALUE_ENUMERATION(A_ATTRIBUTE_VALUE_ENUMERATION *A_ATTRIBUTE_VALUE_ENUMERATION)
	CreateORMA_ATTRIBUTE_VALUE_INTEGER(A_ATTRIBUTE_VALUE_INTEGER *A_ATTRIBUTE_VALUE_INTEGER)
	CreateORMA_ATTRIBUTE_VALUE_REAL(A_ATTRIBUTE_VALUE_REAL *A_ATTRIBUTE_VALUE_REAL)
	CreateORMA_ATTRIBUTE_VALUE_STRING(A_ATTRIBUTE_VALUE_STRING *A_ATTRIBUTE_VALUE_STRING)
	CreateORMA_ATTRIBUTE_VALUE_XHTML(A_ATTRIBUTE_VALUE_XHTML *A_ATTRIBUTE_VALUE_XHTML)
	CreateORMA_ATTRIBUTE_VALUE_XHTML_1(A_ATTRIBUTE_VALUE_XHTML_1 *A_ATTRIBUTE_VALUE_XHTML_1)
	CreateORMA_CHILDREN(A_CHILDREN *A_CHILDREN)
	CreateORMA_CORE_CONTENT(A_CORE_CONTENT *A_CORE_CONTENT)
	CreateORMA_DATATYPES(A_DATATYPES *A_DATATYPES)
	CreateORMA_DATATYPE_DEFINITION_BOOLEAN_REF(A_DATATYPE_DEFINITION_BOOLEAN_REF *A_DATATYPE_DEFINITION_BOOLEAN_REF)
	CreateORMA_DATATYPE_DEFINITION_DATE_REF(A_DATATYPE_DEFINITION_DATE_REF *A_DATATYPE_DEFINITION_DATE_REF)
	CreateORMA_DATATYPE_DEFINITION_ENUMERATION_REF(A_DATATYPE_DEFINITION_ENUMERATION_REF *A_DATATYPE_DEFINITION_ENUMERATION_REF)
	CreateORMA_DATATYPE_DEFINITION_INTEGER_REF(A_DATATYPE_DEFINITION_INTEGER_REF *A_DATATYPE_DEFINITION_INTEGER_REF)
	CreateORMA_DATATYPE_DEFINITION_REAL_REF(A_DATATYPE_DEFINITION_REAL_REF *A_DATATYPE_DEFINITION_REAL_REF)
	CreateORMA_DATATYPE_DEFINITION_STRING_REF(A_DATATYPE_DEFINITION_STRING_REF *A_DATATYPE_DEFINITION_STRING_REF)
	CreateORMA_DATATYPE_DEFINITION_XHTML_REF(A_DATATYPE_DEFINITION_XHTML_REF *A_DATATYPE_DEFINITION_XHTML_REF)
	CreateORMA_EDITABLE_ATTS(A_EDITABLE_ATTS *A_EDITABLE_ATTS)
	CreateORMA_ENUM_VALUE_REF(A_ENUM_VALUE_REF *A_ENUM_VALUE_REF)
	CreateORMA_OBJECT(A_OBJECT *A_OBJECT)
	CreateORMA_PROPERTIES(A_PROPERTIES *A_PROPERTIES)
	CreateORMA_RELATION_GROUP_TYPE_REF(A_RELATION_GROUP_TYPE_REF *A_RELATION_GROUP_TYPE_REF)
	CreateORMA_SOURCE_1(A_SOURCE_1 *A_SOURCE_1)
	CreateORMA_SOURCE_SPECIFICATION_1(A_SOURCE_SPECIFICATION_1 *A_SOURCE_SPECIFICATION_1)
	CreateORMA_SPECIFICATIONS(A_SPECIFICATIONS *A_SPECIFICATIONS)
	CreateORMA_SPECIFICATION_TYPE_REF(A_SPECIFICATION_TYPE_REF *A_SPECIFICATION_TYPE_REF)
	CreateORMA_SPECIFIED_VALUES(A_SPECIFIED_VALUES *A_SPECIFIED_VALUES)
	CreateORMA_SPEC_ATTRIBUTES(A_SPEC_ATTRIBUTES *A_SPEC_ATTRIBUTES)
	CreateORMA_SPEC_OBJECTS(A_SPEC_OBJECTS *A_SPEC_OBJECTS)
	CreateORMA_SPEC_OBJECT_TYPE_REF(A_SPEC_OBJECT_TYPE_REF *A_SPEC_OBJECT_TYPE_REF)
	CreateORMA_SPEC_RELATIONS(A_SPEC_RELATIONS *A_SPEC_RELATIONS)
	CreateORMA_SPEC_RELATION_GROUPS(A_SPEC_RELATION_GROUPS *A_SPEC_RELATION_GROUPS)
	CreateORMA_SPEC_RELATION_REF(A_SPEC_RELATION_REF *A_SPEC_RELATION_REF)
	CreateORMA_SPEC_RELATION_TYPE_REF(A_SPEC_RELATION_TYPE_REF *A_SPEC_RELATION_TYPE_REF)
	CreateORMA_SPEC_TYPES(A_SPEC_TYPES *A_SPEC_TYPES)
	CreateORMA_THE_HEADER(A_THE_HEADER *A_THE_HEADER)
	CreateORMA_TOOL_EXTENSIONS(A_TOOL_EXTENSIONS *A_TOOL_EXTENSIONS)
	CreateORMDATATYPE_DEFINITION_BOOLEAN(DATATYPE_DEFINITION_BOOLEAN *DATATYPE_DEFINITION_BOOLEAN)
	CreateORMDATATYPE_DEFINITION_DATE(DATATYPE_DEFINITION_DATE *DATATYPE_DEFINITION_DATE)
	CreateORMDATATYPE_DEFINITION_ENUMERATION(DATATYPE_DEFINITION_ENUMERATION *DATATYPE_DEFINITION_ENUMERATION)
	CreateORMDATATYPE_DEFINITION_INTEGER(DATATYPE_DEFINITION_INTEGER *DATATYPE_DEFINITION_INTEGER)
	CreateORMDATATYPE_DEFINITION_REAL(DATATYPE_DEFINITION_REAL *DATATYPE_DEFINITION_REAL)
	CreateORMDATATYPE_DEFINITION_STRING(DATATYPE_DEFINITION_STRING *DATATYPE_DEFINITION_STRING)
	CreateORMDATATYPE_DEFINITION_XHTML(DATATYPE_DEFINITION_XHTML *DATATYPE_DEFINITION_XHTML)
	CreateORMEMBEDDED_VALUE(EMBEDDED_VALUE *EMBEDDED_VALUE)
	CreateORMENUM_VALUE(ENUM_VALUE *ENUM_VALUE)
	CreateORMEmbeddedJpgImage(EmbeddedJpgImage *EmbeddedJpgImage)
	CreateORMEmbeddedPngImage(EmbeddedPngImage *EmbeddedPngImage)
	CreateORMEmbeddedSvgImage(EmbeddedSvgImage *EmbeddedSvgImage)
	CreateORMKill(Kill *Kill)
	CreateORMMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry(Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry(Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry(Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry(Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry(Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry(Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry(Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry(Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry(Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry(Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry(Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry(Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry(Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry(Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry(Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry(Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry(Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry(Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry(Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry(Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry)
	CreateORMMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry(Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry)
	CreateORMMap_SPECIFICATION_Nodes_expandedEntry(Map_SPECIFICATION_Nodes_expandedEntry *Map_SPECIFICATION_Nodes_expandedEntry)
	CreateORMMap_SPEC_OBJECT_TYPE_isNodeExpandedEntry(Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry)
	CreateORMMap_SPEC_OBJECT_TYPE_showIdentifierEntry(Map_SPEC_OBJECT_TYPE_showIdentifierEntry *Map_SPEC_OBJECT_TYPE_showIdentifierEntry)
	CreateORMMap_SPEC_OBJECT_TYPE_showNameEntry(Map_SPEC_OBJECT_TYPE_showNameEntry *Map_SPEC_OBJECT_TYPE_showNameEntry)
	CreateORMRELATION_GROUP(RELATION_GROUP *RELATION_GROUP)
	CreateORMRELATION_GROUP_TYPE(RELATION_GROUP_TYPE *RELATION_GROUP_TYPE)
	CreateORMREQ_IF(REQ_IF *REQ_IF)
	CreateORMREQ_IF_CONTENT(REQ_IF_CONTENT *REQ_IF_CONTENT)
	CreateORMREQ_IF_HEADER(REQ_IF_HEADER *REQ_IF_HEADER)
	CreateORMREQ_IF_TOOL_EXTENSION(REQ_IF_TOOL_EXTENSION *REQ_IF_TOOL_EXTENSION)
	CreateORMRenderingConfiguration(RenderingConfiguration *RenderingConfiguration)
	CreateORMSPECIFICATION(SPECIFICATION *SPECIFICATION)
	CreateORMSPECIFICATION_TYPE(SPECIFICATION_TYPE *SPECIFICATION_TYPE)
	CreateORMSPEC_HIERARCHY(SPEC_HIERARCHY *SPEC_HIERARCHY)
	CreateORMSPEC_OBJECT(SPEC_OBJECT *SPEC_OBJECT)
	CreateORMSPEC_OBJECT_TYPE(SPEC_OBJECT_TYPE *SPEC_OBJECT_TYPE)
	CreateORMSPEC_RELATION(SPEC_RELATION *SPEC_RELATION)
	CreateORMSPEC_RELATION_TYPE(SPEC_RELATION_TYPE *SPEC_RELATION_TYPE)
	CreateORMStaticWebSite(StaticWebSite *StaticWebSite)
	CreateORMStaticWebSiteChapter(StaticWebSiteChapter *StaticWebSiteChapter)
	CreateORMStaticWebSiteGeneratedImage(StaticWebSiteGeneratedImage *StaticWebSiteGeneratedImage)
	CreateORMStaticWebSiteImage(StaticWebSiteImage *StaticWebSiteImage)
	CreateORMStaticWebSiteParagraph(StaticWebSiteParagraph *StaticWebSiteParagraph)
	CreateORMXHTML_CONTENT(XHTML_CONTENT *XHTML_CONTENT)
}

swagger:ignore

type AllModelsStructDeleteInterface

type AllModelsStructDeleteInterface interface {
	DeleteORMALTERNATIVE_ID(ALTERNATIVE_ID *ALTERNATIVE_ID)
	DeleteORMATTRIBUTE_DEFINITION_BOOLEAN(ATTRIBUTE_DEFINITION_BOOLEAN *ATTRIBUTE_DEFINITION_BOOLEAN)
	DeleteORMATTRIBUTE_DEFINITION_DATE(ATTRIBUTE_DEFINITION_DATE *ATTRIBUTE_DEFINITION_DATE)
	DeleteORMATTRIBUTE_DEFINITION_ENUMERATION(ATTRIBUTE_DEFINITION_ENUMERATION *ATTRIBUTE_DEFINITION_ENUMERATION)
	DeleteORMATTRIBUTE_DEFINITION_INTEGER(ATTRIBUTE_DEFINITION_INTEGER *ATTRIBUTE_DEFINITION_INTEGER)
	DeleteORMATTRIBUTE_DEFINITION_REAL(ATTRIBUTE_DEFINITION_REAL *ATTRIBUTE_DEFINITION_REAL)
	DeleteORMATTRIBUTE_DEFINITION_STRING(ATTRIBUTE_DEFINITION_STRING *ATTRIBUTE_DEFINITION_STRING)
	DeleteORMATTRIBUTE_DEFINITION_XHTML(ATTRIBUTE_DEFINITION_XHTML *ATTRIBUTE_DEFINITION_XHTML)
	DeleteORMATTRIBUTE_VALUE_BOOLEAN(ATTRIBUTE_VALUE_BOOLEAN *ATTRIBUTE_VALUE_BOOLEAN)
	DeleteORMATTRIBUTE_VALUE_DATE(ATTRIBUTE_VALUE_DATE *ATTRIBUTE_VALUE_DATE)
	DeleteORMATTRIBUTE_VALUE_ENUMERATION(ATTRIBUTE_VALUE_ENUMERATION *ATTRIBUTE_VALUE_ENUMERATION)
	DeleteORMATTRIBUTE_VALUE_INTEGER(ATTRIBUTE_VALUE_INTEGER *ATTRIBUTE_VALUE_INTEGER)
	DeleteORMATTRIBUTE_VALUE_REAL(ATTRIBUTE_VALUE_REAL *ATTRIBUTE_VALUE_REAL)
	DeleteORMATTRIBUTE_VALUE_STRING(ATTRIBUTE_VALUE_STRING *ATTRIBUTE_VALUE_STRING)
	DeleteORMATTRIBUTE_VALUE_XHTML(ATTRIBUTE_VALUE_XHTML *ATTRIBUTE_VALUE_XHTML)
	DeleteORMA_ALTERNATIVE_ID(A_ALTERNATIVE_ID *A_ALTERNATIVE_ID)
	DeleteORMA_ATTRIBUTE_DEFINITION_BOOLEAN_REF(A_ATTRIBUTE_DEFINITION_BOOLEAN_REF *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF)
	DeleteORMA_ATTRIBUTE_DEFINITION_DATE_REF(A_ATTRIBUTE_DEFINITION_DATE_REF *A_ATTRIBUTE_DEFINITION_DATE_REF)
	DeleteORMA_ATTRIBUTE_DEFINITION_ENUMERATION_REF(A_ATTRIBUTE_DEFINITION_ENUMERATION_REF *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF)
	DeleteORMA_ATTRIBUTE_DEFINITION_INTEGER_REF(A_ATTRIBUTE_DEFINITION_INTEGER_REF *A_ATTRIBUTE_DEFINITION_INTEGER_REF)
	DeleteORMA_ATTRIBUTE_DEFINITION_REAL_REF(A_ATTRIBUTE_DEFINITION_REAL_REF *A_ATTRIBUTE_DEFINITION_REAL_REF)
	DeleteORMA_ATTRIBUTE_DEFINITION_STRING_REF(A_ATTRIBUTE_DEFINITION_STRING_REF *A_ATTRIBUTE_DEFINITION_STRING_REF)
	DeleteORMA_ATTRIBUTE_DEFINITION_XHTML_REF(A_ATTRIBUTE_DEFINITION_XHTML_REF *A_ATTRIBUTE_DEFINITION_XHTML_REF)
	DeleteORMA_ATTRIBUTE_VALUE_BOOLEAN(A_ATTRIBUTE_VALUE_BOOLEAN *A_ATTRIBUTE_VALUE_BOOLEAN)
	DeleteORMA_ATTRIBUTE_VALUE_DATE(A_ATTRIBUTE_VALUE_DATE *A_ATTRIBUTE_VALUE_DATE)
	DeleteORMA_ATTRIBUTE_VALUE_ENUMERATION(A_ATTRIBUTE_VALUE_ENUMERATION *A_ATTRIBUTE_VALUE_ENUMERATION)
	DeleteORMA_ATTRIBUTE_VALUE_INTEGER(A_ATTRIBUTE_VALUE_INTEGER *A_ATTRIBUTE_VALUE_INTEGER)
	DeleteORMA_ATTRIBUTE_VALUE_REAL(A_ATTRIBUTE_VALUE_REAL *A_ATTRIBUTE_VALUE_REAL)
	DeleteORMA_ATTRIBUTE_VALUE_STRING(A_ATTRIBUTE_VALUE_STRING *A_ATTRIBUTE_VALUE_STRING)
	DeleteORMA_ATTRIBUTE_VALUE_XHTML(A_ATTRIBUTE_VALUE_XHTML *A_ATTRIBUTE_VALUE_XHTML)
	DeleteORMA_ATTRIBUTE_VALUE_XHTML_1(A_ATTRIBUTE_VALUE_XHTML_1 *A_ATTRIBUTE_VALUE_XHTML_1)
	DeleteORMA_CHILDREN(A_CHILDREN *A_CHILDREN)
	DeleteORMA_CORE_CONTENT(A_CORE_CONTENT *A_CORE_CONTENT)
	DeleteORMA_DATATYPES(A_DATATYPES *A_DATATYPES)
	DeleteORMA_DATATYPE_DEFINITION_BOOLEAN_REF(A_DATATYPE_DEFINITION_BOOLEAN_REF *A_DATATYPE_DEFINITION_BOOLEAN_REF)
	DeleteORMA_DATATYPE_DEFINITION_DATE_REF(A_DATATYPE_DEFINITION_DATE_REF *A_DATATYPE_DEFINITION_DATE_REF)
	DeleteORMA_DATATYPE_DEFINITION_ENUMERATION_REF(A_DATATYPE_DEFINITION_ENUMERATION_REF *A_DATATYPE_DEFINITION_ENUMERATION_REF)
	DeleteORMA_DATATYPE_DEFINITION_INTEGER_REF(A_DATATYPE_DEFINITION_INTEGER_REF *A_DATATYPE_DEFINITION_INTEGER_REF)
	DeleteORMA_DATATYPE_DEFINITION_REAL_REF(A_DATATYPE_DEFINITION_REAL_REF *A_DATATYPE_DEFINITION_REAL_REF)
	DeleteORMA_DATATYPE_DEFINITION_STRING_REF(A_DATATYPE_DEFINITION_STRING_REF *A_DATATYPE_DEFINITION_STRING_REF)
	DeleteORMA_DATATYPE_DEFINITION_XHTML_REF(A_DATATYPE_DEFINITION_XHTML_REF *A_DATATYPE_DEFINITION_XHTML_REF)
	DeleteORMA_EDITABLE_ATTS(A_EDITABLE_ATTS *A_EDITABLE_ATTS)
	DeleteORMA_ENUM_VALUE_REF(A_ENUM_VALUE_REF *A_ENUM_VALUE_REF)
	DeleteORMA_OBJECT(A_OBJECT *A_OBJECT)
	DeleteORMA_PROPERTIES(A_PROPERTIES *A_PROPERTIES)
	DeleteORMA_RELATION_GROUP_TYPE_REF(A_RELATION_GROUP_TYPE_REF *A_RELATION_GROUP_TYPE_REF)
	DeleteORMA_SOURCE_1(A_SOURCE_1 *A_SOURCE_1)
	DeleteORMA_SOURCE_SPECIFICATION_1(A_SOURCE_SPECIFICATION_1 *A_SOURCE_SPECIFICATION_1)
	DeleteORMA_SPECIFICATIONS(A_SPECIFICATIONS *A_SPECIFICATIONS)
	DeleteORMA_SPECIFICATION_TYPE_REF(A_SPECIFICATION_TYPE_REF *A_SPECIFICATION_TYPE_REF)
	DeleteORMA_SPECIFIED_VALUES(A_SPECIFIED_VALUES *A_SPECIFIED_VALUES)
	DeleteORMA_SPEC_ATTRIBUTES(A_SPEC_ATTRIBUTES *A_SPEC_ATTRIBUTES)
	DeleteORMA_SPEC_OBJECTS(A_SPEC_OBJECTS *A_SPEC_OBJECTS)
	DeleteORMA_SPEC_OBJECT_TYPE_REF(A_SPEC_OBJECT_TYPE_REF *A_SPEC_OBJECT_TYPE_REF)
	DeleteORMA_SPEC_RELATIONS(A_SPEC_RELATIONS *A_SPEC_RELATIONS)
	DeleteORMA_SPEC_RELATION_GROUPS(A_SPEC_RELATION_GROUPS *A_SPEC_RELATION_GROUPS)
	DeleteORMA_SPEC_RELATION_REF(A_SPEC_RELATION_REF *A_SPEC_RELATION_REF)
	DeleteORMA_SPEC_RELATION_TYPE_REF(A_SPEC_RELATION_TYPE_REF *A_SPEC_RELATION_TYPE_REF)
	DeleteORMA_SPEC_TYPES(A_SPEC_TYPES *A_SPEC_TYPES)
	DeleteORMA_THE_HEADER(A_THE_HEADER *A_THE_HEADER)
	DeleteORMA_TOOL_EXTENSIONS(A_TOOL_EXTENSIONS *A_TOOL_EXTENSIONS)
	DeleteORMDATATYPE_DEFINITION_BOOLEAN(DATATYPE_DEFINITION_BOOLEAN *DATATYPE_DEFINITION_BOOLEAN)
	DeleteORMDATATYPE_DEFINITION_DATE(DATATYPE_DEFINITION_DATE *DATATYPE_DEFINITION_DATE)
	DeleteORMDATATYPE_DEFINITION_ENUMERATION(DATATYPE_DEFINITION_ENUMERATION *DATATYPE_DEFINITION_ENUMERATION)
	DeleteORMDATATYPE_DEFINITION_INTEGER(DATATYPE_DEFINITION_INTEGER *DATATYPE_DEFINITION_INTEGER)
	DeleteORMDATATYPE_DEFINITION_REAL(DATATYPE_DEFINITION_REAL *DATATYPE_DEFINITION_REAL)
	DeleteORMDATATYPE_DEFINITION_STRING(DATATYPE_DEFINITION_STRING *DATATYPE_DEFINITION_STRING)
	DeleteORMDATATYPE_DEFINITION_XHTML(DATATYPE_DEFINITION_XHTML *DATATYPE_DEFINITION_XHTML)
	DeleteORMEMBEDDED_VALUE(EMBEDDED_VALUE *EMBEDDED_VALUE)
	DeleteORMENUM_VALUE(ENUM_VALUE *ENUM_VALUE)
	DeleteORMEmbeddedJpgImage(EmbeddedJpgImage *EmbeddedJpgImage)
	DeleteORMEmbeddedPngImage(EmbeddedPngImage *EmbeddedPngImage)
	DeleteORMEmbeddedSvgImage(EmbeddedSvgImage *EmbeddedSvgImage)
	DeleteORMKill(Kill *Kill)
	DeleteORMMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry(Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry(Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry(Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry(Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry(Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry(Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry(Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry(Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry(Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry(Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry(Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry(Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry(Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry(Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry(Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry(Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry(Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry(Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry(Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry(Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry)
	DeleteORMMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry(Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry)
	DeleteORMMap_SPECIFICATION_Nodes_expandedEntry(Map_SPECIFICATION_Nodes_expandedEntry *Map_SPECIFICATION_Nodes_expandedEntry)
	DeleteORMMap_SPEC_OBJECT_TYPE_isNodeExpandedEntry(Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry)
	DeleteORMMap_SPEC_OBJECT_TYPE_showIdentifierEntry(Map_SPEC_OBJECT_TYPE_showIdentifierEntry *Map_SPEC_OBJECT_TYPE_showIdentifierEntry)
	DeleteORMMap_SPEC_OBJECT_TYPE_showNameEntry(Map_SPEC_OBJECT_TYPE_showNameEntry *Map_SPEC_OBJECT_TYPE_showNameEntry)
	DeleteORMRELATION_GROUP(RELATION_GROUP *RELATION_GROUP)
	DeleteORMRELATION_GROUP_TYPE(RELATION_GROUP_TYPE *RELATION_GROUP_TYPE)
	DeleteORMREQ_IF(REQ_IF *REQ_IF)
	DeleteORMREQ_IF_CONTENT(REQ_IF_CONTENT *REQ_IF_CONTENT)
	DeleteORMREQ_IF_HEADER(REQ_IF_HEADER *REQ_IF_HEADER)
	DeleteORMREQ_IF_TOOL_EXTENSION(REQ_IF_TOOL_EXTENSION *REQ_IF_TOOL_EXTENSION)
	DeleteORMRenderingConfiguration(RenderingConfiguration *RenderingConfiguration)
	DeleteORMSPECIFICATION(SPECIFICATION *SPECIFICATION)
	DeleteORMSPECIFICATION_TYPE(SPECIFICATION_TYPE *SPECIFICATION_TYPE)
	DeleteORMSPEC_HIERARCHY(SPEC_HIERARCHY *SPEC_HIERARCHY)
	DeleteORMSPEC_OBJECT(SPEC_OBJECT *SPEC_OBJECT)
	DeleteORMSPEC_OBJECT_TYPE(SPEC_OBJECT_TYPE *SPEC_OBJECT_TYPE)
	DeleteORMSPEC_RELATION(SPEC_RELATION *SPEC_RELATION)
	DeleteORMSPEC_RELATION_TYPE(SPEC_RELATION_TYPE *SPEC_RELATION_TYPE)
	DeleteORMStaticWebSite(StaticWebSite *StaticWebSite)
	DeleteORMStaticWebSiteChapter(StaticWebSiteChapter *StaticWebSiteChapter)
	DeleteORMStaticWebSiteGeneratedImage(StaticWebSiteGeneratedImage *StaticWebSiteGeneratedImage)
	DeleteORMStaticWebSiteImage(StaticWebSiteImage *StaticWebSiteImage)
	DeleteORMStaticWebSiteParagraph(StaticWebSiteParagraph *StaticWebSiteParagraph)
	DeleteORMXHTML_CONTENT(XHTML_CONTENT *XHTML_CONTENT)
}

type Attribute

type Attribute interface {
	GetValue() string
	GetAttributeDefinitionRef() string
}

type AttributeDefinition

type AttributeDefinition interface {
	Identifiable
	GetDatatypeDefinitionRef() string
	GetIsEditable() bool
	GetLongName() string
}

type AttributeDefinitionRef

type AttributeDefinitionRef interface {
	PointerToGongstruct

	GetRef() string
}

Things like A_ATTRIBUTE_DEFINITION_XHTML_REF

type BackRepoInterface

type BackRepoInterface interface {
	Commit(stage *Stage)
	Checkout(stage *Stage)
	Backup(stage *Stage, dirPath string)
	Restore(stage *Stage, dirPath string)
	BackupXL(stage *Stage, dirPath string)
	RestoreXL(stage *Stage, dirPath string)
	// insertion point for Commit and Checkout signatures
	CommitALTERNATIVE_ID(alternative_id *ALTERNATIVE_ID)
	CheckoutALTERNATIVE_ID(alternative_id *ALTERNATIVE_ID)
	CommitATTRIBUTE_DEFINITION_BOOLEAN(attribute_definition_boolean *ATTRIBUTE_DEFINITION_BOOLEAN)
	CheckoutATTRIBUTE_DEFINITION_BOOLEAN(attribute_definition_boolean *ATTRIBUTE_DEFINITION_BOOLEAN)
	CommitATTRIBUTE_DEFINITION_DATE(attribute_definition_date *ATTRIBUTE_DEFINITION_DATE)
	CheckoutATTRIBUTE_DEFINITION_DATE(attribute_definition_date *ATTRIBUTE_DEFINITION_DATE)
	CommitATTRIBUTE_DEFINITION_ENUMERATION(attribute_definition_enumeration *ATTRIBUTE_DEFINITION_ENUMERATION)
	CheckoutATTRIBUTE_DEFINITION_ENUMERATION(attribute_definition_enumeration *ATTRIBUTE_DEFINITION_ENUMERATION)
	CommitATTRIBUTE_DEFINITION_INTEGER(attribute_definition_integer *ATTRIBUTE_DEFINITION_INTEGER)
	CheckoutATTRIBUTE_DEFINITION_INTEGER(attribute_definition_integer *ATTRIBUTE_DEFINITION_INTEGER)
	CommitATTRIBUTE_DEFINITION_REAL(attribute_definition_real *ATTRIBUTE_DEFINITION_REAL)
	CheckoutATTRIBUTE_DEFINITION_REAL(attribute_definition_real *ATTRIBUTE_DEFINITION_REAL)
	CommitATTRIBUTE_DEFINITION_STRING(attribute_definition_string *ATTRIBUTE_DEFINITION_STRING)
	CheckoutATTRIBUTE_DEFINITION_STRING(attribute_definition_string *ATTRIBUTE_DEFINITION_STRING)
	CommitATTRIBUTE_DEFINITION_XHTML(attribute_definition_xhtml *ATTRIBUTE_DEFINITION_XHTML)
	CheckoutATTRIBUTE_DEFINITION_XHTML(attribute_definition_xhtml *ATTRIBUTE_DEFINITION_XHTML)
	CommitATTRIBUTE_VALUE_BOOLEAN(attribute_value_boolean *ATTRIBUTE_VALUE_BOOLEAN)
	CheckoutATTRIBUTE_VALUE_BOOLEAN(attribute_value_boolean *ATTRIBUTE_VALUE_BOOLEAN)
	CommitATTRIBUTE_VALUE_DATE(attribute_value_date *ATTRIBUTE_VALUE_DATE)
	CheckoutATTRIBUTE_VALUE_DATE(attribute_value_date *ATTRIBUTE_VALUE_DATE)
	CommitATTRIBUTE_VALUE_ENUMERATION(attribute_value_enumeration *ATTRIBUTE_VALUE_ENUMERATION)
	CheckoutATTRIBUTE_VALUE_ENUMERATION(attribute_value_enumeration *ATTRIBUTE_VALUE_ENUMERATION)
	CommitATTRIBUTE_VALUE_INTEGER(attribute_value_integer *ATTRIBUTE_VALUE_INTEGER)
	CheckoutATTRIBUTE_VALUE_INTEGER(attribute_value_integer *ATTRIBUTE_VALUE_INTEGER)
	CommitATTRIBUTE_VALUE_REAL(attribute_value_real *ATTRIBUTE_VALUE_REAL)
	CheckoutATTRIBUTE_VALUE_REAL(attribute_value_real *ATTRIBUTE_VALUE_REAL)
	CommitATTRIBUTE_VALUE_STRING(attribute_value_string *ATTRIBUTE_VALUE_STRING)
	CheckoutATTRIBUTE_VALUE_STRING(attribute_value_string *ATTRIBUTE_VALUE_STRING)
	CommitATTRIBUTE_VALUE_XHTML(attribute_value_xhtml *ATTRIBUTE_VALUE_XHTML)
	CheckoutATTRIBUTE_VALUE_XHTML(attribute_value_xhtml *ATTRIBUTE_VALUE_XHTML)
	CommitA_ALTERNATIVE_ID(a_alternative_id *A_ALTERNATIVE_ID)
	CheckoutA_ALTERNATIVE_ID(a_alternative_id *A_ALTERNATIVE_ID)
	CommitA_ATTRIBUTE_DEFINITION_BOOLEAN_REF(a_attribute_definition_boolean_ref *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF)
	CheckoutA_ATTRIBUTE_DEFINITION_BOOLEAN_REF(a_attribute_definition_boolean_ref *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF)
	CommitA_ATTRIBUTE_DEFINITION_DATE_REF(a_attribute_definition_date_ref *A_ATTRIBUTE_DEFINITION_DATE_REF)
	CheckoutA_ATTRIBUTE_DEFINITION_DATE_REF(a_attribute_definition_date_ref *A_ATTRIBUTE_DEFINITION_DATE_REF)
	CommitA_ATTRIBUTE_DEFINITION_ENUMERATION_REF(a_attribute_definition_enumeration_ref *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF)
	CheckoutA_ATTRIBUTE_DEFINITION_ENUMERATION_REF(a_attribute_definition_enumeration_ref *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF)
	CommitA_ATTRIBUTE_DEFINITION_INTEGER_REF(a_attribute_definition_integer_ref *A_ATTRIBUTE_DEFINITION_INTEGER_REF)
	CheckoutA_ATTRIBUTE_DEFINITION_INTEGER_REF(a_attribute_definition_integer_ref *A_ATTRIBUTE_DEFINITION_INTEGER_REF)
	CommitA_ATTRIBUTE_DEFINITION_REAL_REF(a_attribute_definition_real_ref *A_ATTRIBUTE_DEFINITION_REAL_REF)
	CheckoutA_ATTRIBUTE_DEFINITION_REAL_REF(a_attribute_definition_real_ref *A_ATTRIBUTE_DEFINITION_REAL_REF)
	CommitA_ATTRIBUTE_DEFINITION_STRING_REF(a_attribute_definition_string_ref *A_ATTRIBUTE_DEFINITION_STRING_REF)
	CheckoutA_ATTRIBUTE_DEFINITION_STRING_REF(a_attribute_definition_string_ref *A_ATTRIBUTE_DEFINITION_STRING_REF)
	CommitA_ATTRIBUTE_DEFINITION_XHTML_REF(a_attribute_definition_xhtml_ref *A_ATTRIBUTE_DEFINITION_XHTML_REF)
	CheckoutA_ATTRIBUTE_DEFINITION_XHTML_REF(a_attribute_definition_xhtml_ref *A_ATTRIBUTE_DEFINITION_XHTML_REF)
	CommitA_ATTRIBUTE_VALUE_BOOLEAN(a_attribute_value_boolean *A_ATTRIBUTE_VALUE_BOOLEAN)
	CheckoutA_ATTRIBUTE_VALUE_BOOLEAN(a_attribute_value_boolean *A_ATTRIBUTE_VALUE_BOOLEAN)
	CommitA_ATTRIBUTE_VALUE_DATE(a_attribute_value_date *A_ATTRIBUTE_VALUE_DATE)
	CheckoutA_ATTRIBUTE_VALUE_DATE(a_attribute_value_date *A_ATTRIBUTE_VALUE_DATE)
	CommitA_ATTRIBUTE_VALUE_ENUMERATION(a_attribute_value_enumeration *A_ATTRIBUTE_VALUE_ENUMERATION)
	CheckoutA_ATTRIBUTE_VALUE_ENUMERATION(a_attribute_value_enumeration *A_ATTRIBUTE_VALUE_ENUMERATION)
	CommitA_ATTRIBUTE_VALUE_INTEGER(a_attribute_value_integer *A_ATTRIBUTE_VALUE_INTEGER)
	CheckoutA_ATTRIBUTE_VALUE_INTEGER(a_attribute_value_integer *A_ATTRIBUTE_VALUE_INTEGER)
	CommitA_ATTRIBUTE_VALUE_REAL(a_attribute_value_real *A_ATTRIBUTE_VALUE_REAL)
	CheckoutA_ATTRIBUTE_VALUE_REAL(a_attribute_value_real *A_ATTRIBUTE_VALUE_REAL)
	CommitA_ATTRIBUTE_VALUE_STRING(a_attribute_value_string *A_ATTRIBUTE_VALUE_STRING)
	CheckoutA_ATTRIBUTE_VALUE_STRING(a_attribute_value_string *A_ATTRIBUTE_VALUE_STRING)
	CommitA_ATTRIBUTE_VALUE_XHTML(a_attribute_value_xhtml *A_ATTRIBUTE_VALUE_XHTML)
	CheckoutA_ATTRIBUTE_VALUE_XHTML(a_attribute_value_xhtml *A_ATTRIBUTE_VALUE_XHTML)
	CommitA_ATTRIBUTE_VALUE_XHTML_1(a_attribute_value_xhtml_1 *A_ATTRIBUTE_VALUE_XHTML_1)
	CheckoutA_ATTRIBUTE_VALUE_XHTML_1(a_attribute_value_xhtml_1 *A_ATTRIBUTE_VALUE_XHTML_1)
	CommitA_CHILDREN(a_children *A_CHILDREN)
	CheckoutA_CHILDREN(a_children *A_CHILDREN)
	CommitA_CORE_CONTENT(a_core_content *A_CORE_CONTENT)
	CheckoutA_CORE_CONTENT(a_core_content *A_CORE_CONTENT)
	CommitA_DATATYPES(a_datatypes *A_DATATYPES)
	CheckoutA_DATATYPES(a_datatypes *A_DATATYPES)
	CommitA_DATATYPE_DEFINITION_BOOLEAN_REF(a_datatype_definition_boolean_ref *A_DATATYPE_DEFINITION_BOOLEAN_REF)
	CheckoutA_DATATYPE_DEFINITION_BOOLEAN_REF(a_datatype_definition_boolean_ref *A_DATATYPE_DEFINITION_BOOLEAN_REF)
	CommitA_DATATYPE_DEFINITION_DATE_REF(a_datatype_definition_date_ref *A_DATATYPE_DEFINITION_DATE_REF)
	CheckoutA_DATATYPE_DEFINITION_DATE_REF(a_datatype_definition_date_ref *A_DATATYPE_DEFINITION_DATE_REF)
	CommitA_DATATYPE_DEFINITION_ENUMERATION_REF(a_datatype_definition_enumeration_ref *A_DATATYPE_DEFINITION_ENUMERATION_REF)
	CheckoutA_DATATYPE_DEFINITION_ENUMERATION_REF(a_datatype_definition_enumeration_ref *A_DATATYPE_DEFINITION_ENUMERATION_REF)
	CommitA_DATATYPE_DEFINITION_INTEGER_REF(a_datatype_definition_integer_ref *A_DATATYPE_DEFINITION_INTEGER_REF)
	CheckoutA_DATATYPE_DEFINITION_INTEGER_REF(a_datatype_definition_integer_ref *A_DATATYPE_DEFINITION_INTEGER_REF)
	CommitA_DATATYPE_DEFINITION_REAL_REF(a_datatype_definition_real_ref *A_DATATYPE_DEFINITION_REAL_REF)
	CheckoutA_DATATYPE_DEFINITION_REAL_REF(a_datatype_definition_real_ref *A_DATATYPE_DEFINITION_REAL_REF)
	CommitA_DATATYPE_DEFINITION_STRING_REF(a_datatype_definition_string_ref *A_DATATYPE_DEFINITION_STRING_REF)
	CheckoutA_DATATYPE_DEFINITION_STRING_REF(a_datatype_definition_string_ref *A_DATATYPE_DEFINITION_STRING_REF)
	CommitA_DATATYPE_DEFINITION_XHTML_REF(a_datatype_definition_xhtml_ref *A_DATATYPE_DEFINITION_XHTML_REF)
	CheckoutA_DATATYPE_DEFINITION_XHTML_REF(a_datatype_definition_xhtml_ref *A_DATATYPE_DEFINITION_XHTML_REF)
	CommitA_EDITABLE_ATTS(a_editable_atts *A_EDITABLE_ATTS)
	CheckoutA_EDITABLE_ATTS(a_editable_atts *A_EDITABLE_ATTS)
	CommitA_ENUM_VALUE_REF(a_enum_value_ref *A_ENUM_VALUE_REF)
	CheckoutA_ENUM_VALUE_REF(a_enum_value_ref *A_ENUM_VALUE_REF)
	CommitA_OBJECT(a_object *A_OBJECT)
	CheckoutA_OBJECT(a_object *A_OBJECT)
	CommitA_PROPERTIES(a_properties *A_PROPERTIES)
	CheckoutA_PROPERTIES(a_properties *A_PROPERTIES)
	CommitA_RELATION_GROUP_TYPE_REF(a_relation_group_type_ref *A_RELATION_GROUP_TYPE_REF)
	CheckoutA_RELATION_GROUP_TYPE_REF(a_relation_group_type_ref *A_RELATION_GROUP_TYPE_REF)
	CommitA_SOURCE_1(a_source_1 *A_SOURCE_1)
	CheckoutA_SOURCE_1(a_source_1 *A_SOURCE_1)
	CommitA_SOURCE_SPECIFICATION_1(a_source_specification_1 *A_SOURCE_SPECIFICATION_1)
	CheckoutA_SOURCE_SPECIFICATION_1(a_source_specification_1 *A_SOURCE_SPECIFICATION_1)
	CommitA_SPECIFICATIONS(a_specifications *A_SPECIFICATIONS)
	CheckoutA_SPECIFICATIONS(a_specifications *A_SPECIFICATIONS)
	CommitA_SPECIFICATION_TYPE_REF(a_specification_type_ref *A_SPECIFICATION_TYPE_REF)
	CheckoutA_SPECIFICATION_TYPE_REF(a_specification_type_ref *A_SPECIFICATION_TYPE_REF)
	CommitA_SPECIFIED_VALUES(a_specified_values *A_SPECIFIED_VALUES)
	CheckoutA_SPECIFIED_VALUES(a_specified_values *A_SPECIFIED_VALUES)
	CommitA_SPEC_ATTRIBUTES(a_spec_attributes *A_SPEC_ATTRIBUTES)
	CheckoutA_SPEC_ATTRIBUTES(a_spec_attributes *A_SPEC_ATTRIBUTES)
	CommitA_SPEC_OBJECTS(a_spec_objects *A_SPEC_OBJECTS)
	CheckoutA_SPEC_OBJECTS(a_spec_objects *A_SPEC_OBJECTS)
	CommitA_SPEC_OBJECT_TYPE_REF(a_spec_object_type_ref *A_SPEC_OBJECT_TYPE_REF)
	CheckoutA_SPEC_OBJECT_TYPE_REF(a_spec_object_type_ref *A_SPEC_OBJECT_TYPE_REF)
	CommitA_SPEC_RELATIONS(a_spec_relations *A_SPEC_RELATIONS)
	CheckoutA_SPEC_RELATIONS(a_spec_relations *A_SPEC_RELATIONS)
	CommitA_SPEC_RELATION_GROUPS(a_spec_relation_groups *A_SPEC_RELATION_GROUPS)
	CheckoutA_SPEC_RELATION_GROUPS(a_spec_relation_groups *A_SPEC_RELATION_GROUPS)
	CommitA_SPEC_RELATION_REF(a_spec_relation_ref *A_SPEC_RELATION_REF)
	CheckoutA_SPEC_RELATION_REF(a_spec_relation_ref *A_SPEC_RELATION_REF)
	CommitA_SPEC_RELATION_TYPE_REF(a_spec_relation_type_ref *A_SPEC_RELATION_TYPE_REF)
	CheckoutA_SPEC_RELATION_TYPE_REF(a_spec_relation_type_ref *A_SPEC_RELATION_TYPE_REF)
	CommitA_SPEC_TYPES(a_spec_types *A_SPEC_TYPES)
	CheckoutA_SPEC_TYPES(a_spec_types *A_SPEC_TYPES)
	CommitA_THE_HEADER(a_the_header *A_THE_HEADER)
	CheckoutA_THE_HEADER(a_the_header *A_THE_HEADER)
	CommitA_TOOL_EXTENSIONS(a_tool_extensions *A_TOOL_EXTENSIONS)
	CheckoutA_TOOL_EXTENSIONS(a_tool_extensions *A_TOOL_EXTENSIONS)
	CommitDATATYPE_DEFINITION_BOOLEAN(datatype_definition_boolean *DATATYPE_DEFINITION_BOOLEAN)
	CheckoutDATATYPE_DEFINITION_BOOLEAN(datatype_definition_boolean *DATATYPE_DEFINITION_BOOLEAN)
	CommitDATATYPE_DEFINITION_DATE(datatype_definition_date *DATATYPE_DEFINITION_DATE)
	CheckoutDATATYPE_DEFINITION_DATE(datatype_definition_date *DATATYPE_DEFINITION_DATE)
	CommitDATATYPE_DEFINITION_ENUMERATION(datatype_definition_enumeration *DATATYPE_DEFINITION_ENUMERATION)
	CheckoutDATATYPE_DEFINITION_ENUMERATION(datatype_definition_enumeration *DATATYPE_DEFINITION_ENUMERATION)
	CommitDATATYPE_DEFINITION_INTEGER(datatype_definition_integer *DATATYPE_DEFINITION_INTEGER)
	CheckoutDATATYPE_DEFINITION_INTEGER(datatype_definition_integer *DATATYPE_DEFINITION_INTEGER)
	CommitDATATYPE_DEFINITION_REAL(datatype_definition_real *DATATYPE_DEFINITION_REAL)
	CheckoutDATATYPE_DEFINITION_REAL(datatype_definition_real *DATATYPE_DEFINITION_REAL)
	CommitDATATYPE_DEFINITION_STRING(datatype_definition_string *DATATYPE_DEFINITION_STRING)
	CheckoutDATATYPE_DEFINITION_STRING(datatype_definition_string *DATATYPE_DEFINITION_STRING)
	CommitDATATYPE_DEFINITION_XHTML(datatype_definition_xhtml *DATATYPE_DEFINITION_XHTML)
	CheckoutDATATYPE_DEFINITION_XHTML(datatype_definition_xhtml *DATATYPE_DEFINITION_XHTML)
	CommitEMBEDDED_VALUE(embedded_value *EMBEDDED_VALUE)
	CheckoutEMBEDDED_VALUE(embedded_value *EMBEDDED_VALUE)
	CommitENUM_VALUE(enum_value *ENUM_VALUE)
	CheckoutENUM_VALUE(enum_value *ENUM_VALUE)
	CommitEmbeddedJpgImage(embeddedjpgimage *EmbeddedJpgImage)
	CheckoutEmbeddedJpgImage(embeddedjpgimage *EmbeddedJpgImage)
	CommitEmbeddedPngImage(embeddedpngimage *EmbeddedPngImage)
	CheckoutEmbeddedPngImage(embeddedpngimage *EmbeddedPngImage)
	CommitEmbeddedSvgImage(embeddedsvgimage *EmbeddedSvgImage)
	CheckoutEmbeddedSvgImage(embeddedsvgimage *EmbeddedSvgImage)
	CommitKill(kill *Kill)
	CheckoutKill(kill *Kill)
	CommitMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry(map_attribute_definition_boolean_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry(map_attribute_definition_boolean_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry)
	CommitMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry(map_attribute_definition_boolean_showintableentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry(map_attribute_definition_boolean_showintableentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry)
	CommitMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry(map_attribute_definition_boolean_showintitleentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry(map_attribute_definition_boolean_showintitleentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry)
	CommitMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry(map_attribute_definition_date_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry(map_attribute_definition_date_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry)
	CommitMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry(map_attribute_definition_date_showintableentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry(map_attribute_definition_date_showintableentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry)
	CommitMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry(map_attribute_definition_date_showintitleentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry(map_attribute_definition_date_showintitleentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry)
	CommitMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry(map_attribute_definition_enumeration_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry(map_attribute_definition_enumeration_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry)
	CommitMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry(map_attribute_definition_enumeration_showintableentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry(map_attribute_definition_enumeration_showintableentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry)
	CommitMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry(map_attribute_definition_enumeration_showintitleentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry(map_attribute_definition_enumeration_showintitleentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry)
	CommitMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry(map_attribute_definition_integer_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry(map_attribute_definition_integer_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry)
	CommitMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry(map_attribute_definition_integer_showintableentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry(map_attribute_definition_integer_showintableentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry)
	CommitMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry(map_attribute_definition_integer_showintitleentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry(map_attribute_definition_integer_showintitleentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry)
	CommitMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry(map_attribute_definition_real_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry(map_attribute_definition_real_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry)
	CommitMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry(map_attribute_definition_real_showintableentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry(map_attribute_definition_real_showintableentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry)
	CommitMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry(map_attribute_definition_real_showintitleentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry(map_attribute_definition_real_showintitleentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry)
	CommitMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry(map_attribute_definition_string_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry(map_attribute_definition_string_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry)
	CommitMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry(map_attribute_definition_string_showintableentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry(map_attribute_definition_string_showintableentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry)
	CommitMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry(map_attribute_definition_string_showintitleentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry(map_attribute_definition_string_showintitleentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry)
	CommitMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry(map_attribute_definition_xhtml_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry(map_attribute_definition_xhtml_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry)
	CommitMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry(map_attribute_definition_xhtml_showintableentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry(map_attribute_definition_xhtml_showintableentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry)
	CommitMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry(map_attribute_definition_xhtml_showintitleentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry)
	CheckoutMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry(map_attribute_definition_xhtml_showintitleentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry)
	CommitMap_SPECIFICATION_Nodes_expandedEntry(map_specification_nodes_expandedentry *Map_SPECIFICATION_Nodes_expandedEntry)
	CheckoutMap_SPECIFICATION_Nodes_expandedEntry(map_specification_nodes_expandedentry *Map_SPECIFICATION_Nodes_expandedEntry)
	CommitMap_SPEC_OBJECT_TYPE_isNodeExpandedEntry(map_spec_object_type_isnodeexpandedentry *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry)
	CheckoutMap_SPEC_OBJECT_TYPE_isNodeExpandedEntry(map_spec_object_type_isnodeexpandedentry *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry)
	CommitMap_SPEC_OBJECT_TYPE_showIdentifierEntry(map_spec_object_type_showidentifierentry *Map_SPEC_OBJECT_TYPE_showIdentifierEntry)
	CheckoutMap_SPEC_OBJECT_TYPE_showIdentifierEntry(map_spec_object_type_showidentifierentry *Map_SPEC_OBJECT_TYPE_showIdentifierEntry)
	CommitMap_SPEC_OBJECT_TYPE_showNameEntry(map_spec_object_type_shownameentry *Map_SPEC_OBJECT_TYPE_showNameEntry)
	CheckoutMap_SPEC_OBJECT_TYPE_showNameEntry(map_spec_object_type_shownameentry *Map_SPEC_OBJECT_TYPE_showNameEntry)
	CommitRELATION_GROUP(relation_group *RELATION_GROUP)
	CheckoutRELATION_GROUP(relation_group *RELATION_GROUP)
	CommitRELATION_GROUP_TYPE(relation_group_type *RELATION_GROUP_TYPE)
	CheckoutRELATION_GROUP_TYPE(relation_group_type *RELATION_GROUP_TYPE)
	CommitREQ_IF(req_if *REQ_IF)
	CheckoutREQ_IF(req_if *REQ_IF)
	CommitREQ_IF_CONTENT(req_if_content *REQ_IF_CONTENT)
	CheckoutREQ_IF_CONTENT(req_if_content *REQ_IF_CONTENT)
	CommitREQ_IF_HEADER(req_if_header *REQ_IF_HEADER)
	CheckoutREQ_IF_HEADER(req_if_header *REQ_IF_HEADER)
	CommitREQ_IF_TOOL_EXTENSION(req_if_tool_extension *REQ_IF_TOOL_EXTENSION)
	CheckoutREQ_IF_TOOL_EXTENSION(req_if_tool_extension *REQ_IF_TOOL_EXTENSION)
	CommitRenderingConfiguration(renderingconfiguration *RenderingConfiguration)
	CheckoutRenderingConfiguration(renderingconfiguration *RenderingConfiguration)
	CommitSPECIFICATION(specification *SPECIFICATION)
	CheckoutSPECIFICATION(specification *SPECIFICATION)
	CommitSPECIFICATION_TYPE(specification_type *SPECIFICATION_TYPE)
	CheckoutSPECIFICATION_TYPE(specification_type *SPECIFICATION_TYPE)
	CommitSPEC_HIERARCHY(spec_hierarchy *SPEC_HIERARCHY)
	CheckoutSPEC_HIERARCHY(spec_hierarchy *SPEC_HIERARCHY)
	CommitSPEC_OBJECT(spec_object *SPEC_OBJECT)
	CheckoutSPEC_OBJECT(spec_object *SPEC_OBJECT)
	CommitSPEC_OBJECT_TYPE(spec_object_type *SPEC_OBJECT_TYPE)
	CheckoutSPEC_OBJECT_TYPE(spec_object_type *SPEC_OBJECT_TYPE)
	CommitSPEC_RELATION(spec_relation *SPEC_RELATION)
	CheckoutSPEC_RELATION(spec_relation *SPEC_RELATION)
	CommitSPEC_RELATION_TYPE(spec_relation_type *SPEC_RELATION_TYPE)
	CheckoutSPEC_RELATION_TYPE(spec_relation_type *SPEC_RELATION_TYPE)
	CommitStaticWebSite(staticwebsite *StaticWebSite)
	CheckoutStaticWebSite(staticwebsite *StaticWebSite)
	CommitStaticWebSiteChapter(staticwebsitechapter *StaticWebSiteChapter)
	CheckoutStaticWebSiteChapter(staticwebsitechapter *StaticWebSiteChapter)
	CommitStaticWebSiteGeneratedImage(staticwebsitegeneratedimage *StaticWebSiteGeneratedImage)
	CheckoutStaticWebSiteGeneratedImage(staticwebsitegeneratedimage *StaticWebSiteGeneratedImage)
	CommitStaticWebSiteImage(staticwebsiteimage *StaticWebSiteImage)
	CheckoutStaticWebSiteImage(staticwebsiteimage *StaticWebSiteImage)
	CommitStaticWebSiteParagraph(staticwebsiteparagraph *StaticWebSiteParagraph)
	CheckoutStaticWebSiteParagraph(staticwebsiteparagraph *StaticWebSiteParagraph)
	CommitXHTML_CONTENT(xhtml_content *XHTML_CONTENT)
	CheckoutXHTML_CONTENT(xhtml_content *XHTML_CONTENT)
	GetLastCommitFromBackNb() uint
	GetLastPushFromFrontNb() uint
}

type DATATYPE_DEFINITION_BOOLEAN

type DATATYPE_DEFINITION_BOOLEAN struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`
}

DATATYPE_DEFINITION_BOOLEAN Named source named complex type "DATATYPE-DEFINITION-BOOLEAN"

func CopyBranchDATATYPE_DEFINITION_BOOLEAN

func CopyBranchDATATYPE_DEFINITION_BOOLEAN(mapOrigCopy map[any]any, datatype_definition_booleanFrom *DATATYPE_DEFINITION_BOOLEAN) (datatype_definition_booleanTo *DATATYPE_DEFINITION_BOOLEAN)

func (*DATATYPE_DEFINITION_BOOLEAN) Checkout

func (datatype_definition_boolean *DATATYPE_DEFINITION_BOOLEAN) Checkout(stage *Stage) *DATATYPE_DEFINITION_BOOLEAN

Checkout datatype_definition_boolean to the back repo (if it is already staged)

func (*DATATYPE_DEFINITION_BOOLEAN) Commit

func (datatype_definition_boolean *DATATYPE_DEFINITION_BOOLEAN) Commit(stage *Stage) *DATATYPE_DEFINITION_BOOLEAN

commit datatype_definition_boolean to the back repo (if it is already staged)

func (*DATATYPE_DEFINITION_BOOLEAN) CommitVoid

func (datatype_definition_boolean *DATATYPE_DEFINITION_BOOLEAN) CommitVoid(stage *Stage)

func (*DATATYPE_DEFINITION_BOOLEAN) CopyBasicFields

func (from *DATATYPE_DEFINITION_BOOLEAN) CopyBasicFields(to *DATATYPE_DEFINITION_BOOLEAN)

func (*DATATYPE_DEFINITION_BOOLEAN) GetIdentifier

func (d *DATATYPE_DEFINITION_BOOLEAN) GetIdentifier() string

func (*DATATYPE_DEFINITION_BOOLEAN) GetLongName

func (a *DATATYPE_DEFINITION_BOOLEAN) GetLongName() string

func (*DATATYPE_DEFINITION_BOOLEAN) GetName

func (datatype_definition_boolean *DATATYPE_DEFINITION_BOOLEAN) GetName() (res string)

for satisfaction of GongStruct interface

func (*DATATYPE_DEFINITION_BOOLEAN) Stage

func (datatype_definition_boolean *DATATYPE_DEFINITION_BOOLEAN) Stage(stage *Stage) *DATATYPE_DEFINITION_BOOLEAN

Stage puts datatype_definition_boolean to the model stage

func (*DATATYPE_DEFINITION_BOOLEAN) Unstage

func (datatype_definition_boolean *DATATYPE_DEFINITION_BOOLEAN) Unstage(stage *Stage) *DATATYPE_DEFINITION_BOOLEAN

Unstage removes datatype_definition_boolean off the model stage

func (*DATATYPE_DEFINITION_BOOLEAN) UnstageVoid

func (datatype_definition_boolean *DATATYPE_DEFINITION_BOOLEAN) UnstageVoid(stage *Stage)

UnstageVoid removes datatype_definition_boolean off the model stage

type DATATYPE_DEFINITION_BOOLEAN_WOP

type DATATYPE_DEFINITION_BOOLEAN_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string
}

type DATATYPE_DEFINITION_DATE

type DATATYPE_DEFINITION_DATE struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`
}

DATATYPE_DEFINITION_DATE Named source named complex type "DATATYPE-DEFINITION-DATE"

func CopyBranchDATATYPE_DEFINITION_DATE

func CopyBranchDATATYPE_DEFINITION_DATE(mapOrigCopy map[any]any, datatype_definition_dateFrom *DATATYPE_DEFINITION_DATE) (datatype_definition_dateTo *DATATYPE_DEFINITION_DATE)

func (*DATATYPE_DEFINITION_DATE) Checkout

func (datatype_definition_date *DATATYPE_DEFINITION_DATE) Checkout(stage *Stage) *DATATYPE_DEFINITION_DATE

Checkout datatype_definition_date to the back repo (if it is already staged)

func (*DATATYPE_DEFINITION_DATE) Commit

func (datatype_definition_date *DATATYPE_DEFINITION_DATE) Commit(stage *Stage) *DATATYPE_DEFINITION_DATE

commit datatype_definition_date to the back repo (if it is already staged)

func (*DATATYPE_DEFINITION_DATE) CommitVoid

func (datatype_definition_date *DATATYPE_DEFINITION_DATE) CommitVoid(stage *Stage)

func (*DATATYPE_DEFINITION_DATE) CopyBasicFields

func (from *DATATYPE_DEFINITION_DATE) CopyBasicFields(to *DATATYPE_DEFINITION_DATE)

func (*DATATYPE_DEFINITION_DATE) GetIdentifier

func (d *DATATYPE_DEFINITION_DATE) GetIdentifier() string

func (*DATATYPE_DEFINITION_DATE) GetLongName

func (a *DATATYPE_DEFINITION_DATE) GetLongName() string

func (*DATATYPE_DEFINITION_DATE) GetName

func (datatype_definition_date *DATATYPE_DEFINITION_DATE) GetName() (res string)

for satisfaction of GongStruct interface

func (*DATATYPE_DEFINITION_DATE) Stage

func (datatype_definition_date *DATATYPE_DEFINITION_DATE) Stage(stage *Stage) *DATATYPE_DEFINITION_DATE

Stage puts datatype_definition_date to the model stage

func (*DATATYPE_DEFINITION_DATE) Unstage

func (datatype_definition_date *DATATYPE_DEFINITION_DATE) Unstage(stage *Stage) *DATATYPE_DEFINITION_DATE

Unstage removes datatype_definition_date off the model stage

func (*DATATYPE_DEFINITION_DATE) UnstageVoid

func (datatype_definition_date *DATATYPE_DEFINITION_DATE) UnstageVoid(stage *Stage)

UnstageVoid removes datatype_definition_date off the model stage

type DATATYPE_DEFINITION_DATE_WOP

type DATATYPE_DEFINITION_DATE_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string
}

type DATATYPE_DEFINITION_ENUMERATION

type DATATYPE_DEFINITION_ENUMERATION struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "SPECIFIED-VALUES" of type A_SPECIFIED-VALUES.
	SPECIFIED_VALUES *A_SPECIFIED_VALUES `xml:"SPECIFIED-VALUES,omitempty"`
}

DATATYPE_DEFINITION_ENUMERATION Named source named complex type "DATATYPE-DEFINITION-ENUMERATION"

func CopyBranchDATATYPE_DEFINITION_ENUMERATION

func CopyBranchDATATYPE_DEFINITION_ENUMERATION(mapOrigCopy map[any]any, datatype_definition_enumerationFrom *DATATYPE_DEFINITION_ENUMERATION) (datatype_definition_enumerationTo *DATATYPE_DEFINITION_ENUMERATION)

func (*DATATYPE_DEFINITION_ENUMERATION) Checkout

func (datatype_definition_enumeration *DATATYPE_DEFINITION_ENUMERATION) Checkout(stage *Stage) *DATATYPE_DEFINITION_ENUMERATION

Checkout datatype_definition_enumeration to the back repo (if it is already staged)

func (*DATATYPE_DEFINITION_ENUMERATION) Commit

func (datatype_definition_enumeration *DATATYPE_DEFINITION_ENUMERATION) Commit(stage *Stage) *DATATYPE_DEFINITION_ENUMERATION

commit datatype_definition_enumeration to the back repo (if it is already staged)

func (*DATATYPE_DEFINITION_ENUMERATION) CommitVoid

func (datatype_definition_enumeration *DATATYPE_DEFINITION_ENUMERATION) CommitVoid(stage *Stage)

func (*DATATYPE_DEFINITION_ENUMERATION) CopyBasicFields

func (*DATATYPE_DEFINITION_ENUMERATION) GetIdentifier

func (d *DATATYPE_DEFINITION_ENUMERATION) GetIdentifier() string

func (*DATATYPE_DEFINITION_ENUMERATION) GetLongName

func (a *DATATYPE_DEFINITION_ENUMERATION) GetLongName() string

func (*DATATYPE_DEFINITION_ENUMERATION) GetName

func (datatype_definition_enumeration *DATATYPE_DEFINITION_ENUMERATION) GetName() (res string)

for satisfaction of GongStruct interface

func (*DATATYPE_DEFINITION_ENUMERATION) Stage

func (datatype_definition_enumeration *DATATYPE_DEFINITION_ENUMERATION) Stage(stage *Stage) *DATATYPE_DEFINITION_ENUMERATION

Stage puts datatype_definition_enumeration to the model stage

func (*DATATYPE_DEFINITION_ENUMERATION) Unstage

func (datatype_definition_enumeration *DATATYPE_DEFINITION_ENUMERATION) Unstage(stage *Stage) *DATATYPE_DEFINITION_ENUMERATION

Unstage removes datatype_definition_enumeration off the model stage

func (*DATATYPE_DEFINITION_ENUMERATION) UnstageVoid

func (datatype_definition_enumeration *DATATYPE_DEFINITION_ENUMERATION) UnstageVoid(stage *Stage)

UnstageVoid removes datatype_definition_enumeration off the model stage

type DATATYPE_DEFINITION_ENUMERATION_WOP

type DATATYPE_DEFINITION_ENUMERATION_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string
}

type DATATYPE_DEFINITION_INTEGER

type DATATYPE_DEFINITION_INTEGER struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from attribute "MAX
	MAX int `xml:"MAX,attr,omitempty"`

	// generated from attribute "MIN
	MIN int `xml:"MIN,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`
}

DATATYPE_DEFINITION_INTEGER Named source named complex type "DATATYPE-DEFINITION-INTEGER"

func CopyBranchDATATYPE_DEFINITION_INTEGER

func CopyBranchDATATYPE_DEFINITION_INTEGER(mapOrigCopy map[any]any, datatype_definition_integerFrom *DATATYPE_DEFINITION_INTEGER) (datatype_definition_integerTo *DATATYPE_DEFINITION_INTEGER)

func (*DATATYPE_DEFINITION_INTEGER) Checkout

func (datatype_definition_integer *DATATYPE_DEFINITION_INTEGER) Checkout(stage *Stage) *DATATYPE_DEFINITION_INTEGER

Checkout datatype_definition_integer to the back repo (if it is already staged)

func (*DATATYPE_DEFINITION_INTEGER) Commit

func (datatype_definition_integer *DATATYPE_DEFINITION_INTEGER) Commit(stage *Stage) *DATATYPE_DEFINITION_INTEGER

commit datatype_definition_integer to the back repo (if it is already staged)

func (*DATATYPE_DEFINITION_INTEGER) CommitVoid

func (datatype_definition_integer *DATATYPE_DEFINITION_INTEGER) CommitVoid(stage *Stage)

func (*DATATYPE_DEFINITION_INTEGER) CopyBasicFields

func (from *DATATYPE_DEFINITION_INTEGER) CopyBasicFields(to *DATATYPE_DEFINITION_INTEGER)

func (*DATATYPE_DEFINITION_INTEGER) GetIdentifier

func (d *DATATYPE_DEFINITION_INTEGER) GetIdentifier() string

func (*DATATYPE_DEFINITION_INTEGER) GetLongName

func (a *DATATYPE_DEFINITION_INTEGER) GetLongName() string

func (*DATATYPE_DEFINITION_INTEGER) GetName

func (datatype_definition_integer *DATATYPE_DEFINITION_INTEGER) GetName() (res string)

for satisfaction of GongStruct interface

func (*DATATYPE_DEFINITION_INTEGER) Stage

func (datatype_definition_integer *DATATYPE_DEFINITION_INTEGER) Stage(stage *Stage) *DATATYPE_DEFINITION_INTEGER

Stage puts datatype_definition_integer to the model stage

func (*DATATYPE_DEFINITION_INTEGER) Unstage

func (datatype_definition_integer *DATATYPE_DEFINITION_INTEGER) Unstage(stage *Stage) *DATATYPE_DEFINITION_INTEGER

Unstage removes datatype_definition_integer off the model stage

func (*DATATYPE_DEFINITION_INTEGER) UnstageVoid

func (datatype_definition_integer *DATATYPE_DEFINITION_INTEGER) UnstageVoid(stage *Stage)

UnstageVoid removes datatype_definition_integer off the model stage

type DATATYPE_DEFINITION_INTEGER_WOP

type DATATYPE_DEFINITION_INTEGER_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string

	MAX int

	MIN int
}

type DATATYPE_DEFINITION_REAL

type DATATYPE_DEFINITION_REAL struct {
	Name string `xml:"-"`

	// generated from attribute "ACCURACY
	ACCURACY int `xml:"ACCURACY,attr,omitempty"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from attribute "MAX
	MAX float64 `xml:"MAX,attr,omitempty"`

	// generated from attribute "MIN
	MIN float64 `xml:"MIN,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`
}

DATATYPE_DEFINITION_REAL Named source named complex type "DATATYPE-DEFINITION-REAL"

func CopyBranchDATATYPE_DEFINITION_REAL

func CopyBranchDATATYPE_DEFINITION_REAL(mapOrigCopy map[any]any, datatype_definition_realFrom *DATATYPE_DEFINITION_REAL) (datatype_definition_realTo *DATATYPE_DEFINITION_REAL)

func (*DATATYPE_DEFINITION_REAL) Checkout

func (datatype_definition_real *DATATYPE_DEFINITION_REAL) Checkout(stage *Stage) *DATATYPE_DEFINITION_REAL

Checkout datatype_definition_real to the back repo (if it is already staged)

func (*DATATYPE_DEFINITION_REAL) Commit

func (datatype_definition_real *DATATYPE_DEFINITION_REAL) Commit(stage *Stage) *DATATYPE_DEFINITION_REAL

commit datatype_definition_real to the back repo (if it is already staged)

func (*DATATYPE_DEFINITION_REAL) CommitVoid

func (datatype_definition_real *DATATYPE_DEFINITION_REAL) CommitVoid(stage *Stage)

func (*DATATYPE_DEFINITION_REAL) CopyBasicFields

func (from *DATATYPE_DEFINITION_REAL) CopyBasicFields(to *DATATYPE_DEFINITION_REAL)

func (*DATATYPE_DEFINITION_REAL) GetIdentifier

func (d *DATATYPE_DEFINITION_REAL) GetIdentifier() string

func (*DATATYPE_DEFINITION_REAL) GetLongName

func (a *DATATYPE_DEFINITION_REAL) GetLongName() string

func (*DATATYPE_DEFINITION_REAL) GetName

func (datatype_definition_real *DATATYPE_DEFINITION_REAL) GetName() (res string)

for satisfaction of GongStruct interface

func (*DATATYPE_DEFINITION_REAL) Stage

func (datatype_definition_real *DATATYPE_DEFINITION_REAL) Stage(stage *Stage) *DATATYPE_DEFINITION_REAL

Stage puts datatype_definition_real to the model stage

func (*DATATYPE_DEFINITION_REAL) Unstage

func (datatype_definition_real *DATATYPE_DEFINITION_REAL) Unstage(stage *Stage) *DATATYPE_DEFINITION_REAL

Unstage removes datatype_definition_real off the model stage

func (*DATATYPE_DEFINITION_REAL) UnstageVoid

func (datatype_definition_real *DATATYPE_DEFINITION_REAL) UnstageVoid(stage *Stage)

UnstageVoid removes datatype_definition_real off the model stage

type DATATYPE_DEFINITION_REAL_WOP

type DATATYPE_DEFINITION_REAL_WOP struct {
	Name string

	ACCURACY int

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string

	MAX float64

	MIN float64
}

type DATATYPE_DEFINITION_STRING

type DATATYPE_DEFINITION_STRING struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from attribute "MAX-LENGTH
	MAX_LENGTH int `xml:"MAX-LENGTH,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`
}

DATATYPE_DEFINITION_STRING Named source named complex type "DATATYPE-DEFINITION-STRING"

func CopyBranchDATATYPE_DEFINITION_STRING

func CopyBranchDATATYPE_DEFINITION_STRING(mapOrigCopy map[any]any, datatype_definition_stringFrom *DATATYPE_DEFINITION_STRING) (datatype_definition_stringTo *DATATYPE_DEFINITION_STRING)

func (*DATATYPE_DEFINITION_STRING) Checkout

func (datatype_definition_string *DATATYPE_DEFINITION_STRING) Checkout(stage *Stage) *DATATYPE_DEFINITION_STRING

Checkout datatype_definition_string to the back repo (if it is already staged)

func (*DATATYPE_DEFINITION_STRING) Commit

func (datatype_definition_string *DATATYPE_DEFINITION_STRING) Commit(stage *Stage) *DATATYPE_DEFINITION_STRING

commit datatype_definition_string to the back repo (if it is already staged)

func (*DATATYPE_DEFINITION_STRING) CommitVoid

func (datatype_definition_string *DATATYPE_DEFINITION_STRING) CommitVoid(stage *Stage)

func (*DATATYPE_DEFINITION_STRING) CopyBasicFields

func (from *DATATYPE_DEFINITION_STRING) CopyBasicFields(to *DATATYPE_DEFINITION_STRING)

func (*DATATYPE_DEFINITION_STRING) GetIdentifier

func (d *DATATYPE_DEFINITION_STRING) GetIdentifier() string

func (*DATATYPE_DEFINITION_STRING) GetLongName

func (a *DATATYPE_DEFINITION_STRING) GetLongName() string

func (*DATATYPE_DEFINITION_STRING) GetName

func (datatype_definition_string *DATATYPE_DEFINITION_STRING) GetName() (res string)

for satisfaction of GongStruct interface

func (*DATATYPE_DEFINITION_STRING) Stage

func (datatype_definition_string *DATATYPE_DEFINITION_STRING) Stage(stage *Stage) *DATATYPE_DEFINITION_STRING

Stage puts datatype_definition_string to the model stage

func (*DATATYPE_DEFINITION_STRING) Unstage

func (datatype_definition_string *DATATYPE_DEFINITION_STRING) Unstage(stage *Stage) *DATATYPE_DEFINITION_STRING

Unstage removes datatype_definition_string off the model stage

func (*DATATYPE_DEFINITION_STRING) UnstageVoid

func (datatype_definition_string *DATATYPE_DEFINITION_STRING) UnstageVoid(stage *Stage)

UnstageVoid removes datatype_definition_string off the model stage

type DATATYPE_DEFINITION_STRING_WOP

type DATATYPE_DEFINITION_STRING_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string

	MAX_LENGTH int
}

type DATATYPE_DEFINITION_XHTML

type DATATYPE_DEFINITION_XHTML struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`
}

DATATYPE_DEFINITION_XHTML Named source named complex type "DATATYPE-DEFINITION-XHTML"

func CopyBranchDATATYPE_DEFINITION_XHTML

func CopyBranchDATATYPE_DEFINITION_XHTML(mapOrigCopy map[any]any, datatype_definition_xhtmlFrom *DATATYPE_DEFINITION_XHTML) (datatype_definition_xhtmlTo *DATATYPE_DEFINITION_XHTML)

func (*DATATYPE_DEFINITION_XHTML) Checkout

func (datatype_definition_xhtml *DATATYPE_DEFINITION_XHTML) Checkout(stage *Stage) *DATATYPE_DEFINITION_XHTML

Checkout datatype_definition_xhtml to the back repo (if it is already staged)

func (*DATATYPE_DEFINITION_XHTML) Commit

func (datatype_definition_xhtml *DATATYPE_DEFINITION_XHTML) Commit(stage *Stage) *DATATYPE_DEFINITION_XHTML

commit datatype_definition_xhtml to the back repo (if it is already staged)

func (*DATATYPE_DEFINITION_XHTML) CommitVoid

func (datatype_definition_xhtml *DATATYPE_DEFINITION_XHTML) CommitVoid(stage *Stage)

func (*DATATYPE_DEFINITION_XHTML) CopyBasicFields

func (from *DATATYPE_DEFINITION_XHTML) CopyBasicFields(to *DATATYPE_DEFINITION_XHTML)

func (*DATATYPE_DEFINITION_XHTML) GetIdentifier

func (d *DATATYPE_DEFINITION_XHTML) GetIdentifier() string

func (*DATATYPE_DEFINITION_XHTML) GetLongName

func (a *DATATYPE_DEFINITION_XHTML) GetLongName() string

func (*DATATYPE_DEFINITION_XHTML) GetName

func (datatype_definition_xhtml *DATATYPE_DEFINITION_XHTML) GetName() (res string)

for satisfaction of GongStruct interface

func (*DATATYPE_DEFINITION_XHTML) Stage

func (datatype_definition_xhtml *DATATYPE_DEFINITION_XHTML) Stage(stage *Stage) *DATATYPE_DEFINITION_XHTML

Stage puts datatype_definition_xhtml to the model stage

func (*DATATYPE_DEFINITION_XHTML) Unstage

func (datatype_definition_xhtml *DATATYPE_DEFINITION_XHTML) Unstage(stage *Stage) *DATATYPE_DEFINITION_XHTML

Unstage removes datatype_definition_xhtml off the model stage

func (*DATATYPE_DEFINITION_XHTML) UnstageVoid

func (datatype_definition_xhtml *DATATYPE_DEFINITION_XHTML) UnstageVoid(stage *Stage)

UnstageVoid removes datatype_definition_xhtml off the model stage

type DATATYPE_DEFINITION_XHTML_WOP

type DATATYPE_DEFINITION_XHTML_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string
}

type DataTypesTreeUpdaterInterface

type DataTypesTreeUpdaterInterface interface {
	UpdateAndCommitDataTypeTreeStage(stager *Stager)
}

type DatatypeDefinition

type DatatypeDefinition interface {
	PointerToGongstruct

	GetLongName() string
}

type DiffHunk

type DiffHunk struct {
	OldStart int
	OldLines int
	NewStart int
	NewLines int
	Lines    []string
}

DiffHunk represents a single hunk in a unified diff

type DiffOp

type DiffOp struct {
	Type string // "context", "delete", "add"
	Text string
}

DiffLine represents a line in a diff with its operation

type EMBEDDED_VALUE

type EMBEDDED_VALUE struct {
	Name string `xml:"-"`

	// generated from attribute "KEY
	KEY int `xml:"KEY,attr,omitempty"`

	// generated from attribute "OTHER-CONTENT
	OTHER_CONTENT string `xml:"OTHER-CONTENT,attr,omitempty"`
}

EMBEDDED_VALUE Named source named complex type "EMBEDDED-VALUE"

func CopyBranchEMBEDDED_VALUE

func CopyBranchEMBEDDED_VALUE(mapOrigCopy map[any]any, embedded_valueFrom *EMBEDDED_VALUE) (embedded_valueTo *EMBEDDED_VALUE)

func (*EMBEDDED_VALUE) Checkout

func (embedded_value *EMBEDDED_VALUE) Checkout(stage *Stage) *EMBEDDED_VALUE

Checkout embedded_value to the back repo (if it is already staged)

func (*EMBEDDED_VALUE) Commit

func (embedded_value *EMBEDDED_VALUE) Commit(stage *Stage) *EMBEDDED_VALUE

commit embedded_value to the back repo (if it is already staged)

func (*EMBEDDED_VALUE) CommitVoid

func (embedded_value *EMBEDDED_VALUE) CommitVoid(stage *Stage)

func (*EMBEDDED_VALUE) CopyBasicFields

func (from *EMBEDDED_VALUE) CopyBasicFields(to *EMBEDDED_VALUE)

func (*EMBEDDED_VALUE) GetName

func (embedded_value *EMBEDDED_VALUE) GetName() (res string)

for satisfaction of GongStruct interface

func (*EMBEDDED_VALUE) Stage

func (embedded_value *EMBEDDED_VALUE) Stage(stage *Stage) *EMBEDDED_VALUE

Stage puts embedded_value to the model stage

func (*EMBEDDED_VALUE) Unstage

func (embedded_value *EMBEDDED_VALUE) Unstage(stage *Stage) *EMBEDDED_VALUE

Unstage removes embedded_value off the model stage

func (*EMBEDDED_VALUE) UnstageVoid

func (embedded_value *EMBEDDED_VALUE) UnstageVoid(stage *Stage)

UnstageVoid removes embedded_value off the model stage

type EMBEDDED_VALUE_WOP

type EMBEDDED_VALUE_WOP struct {
	Name string

	KEY int

	OTHER_CONTENT string
}

type ENUM_VALUE

type ENUM_VALUE struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "PROPERTIES" of type A_PROPERTIES.
	PROPERTIES *A_PROPERTIES `xml:"PROPERTIES,omitempty"`
}

ENUM_VALUE Named source named complex type "ENUM-VALUE"

func CopyBranchENUM_VALUE

func CopyBranchENUM_VALUE(mapOrigCopy map[any]any, enum_valueFrom *ENUM_VALUE) (enum_valueTo *ENUM_VALUE)

func (*ENUM_VALUE) Checkout

func (enum_value *ENUM_VALUE) Checkout(stage *Stage) *ENUM_VALUE

Checkout enum_value to the back repo (if it is already staged)

func (*ENUM_VALUE) Commit

func (enum_value *ENUM_VALUE) Commit(stage *Stage) *ENUM_VALUE

commit enum_value to the back repo (if it is already staged)

func (*ENUM_VALUE) CommitVoid

func (enum_value *ENUM_VALUE) CommitVoid(stage *Stage)

func (*ENUM_VALUE) CopyBasicFields

func (from *ENUM_VALUE) CopyBasicFields(to *ENUM_VALUE)

func (*ENUM_VALUE) GetIdentifier

func (e *ENUM_VALUE) GetIdentifier() string

func (*ENUM_VALUE) GetName

func (enum_value *ENUM_VALUE) GetName() (res string)

for satisfaction of GongStruct interface

func (*ENUM_VALUE) Stage

func (enum_value *ENUM_VALUE) Stage(stage *Stage) *ENUM_VALUE

Stage puts enum_value to the model stage

func (*ENUM_VALUE) Unstage

func (enum_value *ENUM_VALUE) Unstage(stage *Stage) *ENUM_VALUE

Unstage removes enum_value off the model stage

func (*ENUM_VALUE) UnstageVoid

func (enum_value *ENUM_VALUE) UnstageVoid(stage *Stage)

UnstageVoid removes enum_value off the model stage

type ENUM_VALUE_WOP

type ENUM_VALUE_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string
}

type EmbeddedJpgImage

type EmbeddedJpgImage struct {
	Name string // path to the image

	// gong:text gong:width 600 gong:height 400
	Base64Content string // the svg
}

func CopyBranchEmbeddedJpgImage

func CopyBranchEmbeddedJpgImage(mapOrigCopy map[any]any, embeddedjpgimageFrom *EmbeddedJpgImage) (embeddedjpgimageTo *EmbeddedJpgImage)

func (*EmbeddedJpgImage) Checkout

func (embeddedjpgimage *EmbeddedJpgImage) Checkout(stage *Stage) *EmbeddedJpgImage

Checkout embeddedjpgimage to the back repo (if it is already staged)

func (*EmbeddedJpgImage) Commit

func (embeddedjpgimage *EmbeddedJpgImage) Commit(stage *Stage) *EmbeddedJpgImage

commit embeddedjpgimage to the back repo (if it is already staged)

func (*EmbeddedJpgImage) CommitVoid

func (embeddedjpgimage *EmbeddedJpgImage) CommitVoid(stage *Stage)

func (*EmbeddedJpgImage) CopyBasicFields

func (from *EmbeddedJpgImage) CopyBasicFields(to *EmbeddedJpgImage)

func (*EmbeddedJpgImage) GetName

func (embeddedjpgimage *EmbeddedJpgImage) GetName() (res string)

for satisfaction of GongStruct interface

func (*EmbeddedJpgImage) Stage

func (embeddedjpgimage *EmbeddedJpgImage) Stage(stage *Stage) *EmbeddedJpgImage

Stage puts embeddedjpgimage to the model stage

func (*EmbeddedJpgImage) Unstage

func (embeddedjpgimage *EmbeddedJpgImage) Unstage(stage *Stage) *EmbeddedJpgImage

Unstage removes embeddedjpgimage off the model stage

func (*EmbeddedJpgImage) UnstageVoid

func (embeddedjpgimage *EmbeddedJpgImage) UnstageVoid(stage *Stage)

UnstageVoid removes embeddedjpgimage off the model stage

type EmbeddedJpgImage_WOP

type EmbeddedJpgImage_WOP struct {
	Name string

	Base64Content string
}

type EmbeddedPngImage

type EmbeddedPngImage struct {
	Name string // path to the image

	// gong:text gong:width 600 gong:height 400
	Base64Content string // the svg
}

func CopyBranchEmbeddedPngImage

func CopyBranchEmbeddedPngImage(mapOrigCopy map[any]any, embeddedpngimageFrom *EmbeddedPngImage) (embeddedpngimageTo *EmbeddedPngImage)

func (*EmbeddedPngImage) Checkout

func (embeddedpngimage *EmbeddedPngImage) Checkout(stage *Stage) *EmbeddedPngImage

Checkout embeddedpngimage to the back repo (if it is already staged)

func (*EmbeddedPngImage) Commit

func (embeddedpngimage *EmbeddedPngImage) Commit(stage *Stage) *EmbeddedPngImage

commit embeddedpngimage to the back repo (if it is already staged)

func (*EmbeddedPngImage) CommitVoid

func (embeddedpngimage *EmbeddedPngImage) CommitVoid(stage *Stage)

func (*EmbeddedPngImage) CopyBasicFields

func (from *EmbeddedPngImage) CopyBasicFields(to *EmbeddedPngImage)

func (*EmbeddedPngImage) GetName

func (embeddedpngimage *EmbeddedPngImage) GetName() (res string)

for satisfaction of GongStruct interface

func (*EmbeddedPngImage) Stage

func (embeddedpngimage *EmbeddedPngImage) Stage(stage *Stage) *EmbeddedPngImage

Stage puts embeddedpngimage to the model stage

func (*EmbeddedPngImage) Unstage

func (embeddedpngimage *EmbeddedPngImage) Unstage(stage *Stage) *EmbeddedPngImage

Unstage removes embeddedpngimage off the model stage

func (*EmbeddedPngImage) UnstageVoid

func (embeddedpngimage *EmbeddedPngImage) UnstageVoid(stage *Stage)

UnstageVoid removes embeddedpngimage off the model stage

type EmbeddedPngImage_WOP

type EmbeddedPngImage_WOP struct {
	Name string

	Base64Content string
}

type EmbeddedSvgImage

type EmbeddedSvgImage struct {
	Name string // path to the image

	// gong:text gong:width 600 gong:height 400
	Content string // the svg
}

func CopyBranchEmbeddedSvgImage

func CopyBranchEmbeddedSvgImage(mapOrigCopy map[any]any, embeddedsvgimageFrom *EmbeddedSvgImage) (embeddedsvgimageTo *EmbeddedSvgImage)

func (*EmbeddedSvgImage) Checkout

func (embeddedsvgimage *EmbeddedSvgImage) Checkout(stage *Stage) *EmbeddedSvgImage

Checkout embeddedsvgimage to the back repo (if it is already staged)

func (*EmbeddedSvgImage) Commit

func (embeddedsvgimage *EmbeddedSvgImage) Commit(stage *Stage) *EmbeddedSvgImage

commit embeddedsvgimage to the back repo (if it is already staged)

func (*EmbeddedSvgImage) CommitVoid

func (embeddedsvgimage *EmbeddedSvgImage) CommitVoid(stage *Stage)

func (*EmbeddedSvgImage) CopyBasicFields

func (from *EmbeddedSvgImage) CopyBasicFields(to *EmbeddedSvgImage)

func (*EmbeddedSvgImage) GetName

func (embeddedsvgimage *EmbeddedSvgImage) GetName() (res string)

for satisfaction of GongStruct interface

func (*EmbeddedSvgImage) Stage

func (embeddedsvgimage *EmbeddedSvgImage) Stage(stage *Stage) *EmbeddedSvgImage

Stage puts embeddedsvgimage to the model stage

func (*EmbeddedSvgImage) Unstage

func (embeddedsvgimage *EmbeddedSvgImage) Unstage(stage *Stage) *EmbeddedSvgImage

Unstage removes embeddedsvgimage off the model stage

func (*EmbeddedSvgImage) UnstageVoid

func (embeddedsvgimage *EmbeddedSvgImage) UnstageVoid(stage *Stage)

UnstageVoid removes embeddedsvgimage off the model stage

type EmbeddedSvgImage_WOP

type EmbeddedSvgImage_WOP struct {
	Name string

	Content string
}

type EmptyString

type EmptyString string

func (EmptyString) CodeValues

func (emptystring EmptyString) CodeValues() (res []string)

func (EmptyString) Codes

func (emptystring EmptyString) Codes() (res []string)

func (*EmptyString) FromCodeString

func (emptystring *EmptyString) FromCodeString(input string) (err error)

func (*EmptyString) FromString

func (emptystring *EmptyString) FromString(input string) (err error)

func (*EmptyString) ToCodeString

func (emptystring *EmptyString) ToCodeString() (res string)

func (EmptyString) ToString

func (emptystring EmptyString) ToString() (res string)

insertion point of enum utility functions Utility function for EmptyString if enum values are string, it is stored with the value if enum values are int, they are stored with the code of the value

type Enum_GLOBAL_REF

type Enum_GLOBAL_REF string

From xsd simple type with enumerate restriction "GLOBAL-REF"

func (Enum_GLOBAL_REF) CodeValues

func (enum_global_ref Enum_GLOBAL_REF) CodeValues() (res []string)

func (Enum_GLOBAL_REF) Codes

func (enum_global_ref Enum_GLOBAL_REF) Codes() (res []string)

func (*Enum_GLOBAL_REF) FromCodeString

func (enum_global_ref *Enum_GLOBAL_REF) FromCodeString(input string) (err error)

func (*Enum_GLOBAL_REF) FromString

func (enum_global_ref *Enum_GLOBAL_REF) FromString(input string) (err error)

func (*Enum_GLOBAL_REF) ToCodeString

func (enum_global_ref *Enum_GLOBAL_REF) ToCodeString() (res string)

func (Enum_GLOBAL_REF) ToString

func (enum_global_ref Enum_GLOBAL_REF) ToString() (res string)

Utility function for Enum_GLOBAL_REF if enum values are string, it is stored with the value if enum values are int, they are stored with the code of the value

type ExcelizeTabulator

type ExcelizeTabulator struct {
	// contains filtered or unexported fields
}

func (*ExcelizeTabulator) AddCell

func (tab *ExcelizeTabulator) AddCell(sheetName string, rowId, columnIndex int, value string)

func (*ExcelizeTabulator) AddRow

func (tab *ExcelizeTabulator) AddRow(sheetName string) (rowId int)

func (*ExcelizeTabulator) AddSheet

func (tab *ExcelizeTabulator) AddSheet(sheetName string)

func (*ExcelizeTabulator) SetExcelizeFile

func (tab *ExcelizeTabulator) SetExcelizeFile(f *excelize.File)

type ExportModifiedReqifButtonProxy

type ExportModifiedReqifButtonProxy struct {
	// contains filtered or unexported fields
}

func (*ExportModifiedReqifButtonProxy) GetButtonsStage

func (e *ExportModifiedReqifButtonProxy) GetButtonsStage() *button.Stage

GetButtonsStage implements models.Target.

func (*ExportModifiedReqifButtonProxy) OnAfterUpdateButton

func (e *ExportModifiedReqifButtonProxy) OnAfterUpdateButton()

OnAfterUpdateButton implements models.Target.

type ExportRenderingConfButtonProxy

type ExportRenderingConfButtonProxy struct {
	// contains filtered or unexported fields
}

func (*ExportRenderingConfButtonProxy) GetButtonsStage

func (e *ExportRenderingConfButtonProxy) GetButtonsStage() *button.Stage

GetButtonsStage implements models.Target.

func (*ExportRenderingConfButtonProxy) OnAfterUpdateButton

func (e *ExportRenderingConfButtonProxy) OnAfterUpdateButton()

OnAfterUpdateButton implements models.Target.

type ExportStaticSiteButtonProxy

type ExportStaticSiteButtonProxy struct {
	// contains filtered or unexported fields
}

func (*ExportStaticSiteButtonProxy) GetButtonsStage

func (e *ExportStaticSiteButtonProxy) GetButtonsStage() *button.Stage

GetButtonsStage implements models.Target.

func (*ExportStaticSiteButtonProxy) OnAfterUpdateButton

func (e *ExportStaticSiteButtonProxy) OnAfterUpdateButton()

OnAfterUpdateButton implements models.Target.

type Exporter

type Exporter interface {
	ExportReqif(stager *Stager)
	ExportRenderingConf(renderingConf *RenderingConfiguration, stager *Stager)
}

type FileToUploadProxy

type FileToUploadProxy struct {
	// contains filtered or unexported fields
}

func (*FileToUploadProxy) OnFileUpload

func (fileToUploadProxy *FileToUploadProxy) OnFileUpload(uploadedFile *load.FileToUpload) error

type GONG__ExpressionType

type GONG__ExpressionType string

swagger:ignore

const (
	GONG__STRUCT_INSTANCE      GONG__ExpressionType = "STRUCT_INSTANCE"
	GONG__FIELD_OR_CONST_VALUE GONG__ExpressionType = "FIELD_OR_CONST_VALUE"
	GONG__FIELD_VALUE          GONG__ExpressionType = "FIELD_VALUE"
	GONG__ENUM_CAST_INT        GONG__ExpressionType = "ENUM_CAST_INT"
	GONG__ENUM_CAST_STRING     GONG__ExpressionType = "ENUM_CAST_STRING"
	GONG__IDENTIFIER_CONST     GONG__ExpressionType = "IDENTIFIER_CONST"
)

type GONG__Identifier

type GONG__Identifier struct {
	Ident string
	Type  GONG__ExpressionType
}

type GenerateModelButtonProxy

type GenerateModelButtonProxy struct {
	// contains filtered or unexported fields
}

func (*GenerateModelButtonProxy) GetButtonsStage

func (e *GenerateModelButtonProxy) GetButtonsStage() *button.Stage

GetButtonsStage implements models.Target.

func (*GenerateModelButtonProxy) OnAfterUpdateButton

func (e *GenerateModelButtonProxy) OnAfterUpdateButton()

OnAfterUpdateButton implements models.Target.

type GongFieldValue

type GongFieldValue struct {
	GongFieldValueType
	// contains filtered or unexported fields
}

func GetFieldStringValue

func GetFieldStringValue(instance any, fieldName string) (res GongFieldValue)

func GetFieldStringValueFromPointer

func GetFieldStringValueFromPointer(instance any, fieldName string) (res GongFieldValue)

func (*GongFieldValue) GetValueBool

func (gongValueField *GongFieldValue) GetValueBool() bool

func (*GongFieldValue) GetValueFloat

func (gongValueField *GongFieldValue) GetValueFloat() float64

func (*GongFieldValue) GetValueInt

func (gongValueField *GongFieldValue) GetValueInt() int

func (*GongFieldValue) GetValueString

func (gongValueField *GongFieldValue) GetValueString() string

type GongFieldValueType

type GongFieldValueType string
const (
	GongFieldValueTypeInt    GongFieldValueType = "GongFieldValueTypeInt"
	GongFieldValueTypeFloat  GongFieldValueType = "GongFieldValueTypeFloat"
	GongFieldValueTypeBool   GongFieldValueType = "GongFieldValueTypeBool"
	GongFieldValueTypeOthers GongFieldValueType = "GongFieldValueTypeOthers"
)

type GongStructInterface

type GongStructInterface interface {
	GetName() (res string)
}

GongStructInterface is the interface met by GongStructs It allows runtime reflexion of instances (without the hassle of the "reflect" package)

type Gong__MouseEvent

type Gong__MouseEvent struct {
	ShiftKey bool
}

type Gongstruct

type Gongstruct interface {
}

Gongstruct is the type parameter for generated generic function that allows - access to staged instances - navigation between staged instances by going backward association links between gongstruct - full refactoring of Gongstruct identifiers / fields

type GongstructEnumIntField

type GongstructEnumIntField interface {
	int | NMTOKEN
	Codes() []string
	CodeValues() []int
}

type GongstructEnumStringField

type GongstructEnumStringField interface {
	Codes() []string
	CodeValues() []string
	ToString() string
}

type GongstructMapString

type GongstructMapString interface {
	map[any]any
}

type GongstructSet

type GongstructSet interface {
	map[any]any
}

type GongtructBasicField

type GongtructBasicField interface {
	int | float64 | bool | string | time.Time | time.Duration
}

type ID

type ID string

func (ID) CodeValues

func (id ID) CodeValues() (res []string)

func (ID) Codes

func (id ID) Codes() (res []string)

func (*ID) FromCodeString

func (id *ID) FromCodeString(input string) (err error)

func (*ID) FromString

func (id *ID) FromString(input string) (err error)

func (*ID) ToCodeString

func (id *ID) ToCodeString() (res string)

func (ID) ToString

func (id ID) ToString() (res string)

Utility function for ID if enum values are string, it is stored with the value if enum values are int, they are stored with the code of the value

type IDREF

type IDREF string

func (IDREF) CodeValues

func (idref IDREF) CodeValues() (res []string)

func (IDREF) Codes

func (idref IDREF) Codes() (res []string)

func (*IDREF) FromCodeString

func (idref *IDREF) FromCodeString(input string) (err error)

func (*IDREF) FromString

func (idref *IDREF) FromString(input string) (err error)

func (*IDREF) ToCodeString

func (idref *IDREF) ToCodeString() (res string)

func (IDREF) ToString

func (idref IDREF) ToString() (res string)

Utility function for IDREF if enum values are string, it is stored with the value if enum values are int, they are stored with the code of the value

type Identifiable

type Identifiable interface {
	PointerToGongstruct
	GetIdentifier() string
}

Identifiable is a constraint for types that can provide a string identifier. This is for type that are referenced by others for instance

DATATYPE_DEFINITION... ATTRIBUTE_DEFINITION...

type Kill

type Kill struct {
	Name string
}

Kill is a gong struct that is used to kill the application by a remote call with curl

```bash

curl --request POST \
  --url http://localhost:8080/api/github.com/fullstack-lang/gongreqif/go/v1/kills?Name="reqif" \
  --header 'content-type: application/json' \
  --data '{"Name": "Foo"}'

```

func CopyBranchKill

func CopyBranchKill(mapOrigCopy map[any]any, killFrom *Kill) (killTo *Kill)

func (*Kill) Checkout

func (kill *Kill) Checkout(stage *Stage) *Kill

Checkout kill to the back repo (if it is already staged)

func (*Kill) Commit

func (kill *Kill) Commit(stage *Stage) *Kill

commit kill to the back repo (if it is already staged)

func (*Kill) CommitVoid

func (kill *Kill) CommitVoid(stage *Stage)

func (*Kill) CopyBasicFields

func (from *Kill) CopyBasicFields(to *Kill)

func (*Kill) GetName

func (kill *Kill) GetName() (res string)

for satisfaction of GongStruct interface

func (*Kill) Stage

func (kill *Kill) Stage(stage *Stage) *Kill

Stage puts kill to the model stage

func (*Kill) Unstage

func (kill *Kill) Unstage(stage *Stage) *Kill

Unstage removes kill off the model stage

func (*Kill) UnstageVoid

func (kill *Kill) UnstageVoid(stage *Stage)

UnstageVoid removes kill off the model stage

type Kill_WOP

type Kill_WOP struct {
	Name string
}

type Language

type Language string

func (Language) CodeValues

func (language Language) CodeValues() (res []string)

func (Language) Codes

func (language Language) Codes() (res []string)

func (*Language) FromCodeString

func (language *Language) FromCodeString(input string) (err error)

func (*Language) FromString

func (language *Language) FromString(input string) (err error)

func (*Language) ToCodeString

func (language *Language) ToCodeString() (res string)

func (Language) ToString

func (language Language) ToString() (res string)

Utility function for Language if enum values are string, it is stored with the value if enum values are int, they are stored with the code of the value

type Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry

type Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry(mapOrigCopy map[any]any, map_attribute_definition_boolean_showinsubjectentryFrom *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) (map_attribute_definition_boolean_showinsubjectentryTo *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry)

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) Checkout

func (map_attribute_definition_boolean_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry

Checkout map_attribute_definition_boolean_showinsubjectentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) Commit

func (map_attribute_definition_boolean_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry

commit map_attribute_definition_boolean_showinsubjectentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) CommitVoid

func (map_attribute_definition_boolean_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) GetName

func (map_attribute_definition_boolean_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) Stage

func (map_attribute_definition_boolean_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry

Stage puts map_attribute_definition_boolean_showinsubjectentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) Unstage

func (map_attribute_definition_boolean_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry

Unstage removes map_attribute_definition_boolean_showinsubjectentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) UnstageVoid

func (map_attribute_definition_boolean_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_boolean_showinsubjectentry off the model stage

type Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry_WOP

type Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry

type Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry(mapOrigCopy map[any]any, map_attribute_definition_boolean_showintableentryFrom *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) (map_attribute_definition_boolean_showintableentryTo *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry)

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) Checkout

func (map_attribute_definition_boolean_showintableentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry

Checkout map_attribute_definition_boolean_showintableentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) Commit

func (map_attribute_definition_boolean_showintableentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry

commit map_attribute_definition_boolean_showintableentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) CommitVoid

func (map_attribute_definition_boolean_showintableentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) GetName

func (map_attribute_definition_boolean_showintableentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) Stage

func (map_attribute_definition_boolean_showintableentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry

Stage puts map_attribute_definition_boolean_showintableentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) Unstage

func (map_attribute_definition_boolean_showintableentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry

Unstage removes map_attribute_definition_boolean_showintableentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) UnstageVoid

func (map_attribute_definition_boolean_showintableentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_boolean_showintableentry off the model stage

type Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry_WOP

type Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry

type Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry(mapOrigCopy map[any]any, map_attribute_definition_boolean_showintitleentryFrom *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) (map_attribute_definition_boolean_showintitleentryTo *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry)

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) Checkout

func (map_attribute_definition_boolean_showintitleentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry

Checkout map_attribute_definition_boolean_showintitleentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) Commit

func (map_attribute_definition_boolean_showintitleentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry

commit map_attribute_definition_boolean_showintitleentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) CommitVoid

func (map_attribute_definition_boolean_showintitleentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) GetName

func (map_attribute_definition_boolean_showintitleentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) Stage

func (map_attribute_definition_boolean_showintitleentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry

Stage puts map_attribute_definition_boolean_showintitleentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) Unstage

func (map_attribute_definition_boolean_showintitleentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry

Unstage removes map_attribute_definition_boolean_showintitleentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) UnstageVoid

func (map_attribute_definition_boolean_showintitleentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_boolean_showintitleentry off the model stage

type Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry_WOP

type Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry

type Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry(mapOrigCopy map[any]any, map_attribute_definition_date_showinsubjectentryFrom *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) (map_attribute_definition_date_showinsubjectentryTo *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry)

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) Checkout

func (map_attribute_definition_date_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry

Checkout map_attribute_definition_date_showinsubjectentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) Commit

func (map_attribute_definition_date_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry

commit map_attribute_definition_date_showinsubjectentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) CommitVoid

func (map_attribute_definition_date_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) GetName

func (map_attribute_definition_date_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) Stage

func (map_attribute_definition_date_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry

Stage puts map_attribute_definition_date_showinsubjectentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) Unstage

func (map_attribute_definition_date_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry

Unstage removes map_attribute_definition_date_showinsubjectentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) UnstageVoid

func (map_attribute_definition_date_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_date_showinsubjectentry off the model stage

type Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry_WOP

type Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry

type Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry(mapOrigCopy map[any]any, map_attribute_definition_date_showintableentryFrom *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) (map_attribute_definition_date_showintableentryTo *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry)

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) Checkout

func (map_attribute_definition_date_showintableentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry

Checkout map_attribute_definition_date_showintableentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) Commit

func (map_attribute_definition_date_showintableentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry

commit map_attribute_definition_date_showintableentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) CommitVoid

func (map_attribute_definition_date_showintableentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) GetName

func (map_attribute_definition_date_showintableentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) Stage

func (map_attribute_definition_date_showintableentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry

Stage puts map_attribute_definition_date_showintableentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) Unstage

func (map_attribute_definition_date_showintableentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry

Unstage removes map_attribute_definition_date_showintableentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) UnstageVoid

func (map_attribute_definition_date_showintableentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_date_showintableentry off the model stage

type Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry_WOP

type Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry

type Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry(mapOrigCopy map[any]any, map_attribute_definition_date_showintitleentryFrom *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) (map_attribute_definition_date_showintitleentryTo *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry)

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) Checkout

func (map_attribute_definition_date_showintitleentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry

Checkout map_attribute_definition_date_showintitleentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) Commit

func (map_attribute_definition_date_showintitleentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry

commit map_attribute_definition_date_showintitleentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) CommitVoid

func (map_attribute_definition_date_showintitleentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) GetName

func (map_attribute_definition_date_showintitleentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) Stage

func (map_attribute_definition_date_showintitleentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry

Stage puts map_attribute_definition_date_showintitleentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) Unstage

func (map_attribute_definition_date_showintitleentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry

Unstage removes map_attribute_definition_date_showintitleentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) UnstageVoid

func (map_attribute_definition_date_showintitleentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_date_showintitleentry off the model stage

type Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry_WOP

type Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry

type Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry(mapOrigCopy map[any]any, map_attribute_definition_enumeration_showinsubjectentryFrom *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) (map_attribute_definition_enumeration_showinsubjectentryTo *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry)

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) Checkout

func (map_attribute_definition_enumeration_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry

Checkout map_attribute_definition_enumeration_showinsubjectentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) Commit

func (map_attribute_definition_enumeration_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry

commit map_attribute_definition_enumeration_showinsubjectentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) CommitVoid

func (map_attribute_definition_enumeration_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) GetName

func (map_attribute_definition_enumeration_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) Stage

func (map_attribute_definition_enumeration_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry

Stage puts map_attribute_definition_enumeration_showinsubjectentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) Unstage

func (map_attribute_definition_enumeration_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry

Unstage removes map_attribute_definition_enumeration_showinsubjectentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) UnstageVoid

func (map_attribute_definition_enumeration_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_enumeration_showinsubjectentry off the model stage

type Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry_WOP

type Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry

type Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry(mapOrigCopy map[any]any, map_attribute_definition_enumeration_showintableentryFrom *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) (map_attribute_definition_enumeration_showintableentryTo *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry)

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) Checkout

func (map_attribute_definition_enumeration_showintableentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry

Checkout map_attribute_definition_enumeration_showintableentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) Commit

func (map_attribute_definition_enumeration_showintableentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry

commit map_attribute_definition_enumeration_showintableentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) CommitVoid

func (map_attribute_definition_enumeration_showintableentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) GetName

func (map_attribute_definition_enumeration_showintableentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) Stage

func (map_attribute_definition_enumeration_showintableentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry

Stage puts map_attribute_definition_enumeration_showintableentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) Unstage

func (map_attribute_definition_enumeration_showintableentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry

Unstage removes map_attribute_definition_enumeration_showintableentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) UnstageVoid

func (map_attribute_definition_enumeration_showintableentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_enumeration_showintableentry off the model stage

type Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry_WOP

type Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry

type Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry(mapOrigCopy map[any]any, map_attribute_definition_enumeration_showintitleentryFrom *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) (map_attribute_definition_enumeration_showintitleentryTo *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry)

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) Checkout

func (map_attribute_definition_enumeration_showintitleentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry

Checkout map_attribute_definition_enumeration_showintitleentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) Commit

func (map_attribute_definition_enumeration_showintitleentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry

commit map_attribute_definition_enumeration_showintitleentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) CommitVoid

func (map_attribute_definition_enumeration_showintitleentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) GetName

func (map_attribute_definition_enumeration_showintitleentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) Stage

func (map_attribute_definition_enumeration_showintitleentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry

Stage puts map_attribute_definition_enumeration_showintitleentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) Unstage

func (map_attribute_definition_enumeration_showintitleentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry

Unstage removes map_attribute_definition_enumeration_showintitleentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) UnstageVoid

func (map_attribute_definition_enumeration_showintitleentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_enumeration_showintitleentry off the model stage

type Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry_WOP

type Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry

type Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry(mapOrigCopy map[any]any, map_attribute_definition_integer_showinsubjectentryFrom *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) (map_attribute_definition_integer_showinsubjectentryTo *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry)

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) Checkout

func (map_attribute_definition_integer_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry

Checkout map_attribute_definition_integer_showinsubjectentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) Commit

func (map_attribute_definition_integer_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry

commit map_attribute_definition_integer_showinsubjectentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) CommitVoid

func (map_attribute_definition_integer_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) GetName

func (map_attribute_definition_integer_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) Stage

func (map_attribute_definition_integer_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry

Stage puts map_attribute_definition_integer_showinsubjectentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) Unstage

func (map_attribute_definition_integer_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry

Unstage removes map_attribute_definition_integer_showinsubjectentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) UnstageVoid

func (map_attribute_definition_integer_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_integer_showinsubjectentry off the model stage

type Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry_WOP

type Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry

type Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry(mapOrigCopy map[any]any, map_attribute_definition_integer_showintableentryFrom *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) (map_attribute_definition_integer_showintableentryTo *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry)

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) Checkout

func (map_attribute_definition_integer_showintableentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry

Checkout map_attribute_definition_integer_showintableentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) Commit

func (map_attribute_definition_integer_showintableentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry

commit map_attribute_definition_integer_showintableentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) CommitVoid

func (map_attribute_definition_integer_showintableentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) GetName

func (map_attribute_definition_integer_showintableentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) Stage

func (map_attribute_definition_integer_showintableentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry

Stage puts map_attribute_definition_integer_showintableentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) Unstage

func (map_attribute_definition_integer_showintableentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry

Unstage removes map_attribute_definition_integer_showintableentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) UnstageVoid

func (map_attribute_definition_integer_showintableentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_integer_showintableentry off the model stage

type Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry_WOP

type Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry

type Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry(mapOrigCopy map[any]any, map_attribute_definition_integer_showintitleentryFrom *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) (map_attribute_definition_integer_showintitleentryTo *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry)

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) Checkout

func (map_attribute_definition_integer_showintitleentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry

Checkout map_attribute_definition_integer_showintitleentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) Commit

func (map_attribute_definition_integer_showintitleentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry

commit map_attribute_definition_integer_showintitleentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) CommitVoid

func (map_attribute_definition_integer_showintitleentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) GetName

func (map_attribute_definition_integer_showintitleentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) Stage

func (map_attribute_definition_integer_showintitleentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry

Stage puts map_attribute_definition_integer_showintitleentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) Unstage

func (map_attribute_definition_integer_showintitleentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry

Unstage removes map_attribute_definition_integer_showintitleentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) UnstageVoid

func (map_attribute_definition_integer_showintitleentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_integer_showintitleentry off the model stage

type Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry_WOP

type Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry

type Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry(mapOrigCopy map[any]any, map_attribute_definition_real_showinsubjectentryFrom *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) (map_attribute_definition_real_showinsubjectentryTo *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry)

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) Checkout

func (map_attribute_definition_real_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry

Checkout map_attribute_definition_real_showinsubjectentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) Commit

func (map_attribute_definition_real_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry

commit map_attribute_definition_real_showinsubjectentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) CommitVoid

func (map_attribute_definition_real_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) GetName

func (map_attribute_definition_real_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) Stage

func (map_attribute_definition_real_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry

Stage puts map_attribute_definition_real_showinsubjectentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) Unstage

func (map_attribute_definition_real_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry

Unstage removes map_attribute_definition_real_showinsubjectentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) UnstageVoid

func (map_attribute_definition_real_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_real_showinsubjectentry off the model stage

type Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry_WOP

type Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry

type Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry(mapOrigCopy map[any]any, map_attribute_definition_real_showintableentryFrom *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) (map_attribute_definition_real_showintableentryTo *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry)

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) Checkout

func (map_attribute_definition_real_showintableentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry

Checkout map_attribute_definition_real_showintableentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) Commit

func (map_attribute_definition_real_showintableentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry

commit map_attribute_definition_real_showintableentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) CommitVoid

func (map_attribute_definition_real_showintableentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) GetName

func (map_attribute_definition_real_showintableentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) Stage

func (map_attribute_definition_real_showintableentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry

Stage puts map_attribute_definition_real_showintableentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) Unstage

func (map_attribute_definition_real_showintableentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry

Unstage removes map_attribute_definition_real_showintableentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) UnstageVoid

func (map_attribute_definition_real_showintableentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_real_showintableentry off the model stage

type Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry_WOP

type Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry

type Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry(mapOrigCopy map[any]any, map_attribute_definition_real_showintitleentryFrom *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) (map_attribute_definition_real_showintitleentryTo *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry)

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) Checkout

func (map_attribute_definition_real_showintitleentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry

Checkout map_attribute_definition_real_showintitleentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) Commit

func (map_attribute_definition_real_showintitleentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry

commit map_attribute_definition_real_showintitleentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) CommitVoid

func (map_attribute_definition_real_showintitleentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) GetName

func (map_attribute_definition_real_showintitleentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) Stage

func (map_attribute_definition_real_showintitleentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry

Stage puts map_attribute_definition_real_showintitleentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) Unstage

func (map_attribute_definition_real_showintitleentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry

Unstage removes map_attribute_definition_real_showintitleentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) UnstageVoid

func (map_attribute_definition_real_showintitleentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_real_showintitleentry off the model stage

type Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry_WOP

type Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry

type Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry(mapOrigCopy map[any]any, map_attribute_definition_string_showinsubjectentryFrom *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) (map_attribute_definition_string_showinsubjectentryTo *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry)

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) Checkout

func (map_attribute_definition_string_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry

Checkout map_attribute_definition_string_showinsubjectentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) Commit

func (map_attribute_definition_string_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry

commit map_attribute_definition_string_showinsubjectentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) CommitVoid

func (map_attribute_definition_string_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) GetName

func (map_attribute_definition_string_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) Stage

func (map_attribute_definition_string_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry

Stage puts map_attribute_definition_string_showinsubjectentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) Unstage

func (map_attribute_definition_string_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry

Unstage removes map_attribute_definition_string_showinsubjectentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) UnstageVoid

func (map_attribute_definition_string_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_string_showinsubjectentry off the model stage

type Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry_WOP

type Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry

type Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry(mapOrigCopy map[any]any, map_attribute_definition_string_showintableentryFrom *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) (map_attribute_definition_string_showintableentryTo *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry)

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) Checkout

func (map_attribute_definition_string_showintableentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry

Checkout map_attribute_definition_string_showintableentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) Commit

func (map_attribute_definition_string_showintableentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry

commit map_attribute_definition_string_showintableentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) CommitVoid

func (map_attribute_definition_string_showintableentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) GetName

func (map_attribute_definition_string_showintableentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) Stage

func (map_attribute_definition_string_showintableentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry

Stage puts map_attribute_definition_string_showintableentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) Unstage

func (map_attribute_definition_string_showintableentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry

Unstage removes map_attribute_definition_string_showintableentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) UnstageVoid

func (map_attribute_definition_string_showintableentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_string_showintableentry off the model stage

type Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry_WOP

type Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry

type Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry(mapOrigCopy map[any]any, map_attribute_definition_string_showintitleentryFrom *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) (map_attribute_definition_string_showintitleentryTo *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry)

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) Checkout

func (map_attribute_definition_string_showintitleentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry

Checkout map_attribute_definition_string_showintitleentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) Commit

func (map_attribute_definition_string_showintitleentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry

commit map_attribute_definition_string_showintitleentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) CommitVoid

func (map_attribute_definition_string_showintitleentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) GetName

func (map_attribute_definition_string_showintitleentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) Stage

func (map_attribute_definition_string_showintitleentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry

Stage puts map_attribute_definition_string_showintitleentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) Unstage

func (map_attribute_definition_string_showintitleentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry

Unstage removes map_attribute_definition_string_showintitleentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) UnstageVoid

func (map_attribute_definition_string_showintitleentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_string_showintitleentry off the model stage

type Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry_WOP

type Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry

type Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry(mapOrigCopy map[any]any, map_attribute_definition_xhtml_showinsubjectentryFrom *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) (map_attribute_definition_xhtml_showinsubjectentryTo *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry)

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) Checkout

func (map_attribute_definition_xhtml_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry

Checkout map_attribute_definition_xhtml_showinsubjectentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) Commit

func (map_attribute_definition_xhtml_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry

commit map_attribute_definition_xhtml_showinsubjectentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) CommitVoid

func (map_attribute_definition_xhtml_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) GetName

func (map_attribute_definition_xhtml_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) Stage

func (map_attribute_definition_xhtml_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry

Stage puts map_attribute_definition_xhtml_showinsubjectentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) Unstage

func (map_attribute_definition_xhtml_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry

Unstage removes map_attribute_definition_xhtml_showinsubjectentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) UnstageVoid

func (map_attribute_definition_xhtml_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_xhtml_showinsubjectentry off the model stage

type Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry_WOP

type Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry

type Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry(mapOrigCopy map[any]any, map_attribute_definition_xhtml_showintableentryFrom *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) (map_attribute_definition_xhtml_showintableentryTo *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry)

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) Checkout

func (map_attribute_definition_xhtml_showintableentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry

Checkout map_attribute_definition_xhtml_showintableentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) Commit

func (map_attribute_definition_xhtml_showintableentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry

commit map_attribute_definition_xhtml_showintableentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) CommitVoid

func (map_attribute_definition_xhtml_showintableentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) GetName

func (map_attribute_definition_xhtml_showintableentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) Stage

func (map_attribute_definition_xhtml_showintableentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry

Stage puts map_attribute_definition_xhtml_showintableentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) Unstage

func (map_attribute_definition_xhtml_showintableentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry

Unstage removes map_attribute_definition_xhtml_showintableentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) UnstageVoid

func (map_attribute_definition_xhtml_showintableentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_xhtml_showintableentry off the model stage

type Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry_WOP

type Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry_WOP struct {
	Name string

	Value bool
}

type Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry

type Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry

func CopyBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry(mapOrigCopy map[any]any, map_attribute_definition_xhtml_showintitleentryFrom *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) (map_attribute_definition_xhtml_showintitleentryTo *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry)

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) Checkout

func (map_attribute_definition_xhtml_showintitleentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) Checkout(stage *Stage) *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry

Checkout map_attribute_definition_xhtml_showintitleentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) Commit

func (map_attribute_definition_xhtml_showintitleentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) Commit(stage *Stage) *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry

commit map_attribute_definition_xhtml_showintitleentry to the back repo (if it is already staged)

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) CommitVoid

func (map_attribute_definition_xhtml_showintitleentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) CommitVoid(stage *Stage)

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) CopyBasicFields

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) GetName

func (map_attribute_definition_xhtml_showintitleentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) Stage

func (map_attribute_definition_xhtml_showintitleentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) Stage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry

Stage puts map_attribute_definition_xhtml_showintitleentry to the model stage

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) Unstage

func (map_attribute_definition_xhtml_showintitleentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) Unstage(stage *Stage) *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry

Unstage removes map_attribute_definition_xhtml_showintitleentry off the model stage

func (*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) UnstageVoid

func (map_attribute_definition_xhtml_showintitleentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_attribute_definition_xhtml_showintitleentry off the model stage

type Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry_WOP

type Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry_WOP struct {
	Name string

	Value bool
}

type Map_SPECIFICATION_Nodes_expandedEntry

type Map_SPECIFICATION_Nodes_expandedEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_SPECIFICATION_Nodes_expandedEntry

func CopyBranchMap_SPECIFICATION_Nodes_expandedEntry(mapOrigCopy map[any]any, map_specification_nodes_expandedentryFrom *Map_SPECIFICATION_Nodes_expandedEntry) (map_specification_nodes_expandedentryTo *Map_SPECIFICATION_Nodes_expandedEntry)

func (*Map_SPECIFICATION_Nodes_expandedEntry) Checkout

func (map_specification_nodes_expandedentry *Map_SPECIFICATION_Nodes_expandedEntry) Checkout(stage *Stage) *Map_SPECIFICATION_Nodes_expandedEntry

Checkout map_specification_nodes_expandedentry to the back repo (if it is already staged)

func (*Map_SPECIFICATION_Nodes_expandedEntry) Commit

func (map_specification_nodes_expandedentry *Map_SPECIFICATION_Nodes_expandedEntry) Commit(stage *Stage) *Map_SPECIFICATION_Nodes_expandedEntry

commit map_specification_nodes_expandedentry to the back repo (if it is already staged)

func (*Map_SPECIFICATION_Nodes_expandedEntry) CommitVoid

func (map_specification_nodes_expandedentry *Map_SPECIFICATION_Nodes_expandedEntry) CommitVoid(stage *Stage)

func (*Map_SPECIFICATION_Nodes_expandedEntry) CopyBasicFields

func (*Map_SPECIFICATION_Nodes_expandedEntry) GetName

func (map_specification_nodes_expandedentry *Map_SPECIFICATION_Nodes_expandedEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_SPECIFICATION_Nodes_expandedEntry) Stage

func (map_specification_nodes_expandedentry *Map_SPECIFICATION_Nodes_expandedEntry) Stage(stage *Stage) *Map_SPECIFICATION_Nodes_expandedEntry

Stage puts map_specification_nodes_expandedentry to the model stage

func (*Map_SPECIFICATION_Nodes_expandedEntry) Unstage

func (map_specification_nodes_expandedentry *Map_SPECIFICATION_Nodes_expandedEntry) Unstage(stage *Stage) *Map_SPECIFICATION_Nodes_expandedEntry

Unstage removes map_specification_nodes_expandedentry off the model stage

func (*Map_SPECIFICATION_Nodes_expandedEntry) UnstageVoid

func (map_specification_nodes_expandedentry *Map_SPECIFICATION_Nodes_expandedEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_specification_nodes_expandedentry off the model stage

type Map_SPECIFICATION_Nodes_expandedEntry_WOP

type Map_SPECIFICATION_Nodes_expandedEntry_WOP struct {
	Name string

	Value bool
}

type Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry

type Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_SPEC_OBJECT_TYPE_isNodeExpandedEntry

func CopyBranchMap_SPEC_OBJECT_TYPE_isNodeExpandedEntry(mapOrigCopy map[any]any, map_spec_object_type_isnodeexpandedentryFrom *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) (map_spec_object_type_isnodeexpandedentryTo *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry)

func (*Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) Checkout

func (map_spec_object_type_isnodeexpandedentry *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) Checkout(stage *Stage) *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry

Checkout map_spec_object_type_isnodeexpandedentry to the back repo (if it is already staged)

func (*Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) Commit

func (map_spec_object_type_isnodeexpandedentry *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) Commit(stage *Stage) *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry

commit map_spec_object_type_isnodeexpandedentry to the back repo (if it is already staged)

func (*Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) CommitVoid

func (map_spec_object_type_isnodeexpandedentry *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) CommitVoid(stage *Stage)

func (*Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) CopyBasicFields

func (*Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) GetName

func (map_spec_object_type_isnodeexpandedentry *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) Stage

func (map_spec_object_type_isnodeexpandedentry *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) Stage(stage *Stage) *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry

Stage puts map_spec_object_type_isnodeexpandedentry to the model stage

func (*Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) Unstage

func (map_spec_object_type_isnodeexpandedentry *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) Unstage(stage *Stage) *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry

Unstage removes map_spec_object_type_isnodeexpandedentry off the model stage

func (*Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) UnstageVoid

func (map_spec_object_type_isnodeexpandedentry *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_spec_object_type_isnodeexpandedentry off the model stage

type Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry_WOP

type Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry_WOP struct {
	Name string

	Value bool
}

type Map_SPEC_OBJECT_TYPE_showIdentifierEntry

type Map_SPEC_OBJECT_TYPE_showIdentifierEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_SPEC_OBJECT_TYPE_showIdentifierEntry

func CopyBranchMap_SPEC_OBJECT_TYPE_showIdentifierEntry(mapOrigCopy map[any]any, map_spec_object_type_showidentifierentryFrom *Map_SPEC_OBJECT_TYPE_showIdentifierEntry) (map_spec_object_type_showidentifierentryTo *Map_SPEC_OBJECT_TYPE_showIdentifierEntry)

func (*Map_SPEC_OBJECT_TYPE_showIdentifierEntry) Checkout

func (map_spec_object_type_showidentifierentry *Map_SPEC_OBJECT_TYPE_showIdentifierEntry) Checkout(stage *Stage) *Map_SPEC_OBJECT_TYPE_showIdentifierEntry

Checkout map_spec_object_type_showidentifierentry to the back repo (if it is already staged)

func (*Map_SPEC_OBJECT_TYPE_showIdentifierEntry) Commit

func (map_spec_object_type_showidentifierentry *Map_SPEC_OBJECT_TYPE_showIdentifierEntry) Commit(stage *Stage) *Map_SPEC_OBJECT_TYPE_showIdentifierEntry

commit map_spec_object_type_showidentifierentry to the back repo (if it is already staged)

func (*Map_SPEC_OBJECT_TYPE_showIdentifierEntry) CommitVoid

func (map_spec_object_type_showidentifierentry *Map_SPEC_OBJECT_TYPE_showIdentifierEntry) CommitVoid(stage *Stage)

func (*Map_SPEC_OBJECT_TYPE_showIdentifierEntry) CopyBasicFields

func (*Map_SPEC_OBJECT_TYPE_showIdentifierEntry) GetName

func (map_spec_object_type_showidentifierentry *Map_SPEC_OBJECT_TYPE_showIdentifierEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_SPEC_OBJECT_TYPE_showIdentifierEntry) Stage

func (map_spec_object_type_showidentifierentry *Map_SPEC_OBJECT_TYPE_showIdentifierEntry) Stage(stage *Stage) *Map_SPEC_OBJECT_TYPE_showIdentifierEntry

Stage puts map_spec_object_type_showidentifierentry to the model stage

func (*Map_SPEC_OBJECT_TYPE_showIdentifierEntry) Unstage

func (map_spec_object_type_showidentifierentry *Map_SPEC_OBJECT_TYPE_showIdentifierEntry) Unstage(stage *Stage) *Map_SPEC_OBJECT_TYPE_showIdentifierEntry

Unstage removes map_spec_object_type_showidentifierentry off the model stage

func (*Map_SPEC_OBJECT_TYPE_showIdentifierEntry) UnstageVoid

func (map_spec_object_type_showidentifierentry *Map_SPEC_OBJECT_TYPE_showIdentifierEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_spec_object_type_showidentifierentry off the model stage

type Map_SPEC_OBJECT_TYPE_showIdentifierEntry_WOP

type Map_SPEC_OBJECT_TYPE_showIdentifierEntry_WOP struct {
	Name string

	Value bool
}

type Map_SPEC_OBJECT_TYPE_showNameEntry

type Map_SPEC_OBJECT_TYPE_showNameEntry struct {
	Name  string
	Value bool
}

func CopyBranchMap_SPEC_OBJECT_TYPE_showNameEntry

func CopyBranchMap_SPEC_OBJECT_TYPE_showNameEntry(mapOrigCopy map[any]any, map_spec_object_type_shownameentryFrom *Map_SPEC_OBJECT_TYPE_showNameEntry) (map_spec_object_type_shownameentryTo *Map_SPEC_OBJECT_TYPE_showNameEntry)

func (*Map_SPEC_OBJECT_TYPE_showNameEntry) Checkout

func (map_spec_object_type_shownameentry *Map_SPEC_OBJECT_TYPE_showNameEntry) Checkout(stage *Stage) *Map_SPEC_OBJECT_TYPE_showNameEntry

Checkout map_spec_object_type_shownameentry to the back repo (if it is already staged)

func (*Map_SPEC_OBJECT_TYPE_showNameEntry) Commit

func (map_spec_object_type_shownameentry *Map_SPEC_OBJECT_TYPE_showNameEntry) Commit(stage *Stage) *Map_SPEC_OBJECT_TYPE_showNameEntry

commit map_spec_object_type_shownameentry to the back repo (if it is already staged)

func (*Map_SPEC_OBJECT_TYPE_showNameEntry) CommitVoid

func (map_spec_object_type_shownameentry *Map_SPEC_OBJECT_TYPE_showNameEntry) CommitVoid(stage *Stage)

func (*Map_SPEC_OBJECT_TYPE_showNameEntry) CopyBasicFields

func (*Map_SPEC_OBJECT_TYPE_showNameEntry) GetName

func (map_spec_object_type_shownameentry *Map_SPEC_OBJECT_TYPE_showNameEntry) GetName() (res string)

for satisfaction of GongStruct interface

func (*Map_SPEC_OBJECT_TYPE_showNameEntry) Stage

func (map_spec_object_type_shownameentry *Map_SPEC_OBJECT_TYPE_showNameEntry) Stage(stage *Stage) *Map_SPEC_OBJECT_TYPE_showNameEntry

Stage puts map_spec_object_type_shownameentry to the model stage

func (*Map_SPEC_OBJECT_TYPE_showNameEntry) Unstage

func (map_spec_object_type_shownameentry *Map_SPEC_OBJECT_TYPE_showNameEntry) Unstage(stage *Stage) *Map_SPEC_OBJECT_TYPE_showNameEntry

Unstage removes map_spec_object_type_shownameentry off the model stage

func (*Map_SPEC_OBJECT_TYPE_showNameEntry) UnstageVoid

func (map_spec_object_type_shownameentry *Map_SPEC_OBJECT_TYPE_showNameEntry) UnstageVoid(stage *Stage)

UnstageVoid removes map_spec_object_type_shownameentry off the model stage

type Map_SPEC_OBJECT_TYPE_showNameEntry_WOP

type Map_SPEC_OBJECT_TYPE_showNameEntry_WOP struct {
	Name string

	Value bool
}

type ModelGeneratorInterface

type ModelGeneratorInterface interface {
	GenerateModels(stager *Stager)
}

type NMTOKEN

type NMTOKEN int

func (NMTOKEN) CodeValues

func (nmtoken NMTOKEN) CodeValues() (res []int)

func (NMTOKEN) Codes

func (nmtoken NMTOKEN) Codes() (res []string)

func (*NMTOKEN) FromCodeString

func (nmtoken *NMTOKEN) FromCodeString(input string) (err error)

func (*NMTOKEN) FromInt

func (nmtoken *NMTOKEN) FromInt(input int) (err error)

func (*NMTOKEN) ToCodeString

func (nmtoken *NMTOKEN) ToCodeString() (res string)

func (NMTOKEN) ToInt

func (nmtoken NMTOKEN) ToInt() (res int)

Utility function for NMTOKEN if enum values are string, it is stored with the value if enum values are int, they are stored with the code of the value

type NamedStruct

type NamedStruct struct {
	// contains filtered or unexported fields
}

func (*NamedStruct) GetName

func (namedStruct *NamedStruct) GetName() string

type NormalizedString

type NormalizedString string

func (NormalizedString) CodeValues

func (normalizedstring NormalizedString) CodeValues() (res []string)

func (NormalizedString) Codes

func (normalizedstring NormalizedString) Codes() (res []string)

func (*NormalizedString) FromCodeString

func (normalizedstring *NormalizedString) FromCodeString(input string) (err error)

func (*NormalizedString) FromString

func (normalizedstring *NormalizedString) FromString(input string) (err error)

func (*NormalizedString) ToCodeString

func (normalizedstring *NormalizedString) ToCodeString() (res string)

func (NormalizedString) ToString

func (normalizedstring NormalizedString) ToString() (res string)

Utility function for NormalizedString if enum values are string, it is stored with the value if enum values are int, they are stored with the code of the value

type ObjectNamerInterface

type ObjectNamerInterface interface {
	SetNamesToElements(stage *Stage, reqif *REQ_IF)
}

type ObjectWithValues

type ObjectWithValues interface {
	GetValues() *A_ATTRIBUTE_VALUE_XHTML_1
}

for SPEC OBJECTS and SPEC RELATIONS

type OnAfterCreateInterface

type OnAfterCreateInterface[Type Gongstruct] interface {
	OnAfterCreate(stage *Stage,
		instance *Type)
}

OnAfterCreateInterface callback when an instance is updated from the front

type OnAfterDeleteInterface

type OnAfterDeleteInterface[Type Gongstruct] interface {
	OnAfterDelete(stage *Stage,
		staged, front *Type)
}

OnAfterDeleteInterface callback when an instance is updated from the front

type OnAfterKillCreateCallback

type OnAfterKillCreateCallback struct {
}

func (*OnAfterKillCreateCallback) OnAfterCreate

func (o *OnAfterKillCreateCallback) OnAfterCreate(stage *Stage, instance *Kill)

OnAfterCreate implements OnAfterCreateInterface.

type OnAfterReadInterface

type OnAfterReadInterface[Type Gongstruct] interface {
	OnAfterRead(stage *Stage,
		instance *Type)
}

OnAfterReadInterface callback when an instance is updated from the front

type OnAfterUpdateInterface

type OnAfterUpdateInterface[Type Gongstruct] interface {
	OnAfterUpdate(stage *Stage, old, new *Type)
}

OnAfterUpdateInterface callback when an instance is updated from the front

type OnAfterUpdateWithMouseEventInterface

type OnAfterUpdateWithMouseEventInterface[Type Gongstruct] interface {
	OnAfterUpdateWithMouseEvent(stage *Stage, old, new *Type, mouseEvent *Gong__MouseEvent)
}

OnAfterUpdateWithMouseEventInterface callback when an instance is updated from the front

type OnInitCommitInterface

type OnInitCommitInterface interface {
	BeforeCommit(stage *Stage)
}

type PointerToGongstruct

type PointerToGongstruct interface {
	GetName() string
	CommitVoid(*Stage)
	UnstageVoid(stage *Stage)
	comparable
}

Gongstruct is the type parameter for generated generic function that allows - access to staged instances - navigation between staged instances by going backward association links between gongstruct - full refactoring of Gongstruct identifiers / fields

type PointerToGongstructEnumIntField

type PointerToGongstructEnumIntField interface {
	*NMTOKEN
	FromCodeString(input string) (err error)
}

type PointerToGongstructEnumStringField

type PointerToGongstructEnumStringField interface {
	FromCodeString(input string) (err error)
}

type RELATION_GROUP

type RELATION_GROUP struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "SOURCE-SPECIFICATION" of type A_SOURCE-SPECIFICATION.
	SOURCE_SPECIFICATION *A_SOURCE_SPECIFICATION_1 `xml:"SOURCE-SPECIFICATION,omitempty"`

	// generated from anonymous type within outer element "SPEC-RELATIONS" of type A_SPEC-RELATION-REF.
	SPEC_RELATIONS *A_SPEC_RELATION_REF `xml:"SPEC-RELATIONS,omitempty"`

	// generated from anonymous type within outer element "TARGET-SPECIFICATION" of type A_SOURCE-SPECIFICATION.
	TARGET_SPECIFICATION *A_SOURCE_SPECIFICATION_1 `xml:"TARGET-SPECIFICATION,omitempty"`

	// generated from anonymous type within outer element "TYPE" of type A_RELATION-GROUP-TYPE-REF.
	TYPE *A_RELATION_GROUP_TYPE_REF `xml:"TYPE,omitempty"`
}

RELATION_GROUP Named source named complex type "RELATION-GROUP"

func CopyBranchRELATION_GROUP

func CopyBranchRELATION_GROUP(mapOrigCopy map[any]any, relation_groupFrom *RELATION_GROUP) (relation_groupTo *RELATION_GROUP)

func (*RELATION_GROUP) Checkout

func (relation_group *RELATION_GROUP) Checkout(stage *Stage) *RELATION_GROUP

Checkout relation_group to the back repo (if it is already staged)

func (*RELATION_GROUP) Commit

func (relation_group *RELATION_GROUP) Commit(stage *Stage) *RELATION_GROUP

commit relation_group to the back repo (if it is already staged)

func (*RELATION_GROUP) CommitVoid

func (relation_group *RELATION_GROUP) CommitVoid(stage *Stage)

func (*RELATION_GROUP) CopyBasicFields

func (from *RELATION_GROUP) CopyBasicFields(to *RELATION_GROUP)

func (*RELATION_GROUP) GetName

func (relation_group *RELATION_GROUP) GetName() (res string)

for satisfaction of GongStruct interface

func (*RELATION_GROUP) Stage

func (relation_group *RELATION_GROUP) Stage(stage *Stage) *RELATION_GROUP

Stage puts relation_group to the model stage

func (*RELATION_GROUP) Unstage

func (relation_group *RELATION_GROUP) Unstage(stage *Stage) *RELATION_GROUP

Unstage removes relation_group off the model stage

func (*RELATION_GROUP) UnstageVoid

func (relation_group *RELATION_GROUP) UnstageVoid(stage *Stage)

UnstageVoid removes relation_group off the model stage

type RELATION_GROUP_TYPE

type RELATION_GROUP_TYPE struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "SPEC-ATTRIBUTES" of type A_SPEC-ATTRIBUTES.
	SPEC_ATTRIBUTES *A_SPEC_ATTRIBUTES `xml:"SPEC-ATTRIBUTES,omitempty"`
}

RELATION_GROUP_TYPE Named source named complex type "RELATION-GROUP-TYPE"

func CopyBranchRELATION_GROUP_TYPE

func CopyBranchRELATION_GROUP_TYPE(mapOrigCopy map[any]any, relation_group_typeFrom *RELATION_GROUP_TYPE) (relation_group_typeTo *RELATION_GROUP_TYPE)

func (*RELATION_GROUP_TYPE) Checkout

func (relation_group_type *RELATION_GROUP_TYPE) Checkout(stage *Stage) *RELATION_GROUP_TYPE

Checkout relation_group_type to the back repo (if it is already staged)

func (*RELATION_GROUP_TYPE) Commit

func (relation_group_type *RELATION_GROUP_TYPE) Commit(stage *Stage) *RELATION_GROUP_TYPE

commit relation_group_type to the back repo (if it is already staged)

func (*RELATION_GROUP_TYPE) CommitVoid

func (relation_group_type *RELATION_GROUP_TYPE) CommitVoid(stage *Stage)

func (*RELATION_GROUP_TYPE) CopyBasicFields

func (from *RELATION_GROUP_TYPE) CopyBasicFields(to *RELATION_GROUP_TYPE)

func (*RELATION_GROUP_TYPE) GetName

func (relation_group_type *RELATION_GROUP_TYPE) GetName() (res string)

for satisfaction of GongStruct interface

func (*RELATION_GROUP_TYPE) Stage

func (relation_group_type *RELATION_GROUP_TYPE) Stage(stage *Stage) *RELATION_GROUP_TYPE

Stage puts relation_group_type to the model stage

func (*RELATION_GROUP_TYPE) Unstage

func (relation_group_type *RELATION_GROUP_TYPE) Unstage(stage *Stage) *RELATION_GROUP_TYPE

Unstage removes relation_group_type off the model stage

func (*RELATION_GROUP_TYPE) UnstageVoid

func (relation_group_type *RELATION_GROUP_TYPE) UnstageVoid(stage *Stage)

UnstageVoid removes relation_group_type off the model stage

type RELATION_GROUP_TYPE_WOP

type RELATION_GROUP_TYPE_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string
}

type RELATION_GROUP_WOP

type RELATION_GROUP_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string
}

type REQ_IF

type REQ_IF struct {
	Name string `xml:"-"`

	// generated from attribute "http://www.w3.org/XML/1998/namespace lang
	Lang string `xml:"http://www.w3.org/XML/1998/namespace lang,attr,omitempty"`

	// generated from anonymous type within outer element "THE-HEADER" of type A_THE-HEADER.
	THE_HEADER *A_THE_HEADER `xml:"THE-HEADER,omitempty"`

	// generated from anonymous type within outer element "CORE-CONTENT" of type A_CORE-CONTENT.
	CORE_CONTENT *A_CORE_CONTENT `xml:"CORE-CONTENT,omitempty"`

	// generated from anonymous type within outer element "TOOL-EXTENSIONS" of type A_TOOL-EXTENSIONS.
	TOOL_EXTENSIONS *A_TOOL_EXTENSIONS `xml:"TOOL-EXTENSIONS,omitempty"`
}

REQ_IF Named source named complex type "REQ-IF"

func CopyBranchREQ_IF

func CopyBranchREQ_IF(mapOrigCopy map[any]any, req_ifFrom *REQ_IF) (req_ifTo *REQ_IF)

func (*REQ_IF) Checkout

func (req_if *REQ_IF) Checkout(stage *Stage) *REQ_IF

Checkout req_if to the back repo (if it is already staged)

func (*REQ_IF) Commit

func (req_if *REQ_IF) Commit(stage *Stage) *REQ_IF

commit req_if to the back repo (if it is already staged)

func (*REQ_IF) CommitVoid

func (req_if *REQ_IF) CommitVoid(stage *Stage)

func (*REQ_IF) CopyBasicFields

func (from *REQ_IF) CopyBasicFields(to *REQ_IF)

func (*REQ_IF) GetName

func (req_if *REQ_IF) GetName() (res string)

for satisfaction of GongStruct interface

func (*REQ_IF) Stage

func (req_if *REQ_IF) Stage(stage *Stage) *REQ_IF

Stage puts req_if to the model stage

func (*REQ_IF) Unstage

func (req_if *REQ_IF) Unstage(stage *Stage) *REQ_IF

Unstage removes req_if off the model stage

func (*REQ_IF) UnstageVoid

func (req_if *REQ_IF) UnstageVoid(stage *Stage)

UnstageVoid removes req_if off the model stage

type REQ_IF_CONTENT

type REQ_IF_CONTENT struct {
	Name string `xml:"-"`

	// generated from anonymous type within outer element "DATATYPES" of type A_DATATYPES.
	DATATYPES *A_DATATYPES `xml:"DATATYPES,omitempty"`

	// generated from anonymous type within outer element "SPEC-TYPES" of type A_SPEC-TYPES.
	SPEC_TYPES *A_SPEC_TYPES `xml:"SPEC-TYPES,omitempty"`

	// generated from anonymous type within outer element "SPEC-OBJECTS" of type A_SPEC-OBJECTS.
	SPEC_OBJECTS *A_SPEC_OBJECTS `xml:"SPEC-OBJECTS,omitempty"`

	// generated from anonymous type within outer element "SPEC-RELATIONS" of type A_SPEC-RELATIONS.
	SPEC_RELATIONS *A_SPEC_RELATIONS `xml:"SPEC-RELATIONS,omitempty"`

	// generated from anonymous type within outer element "SPECIFICATIONS" of type A_SPECIFICATIONS.
	SPECIFICATIONS *A_SPECIFICATIONS `xml:"SPECIFICATIONS,omitempty"`

	// generated from anonymous type within outer element "SPEC-RELATION-GROUPS" of type A_SPEC-RELATION-GROUPS.
	SPEC_RELATION_GROUPS *A_SPEC_RELATION_GROUPS `xml:"SPEC-RELATION-GROUPS,omitempty"`
}

REQ_IF_CONTENT Named source named complex type "REQ-IF-CONTENT"

func CopyBranchREQ_IF_CONTENT

func CopyBranchREQ_IF_CONTENT(mapOrigCopy map[any]any, req_if_contentFrom *REQ_IF_CONTENT) (req_if_contentTo *REQ_IF_CONTENT)

func (*REQ_IF_CONTENT) Checkout

func (req_if_content *REQ_IF_CONTENT) Checkout(stage *Stage) *REQ_IF_CONTENT

Checkout req_if_content to the back repo (if it is already staged)

func (*REQ_IF_CONTENT) Commit

func (req_if_content *REQ_IF_CONTENT) Commit(stage *Stage) *REQ_IF_CONTENT

commit req_if_content to the back repo (if it is already staged)

func (*REQ_IF_CONTENT) CommitVoid

func (req_if_content *REQ_IF_CONTENT) CommitVoid(stage *Stage)

func (*REQ_IF_CONTENT) CopyBasicFields

func (from *REQ_IF_CONTENT) CopyBasicFields(to *REQ_IF_CONTENT)

func (*REQ_IF_CONTENT) GetName

func (req_if_content *REQ_IF_CONTENT) GetName() (res string)

for satisfaction of GongStruct interface

func (*REQ_IF_CONTENT) Stage

func (req_if_content *REQ_IF_CONTENT) Stage(stage *Stage) *REQ_IF_CONTENT

Stage puts req_if_content to the model stage

func (*REQ_IF_CONTENT) Unstage

func (req_if_content *REQ_IF_CONTENT) Unstage(stage *Stage) *REQ_IF_CONTENT

Unstage removes req_if_content off the model stage

func (*REQ_IF_CONTENT) UnstageVoid

func (req_if_content *REQ_IF_CONTENT) UnstageVoid(stage *Stage)

UnstageVoid removes req_if_content off the model stage

type REQ_IF_CONTENT_WOP

type REQ_IF_CONTENT_WOP struct {
	Name string
}

type REQ_IF_HEADER

type REQ_IF_HEADER struct {
	Name string `xml:"-"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from element "COMMENT" of type string order 215 depth 1
	COMMENT string `xml:"COMMENT,omitempty"`

	// generated from element "CREATION-TIME" of type dateTime order 216 depth 1
	CREATION_TIME string `xml:"CREATION-TIME,omitempty"`

	// generated from element "REPOSITORY-ID" of type string order 217 depth 1
	REPOSITORY_ID string `xml:"REPOSITORY-ID,omitempty"`

	// generated from element "REQ-IF-TOOL-ID" of type string order 218 depth 1
	REQ_IF_TOOL_ID string `xml:"REQ-IF-TOOL-ID,omitempty"`

	// generated from element "REQ-IF-VERSION" of type string order 219 depth 1
	REQ_IF_VERSION string `xml:"REQ-IF-VERSION,omitempty"`

	// generated from element "SOURCE-TOOL-ID" of type string order 220 depth 1
	SOURCE_TOOL_ID string `xml:"SOURCE-TOOL-ID,omitempty"`

	// generated from element "TITLE" of type string order 221 depth 1
	TITLE string `xml:"TITLE,omitempty"`
}

REQ_IF_HEADER Named source named complex type "REQ-IF-HEADER"

func CopyBranchREQ_IF_HEADER

func CopyBranchREQ_IF_HEADER(mapOrigCopy map[any]any, req_if_headerFrom *REQ_IF_HEADER) (req_if_headerTo *REQ_IF_HEADER)

func (*REQ_IF_HEADER) Checkout

func (req_if_header *REQ_IF_HEADER) Checkout(stage *Stage) *REQ_IF_HEADER

Checkout req_if_header to the back repo (if it is already staged)

func (*REQ_IF_HEADER) Commit

func (req_if_header *REQ_IF_HEADER) Commit(stage *Stage) *REQ_IF_HEADER

commit req_if_header to the back repo (if it is already staged)

func (*REQ_IF_HEADER) CommitVoid

func (req_if_header *REQ_IF_HEADER) CommitVoid(stage *Stage)

func (*REQ_IF_HEADER) CopyBasicFields

func (from *REQ_IF_HEADER) CopyBasicFields(to *REQ_IF_HEADER)

func (*REQ_IF_HEADER) GetName

func (req_if_header *REQ_IF_HEADER) GetName() (res string)

for satisfaction of GongStruct interface

func (*REQ_IF_HEADER) Stage

func (req_if_header *REQ_IF_HEADER) Stage(stage *Stage) *REQ_IF_HEADER

Stage puts req_if_header to the model stage

func (*REQ_IF_HEADER) Unstage

func (req_if_header *REQ_IF_HEADER) Unstage(stage *Stage) *REQ_IF_HEADER

Unstage removes req_if_header off the model stage

func (*REQ_IF_HEADER) UnstageVoid

func (req_if_header *REQ_IF_HEADER) UnstageVoid(stage *Stage)

UnstageVoid removes req_if_header off the model stage

type REQ_IF_HEADER_WOP

type REQ_IF_HEADER_WOP struct {
	Name string

	IDENTIFIER string

	COMMENT string

	CREATION_TIME string

	REPOSITORY_ID string

	REQ_IF_TOOL_ID string

	REQ_IF_VERSION string

	SOURCE_TOOL_ID string

	TITLE string
}

type REQ_IF_TOOL_EXTENSION

type REQ_IF_TOOL_EXTENSION struct {
	Name string `xml:"-"`
}

REQ_IF_TOOL_EXTENSION Named source named complex type "REQ-IF-TOOL-EXTENSION"

func CopyBranchREQ_IF_TOOL_EXTENSION

func CopyBranchREQ_IF_TOOL_EXTENSION(mapOrigCopy map[any]any, req_if_tool_extensionFrom *REQ_IF_TOOL_EXTENSION) (req_if_tool_extensionTo *REQ_IF_TOOL_EXTENSION)

func (*REQ_IF_TOOL_EXTENSION) Checkout

func (req_if_tool_extension *REQ_IF_TOOL_EXTENSION) Checkout(stage *Stage) *REQ_IF_TOOL_EXTENSION

Checkout req_if_tool_extension to the back repo (if it is already staged)

func (*REQ_IF_TOOL_EXTENSION) Commit

func (req_if_tool_extension *REQ_IF_TOOL_EXTENSION) Commit(stage *Stage) *REQ_IF_TOOL_EXTENSION

commit req_if_tool_extension to the back repo (if it is already staged)

func (*REQ_IF_TOOL_EXTENSION) CommitVoid

func (req_if_tool_extension *REQ_IF_TOOL_EXTENSION) CommitVoid(stage *Stage)

func (*REQ_IF_TOOL_EXTENSION) CopyBasicFields

func (from *REQ_IF_TOOL_EXTENSION) CopyBasicFields(to *REQ_IF_TOOL_EXTENSION)

func (*REQ_IF_TOOL_EXTENSION) GetName

func (req_if_tool_extension *REQ_IF_TOOL_EXTENSION) GetName() (res string)

for satisfaction of GongStruct interface

func (*REQ_IF_TOOL_EXTENSION) Stage

func (req_if_tool_extension *REQ_IF_TOOL_EXTENSION) Stage(stage *Stage) *REQ_IF_TOOL_EXTENSION

Stage puts req_if_tool_extension to the model stage

func (*REQ_IF_TOOL_EXTENSION) Unstage

func (req_if_tool_extension *REQ_IF_TOOL_EXTENSION) Unstage(stage *Stage) *REQ_IF_TOOL_EXTENSION

Unstage removes req_if_tool_extension off the model stage

func (*REQ_IF_TOOL_EXTENSION) UnstageVoid

func (req_if_tool_extension *REQ_IF_TOOL_EXTENSION) UnstageVoid(stage *Stage)

UnstageVoid removes req_if_tool_extension off the model stage

type REQ_IF_TOOL_EXTENSION_WOP

type REQ_IF_TOOL_EXTENSION_WOP struct {
	Name string
}

type REQ_IF_WOP

type REQ_IF_WOP struct {
	Name string

	Lang string
}

type RenderingConfFileToUploadProxy

type RenderingConfFileToUploadProxy struct {
	// contains filtered or unexported fields
}

func (*RenderingConfFileToUploadProxy) OnFileUpload

func (proxy *RenderingConfFileToUploadProxy) OnFileUpload(uploadedFile *load.FileToUpload) error

type RenderingConfiguration

type RenderingConfiguration struct {
	Name string

	Map_SPEC_OBJECT_TYPE_isNodeExpandedEntries                []*Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry
	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntries         []*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry
	Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntries        []*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry
	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntries       []*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry
	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntries       []*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry
	Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntries          []*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry
	Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntries          []*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry
	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntries   []*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry
	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntries         []*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry
	Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntries        []*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry
	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntries       []*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry
	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntries       []*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry
	Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntries          []*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry
	Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntries          []*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry
	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntries   []*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry
	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntries       []*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry
	Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntries      []*Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry
	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntries     []*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry
	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntries     []*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry
	Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntries        []*Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry
	Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntries        []*Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry
	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntries []*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry
	Map_SPECIFICATION_Nodes_expandedEntries                   []*Map_SPECIFICATION_Nodes_expandedEntry
	Map_SPEC_OBJECT_TYPE_showIdentifierEntries                []*Map_SPEC_OBJECT_TYPE_showIdentifierEntry
	Map_SPEC_OBJECT_TYPE_showNameEntries                      []*Map_SPEC_OBJECT_TYPE_showNameEntry
}

func CopyBranchRenderingConfiguration

func CopyBranchRenderingConfiguration(mapOrigCopy map[any]any, renderingconfigurationFrom *RenderingConfiguration) (renderingconfigurationTo *RenderingConfiguration)

func (*RenderingConfiguration) Checkout

func (renderingconfiguration *RenderingConfiguration) Checkout(stage *Stage) *RenderingConfiguration

Checkout renderingconfiguration to the back repo (if it is already staged)

func (*RenderingConfiguration) Commit

func (renderingconfiguration *RenderingConfiguration) Commit(stage *Stage) *RenderingConfiguration

commit renderingconfiguration to the back repo (if it is already staged)

func (*RenderingConfiguration) CommitVoid

func (renderingconfiguration *RenderingConfiguration) CommitVoid(stage *Stage)

func (*RenderingConfiguration) CopyBasicFields

func (from *RenderingConfiguration) CopyBasicFields(to *RenderingConfiguration)

func (*RenderingConfiguration) GetName

func (renderingconfiguration *RenderingConfiguration) GetName() (res string)

for satisfaction of GongStruct interface

func (*RenderingConfiguration) Stage

func (renderingconfiguration *RenderingConfiguration) Stage(stage *Stage) *RenderingConfiguration

Stage puts renderingconfiguration to the model stage

func (*RenderingConfiguration) Unstage

func (renderingconfiguration *RenderingConfiguration) Unstage(stage *Stage) *RenderingConfiguration

Unstage removes renderingconfiguration off the model stage

func (*RenderingConfiguration) UnstageVoid

func (renderingconfiguration *RenderingConfiguration) UnstageVoid(stage *Stage)

UnstageVoid removes renderingconfiguration off the model stage

type RenderingConfiguration_WOP

type RenderingConfiguration_WOP struct {
	Name string
}

type ReverseField

type ReverseField struct {
	GongstructName string
	Fieldname      string
}

func GetReverseFields

func GetReverseFields[Type Gongstruct]() (res []ReverseField)

type SPECIFICATION

type SPECIFICATION struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "CHILDREN" of type A_CHILDREN.
	CHILDREN *A_CHILDREN `xml:"CHILDREN,omitempty"`

	// generated from anonymous type within outer element "VALUES" of type A_ATTRIBUTE-VALUE-XHTML.
	VALUES *A_ATTRIBUTE_VALUE_XHTML_1 `xml:"VALUES,omitempty"`

	// generated from anonymous type within outer element "TYPE" of type A_SPECIFICATION-TYPE-REF.
	TYPE *A_SPECIFICATION_TYPE_REF `xml:"TYPE,omitempty"`
}

SPECIFICATION Named source named complex type "SPECIFICATION"

func CopyBranchSPECIFICATION

func CopyBranchSPECIFICATION(mapOrigCopy map[any]any, specificationFrom *SPECIFICATION) (specificationTo *SPECIFICATION)

func (*SPECIFICATION) Checkout

func (specification *SPECIFICATION) Checkout(stage *Stage) *SPECIFICATION

Checkout specification to the back repo (if it is already staged)

func (*SPECIFICATION) Commit

func (specification *SPECIFICATION) Commit(stage *Stage) *SPECIFICATION

commit specification to the back repo (if it is already staged)

func (*SPECIFICATION) CommitVoid

func (specification *SPECIFICATION) CommitVoid(stage *Stage)

func (*SPECIFICATION) CopyBasicFields

func (from *SPECIFICATION) CopyBasicFields(to *SPECIFICATION)

func (*SPECIFICATION) GetIdentifier

func (s *SPECIFICATION) GetIdentifier() string

func (*SPECIFICATION) GetName

func (specification *SPECIFICATION) GetName() (res string)

for satisfaction of GongStruct interface

func (*SPECIFICATION) GetValues

func (o *SPECIFICATION) GetValues() *A_ATTRIBUTE_VALUE_XHTML_1

func (*SPECIFICATION) Stage

func (specification *SPECIFICATION) Stage(stage *Stage) *SPECIFICATION

Stage puts specification to the model stage

func (*SPECIFICATION) Unstage

func (specification *SPECIFICATION) Unstage(stage *Stage) *SPECIFICATION

Unstage removes specification off the model stage

func (*SPECIFICATION) UnstageVoid

func (specification *SPECIFICATION) UnstageVoid(stage *Stage)

UnstageVoid removes specification off the model stage

type SPECIFICATION_TYPE

type SPECIFICATION_TYPE struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "SPEC-ATTRIBUTES" of type A_SPEC-ATTRIBUTES.
	SPEC_ATTRIBUTES *A_SPEC_ATTRIBUTES `xml:"SPEC-ATTRIBUTES,omitempty"`
}

SPECIFICATION_TYPE Named source named complex type "SPECIFICATION-TYPE"

func CopyBranchSPECIFICATION_TYPE

func CopyBranchSPECIFICATION_TYPE(mapOrigCopy map[any]any, specification_typeFrom *SPECIFICATION_TYPE) (specification_typeTo *SPECIFICATION_TYPE)

func (*SPECIFICATION_TYPE) Checkout

func (specification_type *SPECIFICATION_TYPE) Checkout(stage *Stage) *SPECIFICATION_TYPE

Checkout specification_type to the back repo (if it is already staged)

func (*SPECIFICATION_TYPE) Commit

func (specification_type *SPECIFICATION_TYPE) Commit(stage *Stage) *SPECIFICATION_TYPE

commit specification_type to the back repo (if it is already staged)

func (*SPECIFICATION_TYPE) CommitVoid

func (specification_type *SPECIFICATION_TYPE) CommitVoid(stage *Stage)

func (*SPECIFICATION_TYPE) CopyBasicFields

func (from *SPECIFICATION_TYPE) CopyBasicFields(to *SPECIFICATION_TYPE)

func (*SPECIFICATION_TYPE) GetIdentifier

func (s *SPECIFICATION_TYPE) GetIdentifier() string

func (*SPECIFICATION_TYPE) GetName

func (specification_type *SPECIFICATION_TYPE) GetName() (res string)

for satisfaction of GongStruct interface

func (*SPECIFICATION_TYPE) Stage

func (specification_type *SPECIFICATION_TYPE) Stage(stage *Stage) *SPECIFICATION_TYPE

Stage puts specification_type to the model stage

func (*SPECIFICATION_TYPE) Unstage

func (specification_type *SPECIFICATION_TYPE) Unstage(stage *Stage) *SPECIFICATION_TYPE

Unstage removes specification_type off the model stage

func (*SPECIFICATION_TYPE) UnstageVoid

func (specification_type *SPECIFICATION_TYPE) UnstageVoid(stage *Stage)

UnstageVoid removes specification_type off the model stage

type SPECIFICATION_TYPE_WOP

type SPECIFICATION_TYPE_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string
}

type SPECIFICATION_WOP

type SPECIFICATION_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string
}

type SPEC_HIERARCHY

type SPEC_HIERARCHY struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "IS-EDITABLE
	IS_EDITABLE bool `xml:"IS-EDITABLE,attr,omitempty"`

	// generated from attribute "IS-TABLE-INTERNAL
	IS_TABLE_INTERNAL bool `xml:"IS-TABLE-INTERNAL,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "CHILDREN" of type A_CHILDREN.
	CHILDREN *A_CHILDREN `xml:"CHILDREN,omitempty"`

	// generated from anonymous type within outer element "EDITABLE-ATTS" of type A_EDITABLE-ATTS.
	EDITABLE_ATTS *A_EDITABLE_ATTS `xml:"EDITABLE-ATTS,omitempty"`

	// generated from anonymous type within outer element "OBJECT" of type A_OBJECT.
	OBJECT *A_OBJECT `xml:"OBJECT,omitempty"`
}

SPEC_HIERARCHY Named source named complex type "SPEC-HIERARCHY"

func CopyBranchSPEC_HIERARCHY

func CopyBranchSPEC_HIERARCHY(mapOrigCopy map[any]any, spec_hierarchyFrom *SPEC_HIERARCHY) (spec_hierarchyTo *SPEC_HIERARCHY)

func (*SPEC_HIERARCHY) Checkout

func (spec_hierarchy *SPEC_HIERARCHY) Checkout(stage *Stage) *SPEC_HIERARCHY

Checkout spec_hierarchy to the back repo (if it is already staged)

func (*SPEC_HIERARCHY) Commit

func (spec_hierarchy *SPEC_HIERARCHY) Commit(stage *Stage) *SPEC_HIERARCHY

commit spec_hierarchy to the back repo (if it is already staged)

func (*SPEC_HIERARCHY) CommitVoid

func (spec_hierarchy *SPEC_HIERARCHY) CommitVoid(stage *Stage)

func (*SPEC_HIERARCHY) CopyBasicFields

func (from *SPEC_HIERARCHY) CopyBasicFields(to *SPEC_HIERARCHY)

func (*SPEC_HIERARCHY) GetName

func (spec_hierarchy *SPEC_HIERARCHY) GetName() (res string)

for satisfaction of GongStruct interface

func (*SPEC_HIERARCHY) Stage

func (spec_hierarchy *SPEC_HIERARCHY) Stage(stage *Stage) *SPEC_HIERARCHY

Stage puts spec_hierarchy to the model stage

func (*SPEC_HIERARCHY) Unstage

func (spec_hierarchy *SPEC_HIERARCHY) Unstage(stage *Stage) *SPEC_HIERARCHY

Unstage removes spec_hierarchy off the model stage

func (*SPEC_HIERARCHY) UnstageVoid

func (spec_hierarchy *SPEC_HIERARCHY) UnstageVoid(stage *Stage)

UnstageVoid removes spec_hierarchy off the model stage

type SPEC_HIERARCHY_WOP

type SPEC_HIERARCHY_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	IS_EDITABLE bool

	IS_TABLE_INTERNAL bool

	LAST_CHANGE string

	LONG_NAME string
}

type SPEC_OBJECT

type SPEC_OBJECT struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "VALUES" of type A_ATTRIBUTE-VALUE-XHTML.
	VALUES *A_ATTRIBUTE_VALUE_XHTML_1 `xml:"VALUES,omitempty"`

	// generated from anonymous type within outer element "TYPE" of type A_SPEC-OBJECT-TYPE-REF.
	TYPE *A_SPEC_OBJECT_TYPE_REF `xml:"TYPE,omitempty"`
}

SPEC_OBJECT Named source named complex type "SPEC-OBJECT"

func CopyBranchSPEC_OBJECT

func CopyBranchSPEC_OBJECT(mapOrigCopy map[any]any, spec_objectFrom *SPEC_OBJECT) (spec_objectTo *SPEC_OBJECT)

func (*SPEC_OBJECT) Checkout

func (spec_object *SPEC_OBJECT) Checkout(stage *Stage) *SPEC_OBJECT

Checkout spec_object to the back repo (if it is already staged)

func (*SPEC_OBJECT) Commit

func (spec_object *SPEC_OBJECT) Commit(stage *Stage) *SPEC_OBJECT

commit spec_object to the back repo (if it is already staged)

func (*SPEC_OBJECT) CommitVoid

func (spec_object *SPEC_OBJECT) CommitVoid(stage *Stage)

func (*SPEC_OBJECT) CopyBasicFields

func (from *SPEC_OBJECT) CopyBasicFields(to *SPEC_OBJECT)

func (*SPEC_OBJECT) GetIdentifier

func (s *SPEC_OBJECT) GetIdentifier() string

func (*SPEC_OBJECT) GetName

func (spec_object *SPEC_OBJECT) GetName() (res string)

for satisfaction of GongStruct interface

func (*SPEC_OBJECT) GetValues

func (o *SPEC_OBJECT) GetValues() *A_ATTRIBUTE_VALUE_XHTML_1

func (*SPEC_OBJECT) Stage

func (spec_object *SPEC_OBJECT) Stage(stage *Stage) *SPEC_OBJECT

Stage puts spec_object to the model stage

func (*SPEC_OBJECT) Unstage

func (spec_object *SPEC_OBJECT) Unstage(stage *Stage) *SPEC_OBJECT

Unstage removes spec_object off the model stage

func (*SPEC_OBJECT) UnstageVoid

func (spec_object *SPEC_OBJECT) UnstageVoid(stage *Stage)

UnstageVoid removes spec_object off the model stage

type SPEC_OBJECT_TYPE

type SPEC_OBJECT_TYPE struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "SPEC-ATTRIBUTES" of type A_SPEC-ATTRIBUTES.
	SPEC_ATTRIBUTES *A_SPEC_ATTRIBUTES `xml:"SPEC-ATTRIBUTES,omitempty"`
}

SPEC_OBJECT_TYPE Named source named complex type "SPEC-OBJECT-TYPE"

func CopyBranchSPEC_OBJECT_TYPE

func CopyBranchSPEC_OBJECT_TYPE(mapOrigCopy map[any]any, spec_object_typeFrom *SPEC_OBJECT_TYPE) (spec_object_typeTo *SPEC_OBJECT_TYPE)

func (*SPEC_OBJECT_TYPE) Checkout

func (spec_object_type *SPEC_OBJECT_TYPE) Checkout(stage *Stage) *SPEC_OBJECT_TYPE

Checkout spec_object_type to the back repo (if it is already staged)

func (*SPEC_OBJECT_TYPE) Commit

func (spec_object_type *SPEC_OBJECT_TYPE) Commit(stage *Stage) *SPEC_OBJECT_TYPE

commit spec_object_type to the back repo (if it is already staged)

func (*SPEC_OBJECT_TYPE) CommitVoid

func (spec_object_type *SPEC_OBJECT_TYPE) CommitVoid(stage *Stage)

func (*SPEC_OBJECT_TYPE) CopyBasicFields

func (from *SPEC_OBJECT_TYPE) CopyBasicFields(to *SPEC_OBJECT_TYPE)

func (*SPEC_OBJECT_TYPE) GetIdentifier

func (s *SPEC_OBJECT_TYPE) GetIdentifier() string

func (*SPEC_OBJECT_TYPE) GetName

func (spec_object_type *SPEC_OBJECT_TYPE) GetName() (res string)

for satisfaction of GongStruct interface

func (*SPEC_OBJECT_TYPE) Stage

func (spec_object_type *SPEC_OBJECT_TYPE) Stage(stage *Stage) *SPEC_OBJECT_TYPE

Stage puts spec_object_type to the model stage

func (*SPEC_OBJECT_TYPE) Unstage

func (spec_object_type *SPEC_OBJECT_TYPE) Unstage(stage *Stage) *SPEC_OBJECT_TYPE

Unstage removes spec_object_type off the model stage

func (*SPEC_OBJECT_TYPE) UnstageVoid

func (spec_object_type *SPEC_OBJECT_TYPE) UnstageVoid(stage *Stage)

UnstageVoid removes spec_object_type off the model stage

type SPEC_OBJECT_TYPE_WOP

type SPEC_OBJECT_TYPE_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string
}

type SPEC_OBJECT_WOP

type SPEC_OBJECT_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string
}

type SPEC_RELATION

type SPEC_RELATION struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "VALUES" of type A_ATTRIBUTE-VALUE-XHTML.
	VALUES *A_ATTRIBUTE_VALUE_XHTML_1 `xml:"VALUES,omitempty"`

	// generated from anonymous type within outer element "SOURCE" of type A_SOURCE.
	SOURCE *A_SOURCE_1 `xml:"SOURCE,omitempty"`

	// generated from anonymous type within outer element "TARGET" of type A_SOURCE.
	TARGET *A_SOURCE_1 `xml:"TARGET,omitempty"`

	// generated from anonymous type within outer element "TYPE" of type A_SPEC-RELATION-TYPE-REF.
	TYPE *A_SPEC_RELATION_TYPE_REF `xml:"TYPE,omitempty"`
}

SPEC_RELATION Named source named complex type "SPEC-RELATION"

func CopyBranchSPEC_RELATION

func CopyBranchSPEC_RELATION(mapOrigCopy map[any]any, spec_relationFrom *SPEC_RELATION) (spec_relationTo *SPEC_RELATION)

func (*SPEC_RELATION) Checkout

func (spec_relation *SPEC_RELATION) Checkout(stage *Stage) *SPEC_RELATION

Checkout spec_relation to the back repo (if it is already staged)

func (*SPEC_RELATION) Commit

func (spec_relation *SPEC_RELATION) Commit(stage *Stage) *SPEC_RELATION

commit spec_relation to the back repo (if it is already staged)

func (*SPEC_RELATION) CommitVoid

func (spec_relation *SPEC_RELATION) CommitVoid(stage *Stage)

func (*SPEC_RELATION) CopyBasicFields

func (from *SPEC_RELATION) CopyBasicFields(to *SPEC_RELATION)

func (*SPEC_RELATION) GetName

func (spec_relation *SPEC_RELATION) GetName() (res string)

for satisfaction of GongStruct interface

func (*SPEC_RELATION) GetValues

func (o *SPEC_RELATION) GetValues() *A_ATTRIBUTE_VALUE_XHTML_1

func (*SPEC_RELATION) Stage

func (spec_relation *SPEC_RELATION) Stage(stage *Stage) *SPEC_RELATION

Stage puts spec_relation to the model stage

func (*SPEC_RELATION) Unstage

func (spec_relation *SPEC_RELATION) Unstage(stage *Stage) *SPEC_RELATION

Unstage removes spec_relation off the model stage

func (*SPEC_RELATION) UnstageVoid

func (spec_relation *SPEC_RELATION) UnstageVoid(stage *Stage)

UnstageVoid removes spec_relation off the model stage

type SPEC_RELATION_TYPE

type SPEC_RELATION_TYPE struct {
	Name string `xml:"-"`

	// generated from attribute "DESC
	DESC string `xml:"DESC,attr,omitempty"`

	// generated from attribute "IDENTIFIER
	IDENTIFIER string `xml:"IDENTIFIER,attr,omitempty"`

	// generated from attribute "LAST-CHANGE
	LAST_CHANGE string `xml:"LAST-CHANGE,attr,omitempty"`

	// generated from attribute "LONG-NAME
	LONG_NAME string `xml:"LONG-NAME,attr,omitempty"`

	// generated from anonymous type within outer element "ALTERNATIVE-ID" of type A_ALTERNATIVE-ID.
	ALTERNATIVE_ID *A_ALTERNATIVE_ID `xml:"ALTERNATIVE-ID,omitempty"`

	// generated from anonymous type within outer element "SPEC-ATTRIBUTES" of type A_SPEC-ATTRIBUTES.
	SPEC_ATTRIBUTES *A_SPEC_ATTRIBUTES `xml:"SPEC-ATTRIBUTES,omitempty"`
}

SPEC_RELATION_TYPE Named source named complex type "SPEC-RELATION-TYPE"

func CopyBranchSPEC_RELATION_TYPE

func CopyBranchSPEC_RELATION_TYPE(mapOrigCopy map[any]any, spec_relation_typeFrom *SPEC_RELATION_TYPE) (spec_relation_typeTo *SPEC_RELATION_TYPE)

func (*SPEC_RELATION_TYPE) Checkout

func (spec_relation_type *SPEC_RELATION_TYPE) Checkout(stage *Stage) *SPEC_RELATION_TYPE

Checkout spec_relation_type to the back repo (if it is already staged)

func (*SPEC_RELATION_TYPE) Commit

func (spec_relation_type *SPEC_RELATION_TYPE) Commit(stage *Stage) *SPEC_RELATION_TYPE

commit spec_relation_type to the back repo (if it is already staged)

func (*SPEC_RELATION_TYPE) CommitVoid

func (spec_relation_type *SPEC_RELATION_TYPE) CommitVoid(stage *Stage)

func (*SPEC_RELATION_TYPE) CopyBasicFields

func (from *SPEC_RELATION_TYPE) CopyBasicFields(to *SPEC_RELATION_TYPE)

func (*SPEC_RELATION_TYPE) GetIdentifier

func (s *SPEC_RELATION_TYPE) GetIdentifier() string

func (*SPEC_RELATION_TYPE) GetName

func (spec_relation_type *SPEC_RELATION_TYPE) GetName() (res string)

for satisfaction of GongStruct interface

func (*SPEC_RELATION_TYPE) Stage

func (spec_relation_type *SPEC_RELATION_TYPE) Stage(stage *Stage) *SPEC_RELATION_TYPE

Stage puts spec_relation_type to the model stage

func (*SPEC_RELATION_TYPE) Unstage

func (spec_relation_type *SPEC_RELATION_TYPE) Unstage(stage *Stage) *SPEC_RELATION_TYPE

Unstage removes spec_relation_type off the model stage

func (*SPEC_RELATION_TYPE) UnstageVoid

func (spec_relation_type *SPEC_RELATION_TYPE) UnstageVoid(stage *Stage)

UnstageVoid removes spec_relation_type off the model stage

type SPEC_RELATION_TYPE_WOP

type SPEC_RELATION_TYPE_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string
}

type SPEC_RELATION_WOP

type SPEC_RELATION_WOP struct {
	Name string

	DESC string

	IDENTIFIER string

	LAST_CHANGE string

	LONG_NAME string
}

type SpecObjectsTreeUpdaterInterface

type SpecObjectsTreeUpdaterInterface interface {
	UpdateAndCommitSpecObjectsTreeStage(stager *Stager)
}

type SpecRelationsTreeUpdaterInterface

type SpecRelationsTreeUpdaterInterface interface {
	UpdateAndCommitSpecRelationsTreeStage(stager *Stager)
}

type SpecTypesTreeUpdaterInterface

type SpecTypesTreeUpdaterInterface interface {
	UpdateAndCommitSpecTypesTreeStage(stager *Stager)
}

type SpecificationsTreeUpdaterInterface

type SpecificationsTreeUpdaterInterface interface {
	UpdateAndCommitSpecificationsTreeStage(stager *Stager)
	UpdateAndCommitSpecificationsMarkdownStage(stager *Stager)
	UpdateAttributeDefinitionNb(
		stager *Stager,
	)
}

type Stage

type Stage struct {

	// insertion point for definition of arrays registering instances
	ALTERNATIVE_IDs           map[*ALTERNATIVE_ID]any
	ALTERNATIVE_IDs_mapString map[string]*ALTERNATIVE_ID

	// insertion point for slice of pointers maps
	OnAfterALTERNATIVE_IDCreateCallback               OnAfterCreateInterface[ALTERNATIVE_ID]
	OnAfterALTERNATIVE_IDUpdateCallback               OnAfterUpdateInterface[ALTERNATIVE_ID]
	OnAfterALTERNATIVE_IDUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ALTERNATIVE_ID]
	OnAfterALTERNATIVE_IDDeleteCallback               OnAfterDeleteInterface[ALTERNATIVE_ID]
	OnAfterALTERNATIVE_IDReadCallback                 OnAfterReadInterface[ALTERNATIVE_ID]

	ATTRIBUTE_DEFINITION_BOOLEANs           map[*ATTRIBUTE_DEFINITION_BOOLEAN]any
	ATTRIBUTE_DEFINITION_BOOLEANs_mapString map[string]*ATTRIBUTE_DEFINITION_BOOLEAN

	// insertion point for slice of pointers maps
	OnAfterATTRIBUTE_DEFINITION_BOOLEANCreateCallback               OnAfterCreateInterface[ATTRIBUTE_DEFINITION_BOOLEAN]
	OnAfterATTRIBUTE_DEFINITION_BOOLEANUpdateCallback               OnAfterUpdateInterface[ATTRIBUTE_DEFINITION_BOOLEAN]
	OnAfterATTRIBUTE_DEFINITION_BOOLEANUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ATTRIBUTE_DEFINITION_BOOLEAN]
	OnAfterATTRIBUTE_DEFINITION_BOOLEANDeleteCallback               OnAfterDeleteInterface[ATTRIBUTE_DEFINITION_BOOLEAN]
	OnAfterATTRIBUTE_DEFINITION_BOOLEANReadCallback                 OnAfterReadInterface[ATTRIBUTE_DEFINITION_BOOLEAN]

	ATTRIBUTE_DEFINITION_DATEs           map[*ATTRIBUTE_DEFINITION_DATE]any
	ATTRIBUTE_DEFINITION_DATEs_mapString map[string]*ATTRIBUTE_DEFINITION_DATE

	// insertion point for slice of pointers maps
	OnAfterATTRIBUTE_DEFINITION_DATECreateCallback               OnAfterCreateInterface[ATTRIBUTE_DEFINITION_DATE]
	OnAfterATTRIBUTE_DEFINITION_DATEUpdateCallback               OnAfterUpdateInterface[ATTRIBUTE_DEFINITION_DATE]
	OnAfterATTRIBUTE_DEFINITION_DATEUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ATTRIBUTE_DEFINITION_DATE]
	OnAfterATTRIBUTE_DEFINITION_DATEDeleteCallback               OnAfterDeleteInterface[ATTRIBUTE_DEFINITION_DATE]
	OnAfterATTRIBUTE_DEFINITION_DATEReadCallback                 OnAfterReadInterface[ATTRIBUTE_DEFINITION_DATE]

	ATTRIBUTE_DEFINITION_ENUMERATIONs           map[*ATTRIBUTE_DEFINITION_ENUMERATION]any
	ATTRIBUTE_DEFINITION_ENUMERATIONs_mapString map[string]*ATTRIBUTE_DEFINITION_ENUMERATION

	// insertion point for slice of pointers maps
	OnAfterATTRIBUTE_DEFINITION_ENUMERATIONCreateCallback               OnAfterCreateInterface[ATTRIBUTE_DEFINITION_ENUMERATION]
	OnAfterATTRIBUTE_DEFINITION_ENUMERATIONUpdateCallback               OnAfterUpdateInterface[ATTRIBUTE_DEFINITION_ENUMERATION]
	OnAfterATTRIBUTE_DEFINITION_ENUMERATIONUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ATTRIBUTE_DEFINITION_ENUMERATION]
	OnAfterATTRIBUTE_DEFINITION_ENUMERATIONDeleteCallback               OnAfterDeleteInterface[ATTRIBUTE_DEFINITION_ENUMERATION]
	OnAfterATTRIBUTE_DEFINITION_ENUMERATIONReadCallback                 OnAfterReadInterface[ATTRIBUTE_DEFINITION_ENUMERATION]

	ATTRIBUTE_DEFINITION_INTEGERs           map[*ATTRIBUTE_DEFINITION_INTEGER]any
	ATTRIBUTE_DEFINITION_INTEGERs_mapString map[string]*ATTRIBUTE_DEFINITION_INTEGER

	// insertion point for slice of pointers maps
	OnAfterATTRIBUTE_DEFINITION_INTEGERCreateCallback               OnAfterCreateInterface[ATTRIBUTE_DEFINITION_INTEGER]
	OnAfterATTRIBUTE_DEFINITION_INTEGERUpdateCallback               OnAfterUpdateInterface[ATTRIBUTE_DEFINITION_INTEGER]
	OnAfterATTRIBUTE_DEFINITION_INTEGERUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ATTRIBUTE_DEFINITION_INTEGER]
	OnAfterATTRIBUTE_DEFINITION_INTEGERDeleteCallback               OnAfterDeleteInterface[ATTRIBUTE_DEFINITION_INTEGER]
	OnAfterATTRIBUTE_DEFINITION_INTEGERReadCallback                 OnAfterReadInterface[ATTRIBUTE_DEFINITION_INTEGER]

	ATTRIBUTE_DEFINITION_REALs           map[*ATTRIBUTE_DEFINITION_REAL]any
	ATTRIBUTE_DEFINITION_REALs_mapString map[string]*ATTRIBUTE_DEFINITION_REAL

	// insertion point for slice of pointers maps
	OnAfterATTRIBUTE_DEFINITION_REALCreateCallback               OnAfterCreateInterface[ATTRIBUTE_DEFINITION_REAL]
	OnAfterATTRIBUTE_DEFINITION_REALUpdateCallback               OnAfterUpdateInterface[ATTRIBUTE_DEFINITION_REAL]
	OnAfterATTRIBUTE_DEFINITION_REALUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ATTRIBUTE_DEFINITION_REAL]
	OnAfterATTRIBUTE_DEFINITION_REALDeleteCallback               OnAfterDeleteInterface[ATTRIBUTE_DEFINITION_REAL]
	OnAfterATTRIBUTE_DEFINITION_REALReadCallback                 OnAfterReadInterface[ATTRIBUTE_DEFINITION_REAL]

	ATTRIBUTE_DEFINITION_STRINGs           map[*ATTRIBUTE_DEFINITION_STRING]any
	ATTRIBUTE_DEFINITION_STRINGs_mapString map[string]*ATTRIBUTE_DEFINITION_STRING

	// insertion point for slice of pointers maps
	OnAfterATTRIBUTE_DEFINITION_STRINGCreateCallback               OnAfterCreateInterface[ATTRIBUTE_DEFINITION_STRING]
	OnAfterATTRIBUTE_DEFINITION_STRINGUpdateCallback               OnAfterUpdateInterface[ATTRIBUTE_DEFINITION_STRING]
	OnAfterATTRIBUTE_DEFINITION_STRINGUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ATTRIBUTE_DEFINITION_STRING]
	OnAfterATTRIBUTE_DEFINITION_STRINGDeleteCallback               OnAfterDeleteInterface[ATTRIBUTE_DEFINITION_STRING]
	OnAfterATTRIBUTE_DEFINITION_STRINGReadCallback                 OnAfterReadInterface[ATTRIBUTE_DEFINITION_STRING]

	ATTRIBUTE_DEFINITION_XHTMLs           map[*ATTRIBUTE_DEFINITION_XHTML]any
	ATTRIBUTE_DEFINITION_XHTMLs_mapString map[string]*ATTRIBUTE_DEFINITION_XHTML

	// insertion point for slice of pointers maps
	OnAfterATTRIBUTE_DEFINITION_XHTMLCreateCallback               OnAfterCreateInterface[ATTRIBUTE_DEFINITION_XHTML]
	OnAfterATTRIBUTE_DEFINITION_XHTMLUpdateCallback               OnAfterUpdateInterface[ATTRIBUTE_DEFINITION_XHTML]
	OnAfterATTRIBUTE_DEFINITION_XHTMLUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ATTRIBUTE_DEFINITION_XHTML]
	OnAfterATTRIBUTE_DEFINITION_XHTMLDeleteCallback               OnAfterDeleteInterface[ATTRIBUTE_DEFINITION_XHTML]
	OnAfterATTRIBUTE_DEFINITION_XHTMLReadCallback                 OnAfterReadInterface[ATTRIBUTE_DEFINITION_XHTML]

	ATTRIBUTE_VALUE_BOOLEANs           map[*ATTRIBUTE_VALUE_BOOLEAN]any
	ATTRIBUTE_VALUE_BOOLEANs_mapString map[string]*ATTRIBUTE_VALUE_BOOLEAN

	// insertion point for slice of pointers maps
	OnAfterATTRIBUTE_VALUE_BOOLEANCreateCallback               OnAfterCreateInterface[ATTRIBUTE_VALUE_BOOLEAN]
	OnAfterATTRIBUTE_VALUE_BOOLEANUpdateCallback               OnAfterUpdateInterface[ATTRIBUTE_VALUE_BOOLEAN]
	OnAfterATTRIBUTE_VALUE_BOOLEANUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ATTRIBUTE_VALUE_BOOLEAN]
	OnAfterATTRIBUTE_VALUE_BOOLEANDeleteCallback               OnAfterDeleteInterface[ATTRIBUTE_VALUE_BOOLEAN]
	OnAfterATTRIBUTE_VALUE_BOOLEANReadCallback                 OnAfterReadInterface[ATTRIBUTE_VALUE_BOOLEAN]

	ATTRIBUTE_VALUE_DATEs           map[*ATTRIBUTE_VALUE_DATE]any
	ATTRIBUTE_VALUE_DATEs_mapString map[string]*ATTRIBUTE_VALUE_DATE

	// insertion point for slice of pointers maps
	OnAfterATTRIBUTE_VALUE_DATECreateCallback               OnAfterCreateInterface[ATTRIBUTE_VALUE_DATE]
	OnAfterATTRIBUTE_VALUE_DATEUpdateCallback               OnAfterUpdateInterface[ATTRIBUTE_VALUE_DATE]
	OnAfterATTRIBUTE_VALUE_DATEUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ATTRIBUTE_VALUE_DATE]
	OnAfterATTRIBUTE_VALUE_DATEDeleteCallback               OnAfterDeleteInterface[ATTRIBUTE_VALUE_DATE]
	OnAfterATTRIBUTE_VALUE_DATEReadCallback                 OnAfterReadInterface[ATTRIBUTE_VALUE_DATE]

	ATTRIBUTE_VALUE_ENUMERATIONs           map[*ATTRIBUTE_VALUE_ENUMERATION]any
	ATTRIBUTE_VALUE_ENUMERATIONs_mapString map[string]*ATTRIBUTE_VALUE_ENUMERATION

	// insertion point for slice of pointers maps
	OnAfterATTRIBUTE_VALUE_ENUMERATIONCreateCallback               OnAfterCreateInterface[ATTRIBUTE_VALUE_ENUMERATION]
	OnAfterATTRIBUTE_VALUE_ENUMERATIONUpdateCallback               OnAfterUpdateInterface[ATTRIBUTE_VALUE_ENUMERATION]
	OnAfterATTRIBUTE_VALUE_ENUMERATIONUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ATTRIBUTE_VALUE_ENUMERATION]
	OnAfterATTRIBUTE_VALUE_ENUMERATIONDeleteCallback               OnAfterDeleteInterface[ATTRIBUTE_VALUE_ENUMERATION]
	OnAfterATTRIBUTE_VALUE_ENUMERATIONReadCallback                 OnAfterReadInterface[ATTRIBUTE_VALUE_ENUMERATION]

	ATTRIBUTE_VALUE_INTEGERs           map[*ATTRIBUTE_VALUE_INTEGER]any
	ATTRIBUTE_VALUE_INTEGERs_mapString map[string]*ATTRIBUTE_VALUE_INTEGER

	// insertion point for slice of pointers maps
	OnAfterATTRIBUTE_VALUE_INTEGERCreateCallback               OnAfterCreateInterface[ATTRIBUTE_VALUE_INTEGER]
	OnAfterATTRIBUTE_VALUE_INTEGERUpdateCallback               OnAfterUpdateInterface[ATTRIBUTE_VALUE_INTEGER]
	OnAfterATTRIBUTE_VALUE_INTEGERUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ATTRIBUTE_VALUE_INTEGER]
	OnAfterATTRIBUTE_VALUE_INTEGERDeleteCallback               OnAfterDeleteInterface[ATTRIBUTE_VALUE_INTEGER]
	OnAfterATTRIBUTE_VALUE_INTEGERReadCallback                 OnAfterReadInterface[ATTRIBUTE_VALUE_INTEGER]

	ATTRIBUTE_VALUE_REALs           map[*ATTRIBUTE_VALUE_REAL]any
	ATTRIBUTE_VALUE_REALs_mapString map[string]*ATTRIBUTE_VALUE_REAL

	// insertion point for slice of pointers maps
	OnAfterATTRIBUTE_VALUE_REALCreateCallback               OnAfterCreateInterface[ATTRIBUTE_VALUE_REAL]
	OnAfterATTRIBUTE_VALUE_REALUpdateCallback               OnAfterUpdateInterface[ATTRIBUTE_VALUE_REAL]
	OnAfterATTRIBUTE_VALUE_REALUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ATTRIBUTE_VALUE_REAL]
	OnAfterATTRIBUTE_VALUE_REALDeleteCallback               OnAfterDeleteInterface[ATTRIBUTE_VALUE_REAL]
	OnAfterATTRIBUTE_VALUE_REALReadCallback                 OnAfterReadInterface[ATTRIBUTE_VALUE_REAL]

	ATTRIBUTE_VALUE_STRINGs           map[*ATTRIBUTE_VALUE_STRING]any
	ATTRIBUTE_VALUE_STRINGs_mapString map[string]*ATTRIBUTE_VALUE_STRING

	// insertion point for slice of pointers maps
	OnAfterATTRIBUTE_VALUE_STRINGCreateCallback               OnAfterCreateInterface[ATTRIBUTE_VALUE_STRING]
	OnAfterATTRIBUTE_VALUE_STRINGUpdateCallback               OnAfterUpdateInterface[ATTRIBUTE_VALUE_STRING]
	OnAfterATTRIBUTE_VALUE_STRINGUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ATTRIBUTE_VALUE_STRING]
	OnAfterATTRIBUTE_VALUE_STRINGDeleteCallback               OnAfterDeleteInterface[ATTRIBUTE_VALUE_STRING]
	OnAfterATTRIBUTE_VALUE_STRINGReadCallback                 OnAfterReadInterface[ATTRIBUTE_VALUE_STRING]

	ATTRIBUTE_VALUE_XHTMLs           map[*ATTRIBUTE_VALUE_XHTML]any
	ATTRIBUTE_VALUE_XHTMLs_mapString map[string]*ATTRIBUTE_VALUE_XHTML

	// insertion point for slice of pointers maps
	OnAfterATTRIBUTE_VALUE_XHTMLCreateCallback               OnAfterCreateInterface[ATTRIBUTE_VALUE_XHTML]
	OnAfterATTRIBUTE_VALUE_XHTMLUpdateCallback               OnAfterUpdateInterface[ATTRIBUTE_VALUE_XHTML]
	OnAfterATTRIBUTE_VALUE_XHTMLUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ATTRIBUTE_VALUE_XHTML]
	OnAfterATTRIBUTE_VALUE_XHTMLDeleteCallback               OnAfterDeleteInterface[ATTRIBUTE_VALUE_XHTML]
	OnAfterATTRIBUTE_VALUE_XHTMLReadCallback                 OnAfterReadInterface[ATTRIBUTE_VALUE_XHTML]

	A_ALTERNATIVE_IDs           map[*A_ALTERNATIVE_ID]any
	A_ALTERNATIVE_IDs_mapString map[string]*A_ALTERNATIVE_ID

	// insertion point for slice of pointers maps
	OnAfterA_ALTERNATIVE_IDCreateCallback               OnAfterCreateInterface[A_ALTERNATIVE_ID]
	OnAfterA_ALTERNATIVE_IDUpdateCallback               OnAfterUpdateInterface[A_ALTERNATIVE_ID]
	OnAfterA_ALTERNATIVE_IDUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ALTERNATIVE_ID]
	OnAfterA_ALTERNATIVE_IDDeleteCallback               OnAfterDeleteInterface[A_ALTERNATIVE_ID]
	OnAfterA_ALTERNATIVE_IDReadCallback                 OnAfterReadInterface[A_ALTERNATIVE_ID]

	A_ATTRIBUTE_DEFINITION_BOOLEAN_REFs           map[*A_ATTRIBUTE_DEFINITION_BOOLEAN_REF]any
	A_ATTRIBUTE_DEFINITION_BOOLEAN_REFs_mapString map[string]*A_ATTRIBUTE_DEFINITION_BOOLEAN_REF

	// insertion point for slice of pointers maps
	OnAfterA_ATTRIBUTE_DEFINITION_BOOLEAN_REFCreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_DEFINITION_BOOLEAN_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_BOOLEAN_REFUpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_DEFINITION_BOOLEAN_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_BOOLEAN_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_DEFINITION_BOOLEAN_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_BOOLEAN_REFDeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_DEFINITION_BOOLEAN_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_BOOLEAN_REFReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_DEFINITION_BOOLEAN_REF]

	A_ATTRIBUTE_DEFINITION_DATE_REFs           map[*A_ATTRIBUTE_DEFINITION_DATE_REF]any
	A_ATTRIBUTE_DEFINITION_DATE_REFs_mapString map[string]*A_ATTRIBUTE_DEFINITION_DATE_REF

	// insertion point for slice of pointers maps
	OnAfterA_ATTRIBUTE_DEFINITION_DATE_REFCreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_DEFINITION_DATE_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_DATE_REFUpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_DEFINITION_DATE_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_DATE_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_DEFINITION_DATE_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_DATE_REFDeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_DEFINITION_DATE_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_DATE_REFReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_DEFINITION_DATE_REF]

	A_ATTRIBUTE_DEFINITION_ENUMERATION_REFs           map[*A_ATTRIBUTE_DEFINITION_ENUMERATION_REF]any
	A_ATTRIBUTE_DEFINITION_ENUMERATION_REFs_mapString map[string]*A_ATTRIBUTE_DEFINITION_ENUMERATION_REF

	// insertion point for slice of pointers maps
	OnAfterA_ATTRIBUTE_DEFINITION_ENUMERATION_REFCreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_DEFINITION_ENUMERATION_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_ENUMERATION_REFUpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_DEFINITION_ENUMERATION_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_ENUMERATION_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_DEFINITION_ENUMERATION_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_ENUMERATION_REFDeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_DEFINITION_ENUMERATION_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_ENUMERATION_REFReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_DEFINITION_ENUMERATION_REF]

	A_ATTRIBUTE_DEFINITION_INTEGER_REFs           map[*A_ATTRIBUTE_DEFINITION_INTEGER_REF]any
	A_ATTRIBUTE_DEFINITION_INTEGER_REFs_mapString map[string]*A_ATTRIBUTE_DEFINITION_INTEGER_REF

	// insertion point for slice of pointers maps
	OnAfterA_ATTRIBUTE_DEFINITION_INTEGER_REFCreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_DEFINITION_INTEGER_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_INTEGER_REFUpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_DEFINITION_INTEGER_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_INTEGER_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_DEFINITION_INTEGER_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_INTEGER_REFDeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_DEFINITION_INTEGER_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_INTEGER_REFReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_DEFINITION_INTEGER_REF]

	A_ATTRIBUTE_DEFINITION_REAL_REFs           map[*A_ATTRIBUTE_DEFINITION_REAL_REF]any
	A_ATTRIBUTE_DEFINITION_REAL_REFs_mapString map[string]*A_ATTRIBUTE_DEFINITION_REAL_REF

	// insertion point for slice of pointers maps
	OnAfterA_ATTRIBUTE_DEFINITION_REAL_REFCreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_DEFINITION_REAL_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_REAL_REFUpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_DEFINITION_REAL_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_REAL_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_DEFINITION_REAL_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_REAL_REFDeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_DEFINITION_REAL_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_REAL_REFReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_DEFINITION_REAL_REF]

	A_ATTRIBUTE_DEFINITION_STRING_REFs           map[*A_ATTRIBUTE_DEFINITION_STRING_REF]any
	A_ATTRIBUTE_DEFINITION_STRING_REFs_mapString map[string]*A_ATTRIBUTE_DEFINITION_STRING_REF

	// insertion point for slice of pointers maps
	OnAfterA_ATTRIBUTE_DEFINITION_STRING_REFCreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_DEFINITION_STRING_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_STRING_REFUpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_DEFINITION_STRING_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_STRING_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_DEFINITION_STRING_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_STRING_REFDeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_DEFINITION_STRING_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_STRING_REFReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_DEFINITION_STRING_REF]

	A_ATTRIBUTE_DEFINITION_XHTML_REFs           map[*A_ATTRIBUTE_DEFINITION_XHTML_REF]any
	A_ATTRIBUTE_DEFINITION_XHTML_REFs_mapString map[string]*A_ATTRIBUTE_DEFINITION_XHTML_REF

	// insertion point for slice of pointers maps
	OnAfterA_ATTRIBUTE_DEFINITION_XHTML_REFCreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_DEFINITION_XHTML_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_XHTML_REFUpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_DEFINITION_XHTML_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_XHTML_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_DEFINITION_XHTML_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_XHTML_REFDeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_DEFINITION_XHTML_REF]
	OnAfterA_ATTRIBUTE_DEFINITION_XHTML_REFReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_DEFINITION_XHTML_REF]

	A_ATTRIBUTE_VALUE_BOOLEANs           map[*A_ATTRIBUTE_VALUE_BOOLEAN]any
	A_ATTRIBUTE_VALUE_BOOLEANs_mapString map[string]*A_ATTRIBUTE_VALUE_BOOLEAN

	// insertion point for slice of pointers maps
	A_ATTRIBUTE_VALUE_BOOLEAN_ATTRIBUTE_VALUE_BOOLEAN_reverseMap map[*ATTRIBUTE_VALUE_BOOLEAN]*A_ATTRIBUTE_VALUE_BOOLEAN

	OnAfterA_ATTRIBUTE_VALUE_BOOLEANCreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_VALUE_BOOLEAN]
	OnAfterA_ATTRIBUTE_VALUE_BOOLEANUpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_VALUE_BOOLEAN]
	OnAfterA_ATTRIBUTE_VALUE_BOOLEANUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_VALUE_BOOLEAN]
	OnAfterA_ATTRIBUTE_VALUE_BOOLEANDeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_VALUE_BOOLEAN]
	OnAfterA_ATTRIBUTE_VALUE_BOOLEANReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_VALUE_BOOLEAN]

	A_ATTRIBUTE_VALUE_DATEs           map[*A_ATTRIBUTE_VALUE_DATE]any
	A_ATTRIBUTE_VALUE_DATEs_mapString map[string]*A_ATTRIBUTE_VALUE_DATE

	// insertion point for slice of pointers maps
	A_ATTRIBUTE_VALUE_DATE_ATTRIBUTE_VALUE_DATE_reverseMap map[*ATTRIBUTE_VALUE_DATE]*A_ATTRIBUTE_VALUE_DATE

	OnAfterA_ATTRIBUTE_VALUE_DATECreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_VALUE_DATE]
	OnAfterA_ATTRIBUTE_VALUE_DATEUpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_VALUE_DATE]
	OnAfterA_ATTRIBUTE_VALUE_DATEUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_VALUE_DATE]
	OnAfterA_ATTRIBUTE_VALUE_DATEDeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_VALUE_DATE]
	OnAfterA_ATTRIBUTE_VALUE_DATEReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_VALUE_DATE]

	A_ATTRIBUTE_VALUE_ENUMERATIONs           map[*A_ATTRIBUTE_VALUE_ENUMERATION]any
	A_ATTRIBUTE_VALUE_ENUMERATIONs_mapString map[string]*A_ATTRIBUTE_VALUE_ENUMERATION

	// insertion point for slice of pointers maps
	A_ATTRIBUTE_VALUE_ENUMERATION_ATTRIBUTE_VALUE_ENUMERATION_reverseMap map[*ATTRIBUTE_VALUE_ENUMERATION]*A_ATTRIBUTE_VALUE_ENUMERATION

	OnAfterA_ATTRIBUTE_VALUE_ENUMERATIONCreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_VALUE_ENUMERATION]
	OnAfterA_ATTRIBUTE_VALUE_ENUMERATIONUpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_VALUE_ENUMERATION]
	OnAfterA_ATTRIBUTE_VALUE_ENUMERATIONUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_VALUE_ENUMERATION]
	OnAfterA_ATTRIBUTE_VALUE_ENUMERATIONDeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_VALUE_ENUMERATION]
	OnAfterA_ATTRIBUTE_VALUE_ENUMERATIONReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_VALUE_ENUMERATION]

	A_ATTRIBUTE_VALUE_INTEGERs           map[*A_ATTRIBUTE_VALUE_INTEGER]any
	A_ATTRIBUTE_VALUE_INTEGERs_mapString map[string]*A_ATTRIBUTE_VALUE_INTEGER

	// insertion point for slice of pointers maps
	A_ATTRIBUTE_VALUE_INTEGER_ATTRIBUTE_VALUE_INTEGER_reverseMap map[*ATTRIBUTE_VALUE_INTEGER]*A_ATTRIBUTE_VALUE_INTEGER

	OnAfterA_ATTRIBUTE_VALUE_INTEGERCreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_VALUE_INTEGER]
	OnAfterA_ATTRIBUTE_VALUE_INTEGERUpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_VALUE_INTEGER]
	OnAfterA_ATTRIBUTE_VALUE_INTEGERUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_VALUE_INTEGER]
	OnAfterA_ATTRIBUTE_VALUE_INTEGERDeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_VALUE_INTEGER]
	OnAfterA_ATTRIBUTE_VALUE_INTEGERReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_VALUE_INTEGER]

	A_ATTRIBUTE_VALUE_REALs           map[*A_ATTRIBUTE_VALUE_REAL]any
	A_ATTRIBUTE_VALUE_REALs_mapString map[string]*A_ATTRIBUTE_VALUE_REAL

	// insertion point for slice of pointers maps
	A_ATTRIBUTE_VALUE_REAL_ATTRIBUTE_VALUE_REAL_reverseMap map[*ATTRIBUTE_VALUE_REAL]*A_ATTRIBUTE_VALUE_REAL

	OnAfterA_ATTRIBUTE_VALUE_REALCreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_VALUE_REAL]
	OnAfterA_ATTRIBUTE_VALUE_REALUpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_VALUE_REAL]
	OnAfterA_ATTRIBUTE_VALUE_REALUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_VALUE_REAL]
	OnAfterA_ATTRIBUTE_VALUE_REALDeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_VALUE_REAL]
	OnAfterA_ATTRIBUTE_VALUE_REALReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_VALUE_REAL]

	A_ATTRIBUTE_VALUE_STRINGs           map[*A_ATTRIBUTE_VALUE_STRING]any
	A_ATTRIBUTE_VALUE_STRINGs_mapString map[string]*A_ATTRIBUTE_VALUE_STRING

	// insertion point for slice of pointers maps
	A_ATTRIBUTE_VALUE_STRING_ATTRIBUTE_VALUE_STRING_reverseMap map[*ATTRIBUTE_VALUE_STRING]*A_ATTRIBUTE_VALUE_STRING

	OnAfterA_ATTRIBUTE_VALUE_STRINGCreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_VALUE_STRING]
	OnAfterA_ATTRIBUTE_VALUE_STRINGUpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_VALUE_STRING]
	OnAfterA_ATTRIBUTE_VALUE_STRINGUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_VALUE_STRING]
	OnAfterA_ATTRIBUTE_VALUE_STRINGDeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_VALUE_STRING]
	OnAfterA_ATTRIBUTE_VALUE_STRINGReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_VALUE_STRING]

	A_ATTRIBUTE_VALUE_XHTMLs           map[*A_ATTRIBUTE_VALUE_XHTML]any
	A_ATTRIBUTE_VALUE_XHTMLs_mapString map[string]*A_ATTRIBUTE_VALUE_XHTML

	// insertion point for slice of pointers maps
	A_ATTRIBUTE_VALUE_XHTML_ATTRIBUTE_VALUE_XHTML_reverseMap map[*ATTRIBUTE_VALUE_XHTML]*A_ATTRIBUTE_VALUE_XHTML

	OnAfterA_ATTRIBUTE_VALUE_XHTMLCreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_VALUE_XHTML]
	OnAfterA_ATTRIBUTE_VALUE_XHTMLUpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_VALUE_XHTML]
	OnAfterA_ATTRIBUTE_VALUE_XHTMLUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_VALUE_XHTML]
	OnAfterA_ATTRIBUTE_VALUE_XHTMLDeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_VALUE_XHTML]
	OnAfterA_ATTRIBUTE_VALUE_XHTMLReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_VALUE_XHTML]

	A_ATTRIBUTE_VALUE_XHTML_1s           map[*A_ATTRIBUTE_VALUE_XHTML_1]any
	A_ATTRIBUTE_VALUE_XHTML_1s_mapString map[string]*A_ATTRIBUTE_VALUE_XHTML_1

	// insertion point for slice of pointers maps
	A_ATTRIBUTE_VALUE_XHTML_1_ATTRIBUTE_VALUE_BOOLEAN_reverseMap map[*ATTRIBUTE_VALUE_BOOLEAN]*A_ATTRIBUTE_VALUE_XHTML_1

	A_ATTRIBUTE_VALUE_XHTML_1_ATTRIBUTE_VALUE_DATE_reverseMap map[*ATTRIBUTE_VALUE_DATE]*A_ATTRIBUTE_VALUE_XHTML_1

	A_ATTRIBUTE_VALUE_XHTML_1_ATTRIBUTE_VALUE_ENUMERATION_reverseMap map[*ATTRIBUTE_VALUE_ENUMERATION]*A_ATTRIBUTE_VALUE_XHTML_1

	A_ATTRIBUTE_VALUE_XHTML_1_ATTRIBUTE_VALUE_INTEGER_reverseMap map[*ATTRIBUTE_VALUE_INTEGER]*A_ATTRIBUTE_VALUE_XHTML_1

	A_ATTRIBUTE_VALUE_XHTML_1_ATTRIBUTE_VALUE_REAL_reverseMap map[*ATTRIBUTE_VALUE_REAL]*A_ATTRIBUTE_VALUE_XHTML_1

	A_ATTRIBUTE_VALUE_XHTML_1_ATTRIBUTE_VALUE_STRING_reverseMap map[*ATTRIBUTE_VALUE_STRING]*A_ATTRIBUTE_VALUE_XHTML_1

	A_ATTRIBUTE_VALUE_XHTML_1_ATTRIBUTE_VALUE_XHTML_reverseMap map[*ATTRIBUTE_VALUE_XHTML]*A_ATTRIBUTE_VALUE_XHTML_1

	OnAfterA_ATTRIBUTE_VALUE_XHTML_1CreateCallback               OnAfterCreateInterface[A_ATTRIBUTE_VALUE_XHTML_1]
	OnAfterA_ATTRIBUTE_VALUE_XHTML_1UpdateCallback               OnAfterUpdateInterface[A_ATTRIBUTE_VALUE_XHTML_1]
	OnAfterA_ATTRIBUTE_VALUE_XHTML_1UpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ATTRIBUTE_VALUE_XHTML_1]
	OnAfterA_ATTRIBUTE_VALUE_XHTML_1DeleteCallback               OnAfterDeleteInterface[A_ATTRIBUTE_VALUE_XHTML_1]
	OnAfterA_ATTRIBUTE_VALUE_XHTML_1ReadCallback                 OnAfterReadInterface[A_ATTRIBUTE_VALUE_XHTML_1]

	A_CHILDRENs           map[*A_CHILDREN]any
	A_CHILDRENs_mapString map[string]*A_CHILDREN

	// insertion point for slice of pointers maps
	A_CHILDREN_SPEC_HIERARCHY_reverseMap map[*SPEC_HIERARCHY]*A_CHILDREN

	OnAfterA_CHILDRENCreateCallback               OnAfterCreateInterface[A_CHILDREN]
	OnAfterA_CHILDRENUpdateCallback               OnAfterUpdateInterface[A_CHILDREN]
	OnAfterA_CHILDRENUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_CHILDREN]
	OnAfterA_CHILDRENDeleteCallback               OnAfterDeleteInterface[A_CHILDREN]
	OnAfterA_CHILDRENReadCallback                 OnAfterReadInterface[A_CHILDREN]

	A_CORE_CONTENTs           map[*A_CORE_CONTENT]any
	A_CORE_CONTENTs_mapString map[string]*A_CORE_CONTENT

	// insertion point for slice of pointers maps
	OnAfterA_CORE_CONTENTCreateCallback               OnAfterCreateInterface[A_CORE_CONTENT]
	OnAfterA_CORE_CONTENTUpdateCallback               OnAfterUpdateInterface[A_CORE_CONTENT]
	OnAfterA_CORE_CONTENTUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_CORE_CONTENT]
	OnAfterA_CORE_CONTENTDeleteCallback               OnAfterDeleteInterface[A_CORE_CONTENT]
	OnAfterA_CORE_CONTENTReadCallback                 OnAfterReadInterface[A_CORE_CONTENT]

	A_DATATYPESs           map[*A_DATATYPES]any
	A_DATATYPESs_mapString map[string]*A_DATATYPES

	// insertion point for slice of pointers maps
	A_DATATYPES_DATATYPE_DEFINITION_BOOLEAN_reverseMap map[*DATATYPE_DEFINITION_BOOLEAN]*A_DATATYPES

	A_DATATYPES_DATATYPE_DEFINITION_DATE_reverseMap map[*DATATYPE_DEFINITION_DATE]*A_DATATYPES

	A_DATATYPES_DATATYPE_DEFINITION_ENUMERATION_reverseMap map[*DATATYPE_DEFINITION_ENUMERATION]*A_DATATYPES

	A_DATATYPES_DATATYPE_DEFINITION_INTEGER_reverseMap map[*DATATYPE_DEFINITION_INTEGER]*A_DATATYPES

	A_DATATYPES_DATATYPE_DEFINITION_REAL_reverseMap map[*DATATYPE_DEFINITION_REAL]*A_DATATYPES

	A_DATATYPES_DATATYPE_DEFINITION_STRING_reverseMap map[*DATATYPE_DEFINITION_STRING]*A_DATATYPES

	A_DATATYPES_DATATYPE_DEFINITION_XHTML_reverseMap map[*DATATYPE_DEFINITION_XHTML]*A_DATATYPES

	OnAfterA_DATATYPESCreateCallback               OnAfterCreateInterface[A_DATATYPES]
	OnAfterA_DATATYPESUpdateCallback               OnAfterUpdateInterface[A_DATATYPES]
	OnAfterA_DATATYPESUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_DATATYPES]
	OnAfterA_DATATYPESDeleteCallback               OnAfterDeleteInterface[A_DATATYPES]
	OnAfterA_DATATYPESReadCallback                 OnAfterReadInterface[A_DATATYPES]

	A_DATATYPE_DEFINITION_BOOLEAN_REFs           map[*A_DATATYPE_DEFINITION_BOOLEAN_REF]any
	A_DATATYPE_DEFINITION_BOOLEAN_REFs_mapString map[string]*A_DATATYPE_DEFINITION_BOOLEAN_REF

	// insertion point for slice of pointers maps
	OnAfterA_DATATYPE_DEFINITION_BOOLEAN_REFCreateCallback               OnAfterCreateInterface[A_DATATYPE_DEFINITION_BOOLEAN_REF]
	OnAfterA_DATATYPE_DEFINITION_BOOLEAN_REFUpdateCallback               OnAfterUpdateInterface[A_DATATYPE_DEFINITION_BOOLEAN_REF]
	OnAfterA_DATATYPE_DEFINITION_BOOLEAN_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_DATATYPE_DEFINITION_BOOLEAN_REF]
	OnAfterA_DATATYPE_DEFINITION_BOOLEAN_REFDeleteCallback               OnAfterDeleteInterface[A_DATATYPE_DEFINITION_BOOLEAN_REF]
	OnAfterA_DATATYPE_DEFINITION_BOOLEAN_REFReadCallback                 OnAfterReadInterface[A_DATATYPE_DEFINITION_BOOLEAN_REF]

	A_DATATYPE_DEFINITION_DATE_REFs           map[*A_DATATYPE_DEFINITION_DATE_REF]any
	A_DATATYPE_DEFINITION_DATE_REFs_mapString map[string]*A_DATATYPE_DEFINITION_DATE_REF

	// insertion point for slice of pointers maps
	OnAfterA_DATATYPE_DEFINITION_DATE_REFCreateCallback               OnAfterCreateInterface[A_DATATYPE_DEFINITION_DATE_REF]
	OnAfterA_DATATYPE_DEFINITION_DATE_REFUpdateCallback               OnAfterUpdateInterface[A_DATATYPE_DEFINITION_DATE_REF]
	OnAfterA_DATATYPE_DEFINITION_DATE_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_DATATYPE_DEFINITION_DATE_REF]
	OnAfterA_DATATYPE_DEFINITION_DATE_REFDeleteCallback               OnAfterDeleteInterface[A_DATATYPE_DEFINITION_DATE_REF]
	OnAfterA_DATATYPE_DEFINITION_DATE_REFReadCallback                 OnAfterReadInterface[A_DATATYPE_DEFINITION_DATE_REF]

	A_DATATYPE_DEFINITION_ENUMERATION_REFs           map[*A_DATATYPE_DEFINITION_ENUMERATION_REF]any
	A_DATATYPE_DEFINITION_ENUMERATION_REFs_mapString map[string]*A_DATATYPE_DEFINITION_ENUMERATION_REF

	// insertion point for slice of pointers maps
	OnAfterA_DATATYPE_DEFINITION_ENUMERATION_REFCreateCallback               OnAfterCreateInterface[A_DATATYPE_DEFINITION_ENUMERATION_REF]
	OnAfterA_DATATYPE_DEFINITION_ENUMERATION_REFUpdateCallback               OnAfterUpdateInterface[A_DATATYPE_DEFINITION_ENUMERATION_REF]
	OnAfterA_DATATYPE_DEFINITION_ENUMERATION_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_DATATYPE_DEFINITION_ENUMERATION_REF]
	OnAfterA_DATATYPE_DEFINITION_ENUMERATION_REFDeleteCallback               OnAfterDeleteInterface[A_DATATYPE_DEFINITION_ENUMERATION_REF]
	OnAfterA_DATATYPE_DEFINITION_ENUMERATION_REFReadCallback                 OnAfterReadInterface[A_DATATYPE_DEFINITION_ENUMERATION_REF]

	A_DATATYPE_DEFINITION_INTEGER_REFs           map[*A_DATATYPE_DEFINITION_INTEGER_REF]any
	A_DATATYPE_DEFINITION_INTEGER_REFs_mapString map[string]*A_DATATYPE_DEFINITION_INTEGER_REF

	// insertion point for slice of pointers maps
	OnAfterA_DATATYPE_DEFINITION_INTEGER_REFCreateCallback               OnAfterCreateInterface[A_DATATYPE_DEFINITION_INTEGER_REF]
	OnAfterA_DATATYPE_DEFINITION_INTEGER_REFUpdateCallback               OnAfterUpdateInterface[A_DATATYPE_DEFINITION_INTEGER_REF]
	OnAfterA_DATATYPE_DEFINITION_INTEGER_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_DATATYPE_DEFINITION_INTEGER_REF]
	OnAfterA_DATATYPE_DEFINITION_INTEGER_REFDeleteCallback               OnAfterDeleteInterface[A_DATATYPE_DEFINITION_INTEGER_REF]
	OnAfterA_DATATYPE_DEFINITION_INTEGER_REFReadCallback                 OnAfterReadInterface[A_DATATYPE_DEFINITION_INTEGER_REF]

	A_DATATYPE_DEFINITION_REAL_REFs           map[*A_DATATYPE_DEFINITION_REAL_REF]any
	A_DATATYPE_DEFINITION_REAL_REFs_mapString map[string]*A_DATATYPE_DEFINITION_REAL_REF

	// insertion point for slice of pointers maps
	OnAfterA_DATATYPE_DEFINITION_REAL_REFCreateCallback               OnAfterCreateInterface[A_DATATYPE_DEFINITION_REAL_REF]
	OnAfterA_DATATYPE_DEFINITION_REAL_REFUpdateCallback               OnAfterUpdateInterface[A_DATATYPE_DEFINITION_REAL_REF]
	OnAfterA_DATATYPE_DEFINITION_REAL_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_DATATYPE_DEFINITION_REAL_REF]
	OnAfterA_DATATYPE_DEFINITION_REAL_REFDeleteCallback               OnAfterDeleteInterface[A_DATATYPE_DEFINITION_REAL_REF]
	OnAfterA_DATATYPE_DEFINITION_REAL_REFReadCallback                 OnAfterReadInterface[A_DATATYPE_DEFINITION_REAL_REF]

	A_DATATYPE_DEFINITION_STRING_REFs           map[*A_DATATYPE_DEFINITION_STRING_REF]any
	A_DATATYPE_DEFINITION_STRING_REFs_mapString map[string]*A_DATATYPE_DEFINITION_STRING_REF

	// insertion point for slice of pointers maps
	OnAfterA_DATATYPE_DEFINITION_STRING_REFCreateCallback               OnAfterCreateInterface[A_DATATYPE_DEFINITION_STRING_REF]
	OnAfterA_DATATYPE_DEFINITION_STRING_REFUpdateCallback               OnAfterUpdateInterface[A_DATATYPE_DEFINITION_STRING_REF]
	OnAfterA_DATATYPE_DEFINITION_STRING_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_DATATYPE_DEFINITION_STRING_REF]
	OnAfterA_DATATYPE_DEFINITION_STRING_REFDeleteCallback               OnAfterDeleteInterface[A_DATATYPE_DEFINITION_STRING_REF]
	OnAfterA_DATATYPE_DEFINITION_STRING_REFReadCallback                 OnAfterReadInterface[A_DATATYPE_DEFINITION_STRING_REF]

	A_DATATYPE_DEFINITION_XHTML_REFs           map[*A_DATATYPE_DEFINITION_XHTML_REF]any
	A_DATATYPE_DEFINITION_XHTML_REFs_mapString map[string]*A_DATATYPE_DEFINITION_XHTML_REF

	// insertion point for slice of pointers maps
	OnAfterA_DATATYPE_DEFINITION_XHTML_REFCreateCallback               OnAfterCreateInterface[A_DATATYPE_DEFINITION_XHTML_REF]
	OnAfterA_DATATYPE_DEFINITION_XHTML_REFUpdateCallback               OnAfterUpdateInterface[A_DATATYPE_DEFINITION_XHTML_REF]
	OnAfterA_DATATYPE_DEFINITION_XHTML_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_DATATYPE_DEFINITION_XHTML_REF]
	OnAfterA_DATATYPE_DEFINITION_XHTML_REFDeleteCallback               OnAfterDeleteInterface[A_DATATYPE_DEFINITION_XHTML_REF]
	OnAfterA_DATATYPE_DEFINITION_XHTML_REFReadCallback                 OnAfterReadInterface[A_DATATYPE_DEFINITION_XHTML_REF]

	A_EDITABLE_ATTSs           map[*A_EDITABLE_ATTS]any
	A_EDITABLE_ATTSs_mapString map[string]*A_EDITABLE_ATTS

	// insertion point for slice of pointers maps
	OnAfterA_EDITABLE_ATTSCreateCallback               OnAfterCreateInterface[A_EDITABLE_ATTS]
	OnAfterA_EDITABLE_ATTSUpdateCallback               OnAfterUpdateInterface[A_EDITABLE_ATTS]
	OnAfterA_EDITABLE_ATTSUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_EDITABLE_ATTS]
	OnAfterA_EDITABLE_ATTSDeleteCallback               OnAfterDeleteInterface[A_EDITABLE_ATTS]
	OnAfterA_EDITABLE_ATTSReadCallback                 OnAfterReadInterface[A_EDITABLE_ATTS]

	A_ENUM_VALUE_REFs           map[*A_ENUM_VALUE_REF]any
	A_ENUM_VALUE_REFs_mapString map[string]*A_ENUM_VALUE_REF

	// insertion point for slice of pointers maps
	OnAfterA_ENUM_VALUE_REFCreateCallback               OnAfterCreateInterface[A_ENUM_VALUE_REF]
	OnAfterA_ENUM_VALUE_REFUpdateCallback               OnAfterUpdateInterface[A_ENUM_VALUE_REF]
	OnAfterA_ENUM_VALUE_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_ENUM_VALUE_REF]
	OnAfterA_ENUM_VALUE_REFDeleteCallback               OnAfterDeleteInterface[A_ENUM_VALUE_REF]
	OnAfterA_ENUM_VALUE_REFReadCallback                 OnAfterReadInterface[A_ENUM_VALUE_REF]

	A_OBJECTs           map[*A_OBJECT]any
	A_OBJECTs_mapString map[string]*A_OBJECT

	// insertion point for slice of pointers maps
	OnAfterA_OBJECTCreateCallback               OnAfterCreateInterface[A_OBJECT]
	OnAfterA_OBJECTUpdateCallback               OnAfterUpdateInterface[A_OBJECT]
	OnAfterA_OBJECTUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_OBJECT]
	OnAfterA_OBJECTDeleteCallback               OnAfterDeleteInterface[A_OBJECT]
	OnAfterA_OBJECTReadCallback                 OnAfterReadInterface[A_OBJECT]

	A_PROPERTIESs           map[*A_PROPERTIES]any
	A_PROPERTIESs_mapString map[string]*A_PROPERTIES

	// insertion point for slice of pointers maps
	OnAfterA_PROPERTIESCreateCallback               OnAfterCreateInterface[A_PROPERTIES]
	OnAfterA_PROPERTIESUpdateCallback               OnAfterUpdateInterface[A_PROPERTIES]
	OnAfterA_PROPERTIESUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_PROPERTIES]
	OnAfterA_PROPERTIESDeleteCallback               OnAfterDeleteInterface[A_PROPERTIES]
	OnAfterA_PROPERTIESReadCallback                 OnAfterReadInterface[A_PROPERTIES]

	A_RELATION_GROUP_TYPE_REFs           map[*A_RELATION_GROUP_TYPE_REF]any
	A_RELATION_GROUP_TYPE_REFs_mapString map[string]*A_RELATION_GROUP_TYPE_REF

	// insertion point for slice of pointers maps
	OnAfterA_RELATION_GROUP_TYPE_REFCreateCallback               OnAfterCreateInterface[A_RELATION_GROUP_TYPE_REF]
	OnAfterA_RELATION_GROUP_TYPE_REFUpdateCallback               OnAfterUpdateInterface[A_RELATION_GROUP_TYPE_REF]
	OnAfterA_RELATION_GROUP_TYPE_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_RELATION_GROUP_TYPE_REF]
	OnAfterA_RELATION_GROUP_TYPE_REFDeleteCallback               OnAfterDeleteInterface[A_RELATION_GROUP_TYPE_REF]
	OnAfterA_RELATION_GROUP_TYPE_REFReadCallback                 OnAfterReadInterface[A_RELATION_GROUP_TYPE_REF]

	A_SOURCE_1s           map[*A_SOURCE_1]any
	A_SOURCE_1s_mapString map[string]*A_SOURCE_1

	// insertion point for slice of pointers maps
	OnAfterA_SOURCE_1CreateCallback               OnAfterCreateInterface[A_SOURCE_1]
	OnAfterA_SOURCE_1UpdateCallback               OnAfterUpdateInterface[A_SOURCE_1]
	OnAfterA_SOURCE_1UpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_SOURCE_1]
	OnAfterA_SOURCE_1DeleteCallback               OnAfterDeleteInterface[A_SOURCE_1]
	OnAfterA_SOURCE_1ReadCallback                 OnAfterReadInterface[A_SOURCE_1]

	A_SOURCE_SPECIFICATION_1s           map[*A_SOURCE_SPECIFICATION_1]any
	A_SOURCE_SPECIFICATION_1s_mapString map[string]*A_SOURCE_SPECIFICATION_1

	// insertion point for slice of pointers maps
	OnAfterA_SOURCE_SPECIFICATION_1CreateCallback               OnAfterCreateInterface[A_SOURCE_SPECIFICATION_1]
	OnAfterA_SOURCE_SPECIFICATION_1UpdateCallback               OnAfterUpdateInterface[A_SOURCE_SPECIFICATION_1]
	OnAfterA_SOURCE_SPECIFICATION_1UpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_SOURCE_SPECIFICATION_1]
	OnAfterA_SOURCE_SPECIFICATION_1DeleteCallback               OnAfterDeleteInterface[A_SOURCE_SPECIFICATION_1]
	OnAfterA_SOURCE_SPECIFICATION_1ReadCallback                 OnAfterReadInterface[A_SOURCE_SPECIFICATION_1]

	A_SPECIFICATIONSs           map[*A_SPECIFICATIONS]any
	A_SPECIFICATIONSs_mapString map[string]*A_SPECIFICATIONS

	// insertion point for slice of pointers maps
	A_SPECIFICATIONS_SPECIFICATION_reverseMap map[*SPECIFICATION]*A_SPECIFICATIONS

	OnAfterA_SPECIFICATIONSCreateCallback               OnAfterCreateInterface[A_SPECIFICATIONS]
	OnAfterA_SPECIFICATIONSUpdateCallback               OnAfterUpdateInterface[A_SPECIFICATIONS]
	OnAfterA_SPECIFICATIONSUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_SPECIFICATIONS]
	OnAfterA_SPECIFICATIONSDeleteCallback               OnAfterDeleteInterface[A_SPECIFICATIONS]
	OnAfterA_SPECIFICATIONSReadCallback                 OnAfterReadInterface[A_SPECIFICATIONS]

	A_SPECIFICATION_TYPE_REFs           map[*A_SPECIFICATION_TYPE_REF]any
	A_SPECIFICATION_TYPE_REFs_mapString map[string]*A_SPECIFICATION_TYPE_REF

	// insertion point for slice of pointers maps
	OnAfterA_SPECIFICATION_TYPE_REFCreateCallback               OnAfterCreateInterface[A_SPECIFICATION_TYPE_REF]
	OnAfterA_SPECIFICATION_TYPE_REFUpdateCallback               OnAfterUpdateInterface[A_SPECIFICATION_TYPE_REF]
	OnAfterA_SPECIFICATION_TYPE_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_SPECIFICATION_TYPE_REF]
	OnAfterA_SPECIFICATION_TYPE_REFDeleteCallback               OnAfterDeleteInterface[A_SPECIFICATION_TYPE_REF]
	OnAfterA_SPECIFICATION_TYPE_REFReadCallback                 OnAfterReadInterface[A_SPECIFICATION_TYPE_REF]

	A_SPECIFIED_VALUESs           map[*A_SPECIFIED_VALUES]any
	A_SPECIFIED_VALUESs_mapString map[string]*A_SPECIFIED_VALUES

	// insertion point for slice of pointers maps
	A_SPECIFIED_VALUES_ENUM_VALUE_reverseMap map[*ENUM_VALUE]*A_SPECIFIED_VALUES

	OnAfterA_SPECIFIED_VALUESCreateCallback               OnAfterCreateInterface[A_SPECIFIED_VALUES]
	OnAfterA_SPECIFIED_VALUESUpdateCallback               OnAfterUpdateInterface[A_SPECIFIED_VALUES]
	OnAfterA_SPECIFIED_VALUESUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_SPECIFIED_VALUES]
	OnAfterA_SPECIFIED_VALUESDeleteCallback               OnAfterDeleteInterface[A_SPECIFIED_VALUES]
	OnAfterA_SPECIFIED_VALUESReadCallback                 OnAfterReadInterface[A_SPECIFIED_VALUES]

	A_SPEC_ATTRIBUTESs           map[*A_SPEC_ATTRIBUTES]any
	A_SPEC_ATTRIBUTESs_mapString map[string]*A_SPEC_ATTRIBUTES

	// insertion point for slice of pointers maps
	A_SPEC_ATTRIBUTES_ATTRIBUTE_DEFINITION_BOOLEAN_reverseMap map[*ATTRIBUTE_DEFINITION_BOOLEAN]*A_SPEC_ATTRIBUTES

	A_SPEC_ATTRIBUTES_ATTRIBUTE_DEFINITION_DATE_reverseMap map[*ATTRIBUTE_DEFINITION_DATE]*A_SPEC_ATTRIBUTES

	A_SPEC_ATTRIBUTES_ATTRIBUTE_DEFINITION_ENUMERATION_reverseMap map[*ATTRIBUTE_DEFINITION_ENUMERATION]*A_SPEC_ATTRIBUTES

	A_SPEC_ATTRIBUTES_ATTRIBUTE_DEFINITION_INTEGER_reverseMap map[*ATTRIBUTE_DEFINITION_INTEGER]*A_SPEC_ATTRIBUTES

	A_SPEC_ATTRIBUTES_ATTRIBUTE_DEFINITION_REAL_reverseMap map[*ATTRIBUTE_DEFINITION_REAL]*A_SPEC_ATTRIBUTES

	A_SPEC_ATTRIBUTES_ATTRIBUTE_DEFINITION_STRING_reverseMap map[*ATTRIBUTE_DEFINITION_STRING]*A_SPEC_ATTRIBUTES

	A_SPEC_ATTRIBUTES_ATTRIBUTE_DEFINITION_XHTML_reverseMap map[*ATTRIBUTE_DEFINITION_XHTML]*A_SPEC_ATTRIBUTES

	OnAfterA_SPEC_ATTRIBUTESCreateCallback               OnAfterCreateInterface[A_SPEC_ATTRIBUTES]
	OnAfterA_SPEC_ATTRIBUTESUpdateCallback               OnAfterUpdateInterface[A_SPEC_ATTRIBUTES]
	OnAfterA_SPEC_ATTRIBUTESUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_SPEC_ATTRIBUTES]
	OnAfterA_SPEC_ATTRIBUTESDeleteCallback               OnAfterDeleteInterface[A_SPEC_ATTRIBUTES]
	OnAfterA_SPEC_ATTRIBUTESReadCallback                 OnAfterReadInterface[A_SPEC_ATTRIBUTES]

	A_SPEC_OBJECTSs           map[*A_SPEC_OBJECTS]any
	A_SPEC_OBJECTSs_mapString map[string]*A_SPEC_OBJECTS

	// insertion point for slice of pointers maps
	A_SPEC_OBJECTS_SPEC_OBJECT_reverseMap map[*SPEC_OBJECT]*A_SPEC_OBJECTS

	OnAfterA_SPEC_OBJECTSCreateCallback               OnAfterCreateInterface[A_SPEC_OBJECTS]
	OnAfterA_SPEC_OBJECTSUpdateCallback               OnAfterUpdateInterface[A_SPEC_OBJECTS]
	OnAfterA_SPEC_OBJECTSUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_SPEC_OBJECTS]
	OnAfterA_SPEC_OBJECTSDeleteCallback               OnAfterDeleteInterface[A_SPEC_OBJECTS]
	OnAfterA_SPEC_OBJECTSReadCallback                 OnAfterReadInterface[A_SPEC_OBJECTS]

	A_SPEC_OBJECT_TYPE_REFs           map[*A_SPEC_OBJECT_TYPE_REF]any
	A_SPEC_OBJECT_TYPE_REFs_mapString map[string]*A_SPEC_OBJECT_TYPE_REF

	// insertion point for slice of pointers maps
	OnAfterA_SPEC_OBJECT_TYPE_REFCreateCallback               OnAfterCreateInterface[A_SPEC_OBJECT_TYPE_REF]
	OnAfterA_SPEC_OBJECT_TYPE_REFUpdateCallback               OnAfterUpdateInterface[A_SPEC_OBJECT_TYPE_REF]
	OnAfterA_SPEC_OBJECT_TYPE_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_SPEC_OBJECT_TYPE_REF]
	OnAfterA_SPEC_OBJECT_TYPE_REFDeleteCallback               OnAfterDeleteInterface[A_SPEC_OBJECT_TYPE_REF]
	OnAfterA_SPEC_OBJECT_TYPE_REFReadCallback                 OnAfterReadInterface[A_SPEC_OBJECT_TYPE_REF]

	A_SPEC_RELATIONSs           map[*A_SPEC_RELATIONS]any
	A_SPEC_RELATIONSs_mapString map[string]*A_SPEC_RELATIONS

	// insertion point for slice of pointers maps
	A_SPEC_RELATIONS_SPEC_RELATION_reverseMap map[*SPEC_RELATION]*A_SPEC_RELATIONS

	OnAfterA_SPEC_RELATIONSCreateCallback               OnAfterCreateInterface[A_SPEC_RELATIONS]
	OnAfterA_SPEC_RELATIONSUpdateCallback               OnAfterUpdateInterface[A_SPEC_RELATIONS]
	OnAfterA_SPEC_RELATIONSUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_SPEC_RELATIONS]
	OnAfterA_SPEC_RELATIONSDeleteCallback               OnAfterDeleteInterface[A_SPEC_RELATIONS]
	OnAfterA_SPEC_RELATIONSReadCallback                 OnAfterReadInterface[A_SPEC_RELATIONS]

	A_SPEC_RELATION_GROUPSs           map[*A_SPEC_RELATION_GROUPS]any
	A_SPEC_RELATION_GROUPSs_mapString map[string]*A_SPEC_RELATION_GROUPS

	// insertion point for slice of pointers maps
	A_SPEC_RELATION_GROUPS_RELATION_GROUP_reverseMap map[*RELATION_GROUP]*A_SPEC_RELATION_GROUPS

	OnAfterA_SPEC_RELATION_GROUPSCreateCallback               OnAfterCreateInterface[A_SPEC_RELATION_GROUPS]
	OnAfterA_SPEC_RELATION_GROUPSUpdateCallback               OnAfterUpdateInterface[A_SPEC_RELATION_GROUPS]
	OnAfterA_SPEC_RELATION_GROUPSUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_SPEC_RELATION_GROUPS]
	OnAfterA_SPEC_RELATION_GROUPSDeleteCallback               OnAfterDeleteInterface[A_SPEC_RELATION_GROUPS]
	OnAfterA_SPEC_RELATION_GROUPSReadCallback                 OnAfterReadInterface[A_SPEC_RELATION_GROUPS]

	A_SPEC_RELATION_REFs           map[*A_SPEC_RELATION_REF]any
	A_SPEC_RELATION_REFs_mapString map[string]*A_SPEC_RELATION_REF

	// insertion point for slice of pointers maps
	OnAfterA_SPEC_RELATION_REFCreateCallback               OnAfterCreateInterface[A_SPEC_RELATION_REF]
	OnAfterA_SPEC_RELATION_REFUpdateCallback               OnAfterUpdateInterface[A_SPEC_RELATION_REF]
	OnAfterA_SPEC_RELATION_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_SPEC_RELATION_REF]
	OnAfterA_SPEC_RELATION_REFDeleteCallback               OnAfterDeleteInterface[A_SPEC_RELATION_REF]
	OnAfterA_SPEC_RELATION_REFReadCallback                 OnAfterReadInterface[A_SPEC_RELATION_REF]

	A_SPEC_RELATION_TYPE_REFs           map[*A_SPEC_RELATION_TYPE_REF]any
	A_SPEC_RELATION_TYPE_REFs_mapString map[string]*A_SPEC_RELATION_TYPE_REF

	// insertion point for slice of pointers maps
	OnAfterA_SPEC_RELATION_TYPE_REFCreateCallback               OnAfterCreateInterface[A_SPEC_RELATION_TYPE_REF]
	OnAfterA_SPEC_RELATION_TYPE_REFUpdateCallback               OnAfterUpdateInterface[A_SPEC_RELATION_TYPE_REF]
	OnAfterA_SPEC_RELATION_TYPE_REFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_SPEC_RELATION_TYPE_REF]
	OnAfterA_SPEC_RELATION_TYPE_REFDeleteCallback               OnAfterDeleteInterface[A_SPEC_RELATION_TYPE_REF]
	OnAfterA_SPEC_RELATION_TYPE_REFReadCallback                 OnAfterReadInterface[A_SPEC_RELATION_TYPE_REF]

	A_SPEC_TYPESs           map[*A_SPEC_TYPES]any
	A_SPEC_TYPESs_mapString map[string]*A_SPEC_TYPES

	// insertion point for slice of pointers maps
	A_SPEC_TYPES_RELATION_GROUP_TYPE_reverseMap map[*RELATION_GROUP_TYPE]*A_SPEC_TYPES

	A_SPEC_TYPES_SPEC_OBJECT_TYPE_reverseMap map[*SPEC_OBJECT_TYPE]*A_SPEC_TYPES

	A_SPEC_TYPES_SPEC_RELATION_TYPE_reverseMap map[*SPEC_RELATION_TYPE]*A_SPEC_TYPES

	A_SPEC_TYPES_SPECIFICATION_TYPE_reverseMap map[*SPECIFICATION_TYPE]*A_SPEC_TYPES

	OnAfterA_SPEC_TYPESCreateCallback               OnAfterCreateInterface[A_SPEC_TYPES]
	OnAfterA_SPEC_TYPESUpdateCallback               OnAfterUpdateInterface[A_SPEC_TYPES]
	OnAfterA_SPEC_TYPESUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_SPEC_TYPES]
	OnAfterA_SPEC_TYPESDeleteCallback               OnAfterDeleteInterface[A_SPEC_TYPES]
	OnAfterA_SPEC_TYPESReadCallback                 OnAfterReadInterface[A_SPEC_TYPES]

	A_THE_HEADERs           map[*A_THE_HEADER]any
	A_THE_HEADERs_mapString map[string]*A_THE_HEADER

	// insertion point for slice of pointers maps
	OnAfterA_THE_HEADERCreateCallback               OnAfterCreateInterface[A_THE_HEADER]
	OnAfterA_THE_HEADERUpdateCallback               OnAfterUpdateInterface[A_THE_HEADER]
	OnAfterA_THE_HEADERUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_THE_HEADER]
	OnAfterA_THE_HEADERDeleteCallback               OnAfterDeleteInterface[A_THE_HEADER]
	OnAfterA_THE_HEADERReadCallback                 OnAfterReadInterface[A_THE_HEADER]

	A_TOOL_EXTENSIONSs           map[*A_TOOL_EXTENSIONS]any
	A_TOOL_EXTENSIONSs_mapString map[string]*A_TOOL_EXTENSIONS

	// insertion point for slice of pointers maps
	A_TOOL_EXTENSIONS_REQ_IF_TOOL_EXTENSION_reverseMap map[*REQ_IF_TOOL_EXTENSION]*A_TOOL_EXTENSIONS

	OnAfterA_TOOL_EXTENSIONSCreateCallback               OnAfterCreateInterface[A_TOOL_EXTENSIONS]
	OnAfterA_TOOL_EXTENSIONSUpdateCallback               OnAfterUpdateInterface[A_TOOL_EXTENSIONS]
	OnAfterA_TOOL_EXTENSIONSUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[A_TOOL_EXTENSIONS]
	OnAfterA_TOOL_EXTENSIONSDeleteCallback               OnAfterDeleteInterface[A_TOOL_EXTENSIONS]
	OnAfterA_TOOL_EXTENSIONSReadCallback                 OnAfterReadInterface[A_TOOL_EXTENSIONS]

	DATATYPE_DEFINITION_BOOLEANs           map[*DATATYPE_DEFINITION_BOOLEAN]any
	DATATYPE_DEFINITION_BOOLEANs_mapString map[string]*DATATYPE_DEFINITION_BOOLEAN

	// insertion point for slice of pointers maps
	OnAfterDATATYPE_DEFINITION_BOOLEANCreateCallback               OnAfterCreateInterface[DATATYPE_DEFINITION_BOOLEAN]
	OnAfterDATATYPE_DEFINITION_BOOLEANUpdateCallback               OnAfterUpdateInterface[DATATYPE_DEFINITION_BOOLEAN]
	OnAfterDATATYPE_DEFINITION_BOOLEANUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[DATATYPE_DEFINITION_BOOLEAN]
	OnAfterDATATYPE_DEFINITION_BOOLEANDeleteCallback               OnAfterDeleteInterface[DATATYPE_DEFINITION_BOOLEAN]
	OnAfterDATATYPE_DEFINITION_BOOLEANReadCallback                 OnAfterReadInterface[DATATYPE_DEFINITION_BOOLEAN]

	DATATYPE_DEFINITION_DATEs           map[*DATATYPE_DEFINITION_DATE]any
	DATATYPE_DEFINITION_DATEs_mapString map[string]*DATATYPE_DEFINITION_DATE

	// insertion point for slice of pointers maps
	OnAfterDATATYPE_DEFINITION_DATECreateCallback               OnAfterCreateInterface[DATATYPE_DEFINITION_DATE]
	OnAfterDATATYPE_DEFINITION_DATEUpdateCallback               OnAfterUpdateInterface[DATATYPE_DEFINITION_DATE]
	OnAfterDATATYPE_DEFINITION_DATEUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[DATATYPE_DEFINITION_DATE]
	OnAfterDATATYPE_DEFINITION_DATEDeleteCallback               OnAfterDeleteInterface[DATATYPE_DEFINITION_DATE]
	OnAfterDATATYPE_DEFINITION_DATEReadCallback                 OnAfterReadInterface[DATATYPE_DEFINITION_DATE]

	DATATYPE_DEFINITION_ENUMERATIONs           map[*DATATYPE_DEFINITION_ENUMERATION]any
	DATATYPE_DEFINITION_ENUMERATIONs_mapString map[string]*DATATYPE_DEFINITION_ENUMERATION

	// insertion point for slice of pointers maps
	OnAfterDATATYPE_DEFINITION_ENUMERATIONCreateCallback               OnAfterCreateInterface[DATATYPE_DEFINITION_ENUMERATION]
	OnAfterDATATYPE_DEFINITION_ENUMERATIONUpdateCallback               OnAfterUpdateInterface[DATATYPE_DEFINITION_ENUMERATION]
	OnAfterDATATYPE_DEFINITION_ENUMERATIONUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[DATATYPE_DEFINITION_ENUMERATION]
	OnAfterDATATYPE_DEFINITION_ENUMERATIONDeleteCallback               OnAfterDeleteInterface[DATATYPE_DEFINITION_ENUMERATION]
	OnAfterDATATYPE_DEFINITION_ENUMERATIONReadCallback                 OnAfterReadInterface[DATATYPE_DEFINITION_ENUMERATION]

	DATATYPE_DEFINITION_INTEGERs           map[*DATATYPE_DEFINITION_INTEGER]any
	DATATYPE_DEFINITION_INTEGERs_mapString map[string]*DATATYPE_DEFINITION_INTEGER

	// insertion point for slice of pointers maps
	OnAfterDATATYPE_DEFINITION_INTEGERCreateCallback               OnAfterCreateInterface[DATATYPE_DEFINITION_INTEGER]
	OnAfterDATATYPE_DEFINITION_INTEGERUpdateCallback               OnAfterUpdateInterface[DATATYPE_DEFINITION_INTEGER]
	OnAfterDATATYPE_DEFINITION_INTEGERUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[DATATYPE_DEFINITION_INTEGER]
	OnAfterDATATYPE_DEFINITION_INTEGERDeleteCallback               OnAfterDeleteInterface[DATATYPE_DEFINITION_INTEGER]
	OnAfterDATATYPE_DEFINITION_INTEGERReadCallback                 OnAfterReadInterface[DATATYPE_DEFINITION_INTEGER]

	DATATYPE_DEFINITION_REALs           map[*DATATYPE_DEFINITION_REAL]any
	DATATYPE_DEFINITION_REALs_mapString map[string]*DATATYPE_DEFINITION_REAL

	// insertion point for slice of pointers maps
	OnAfterDATATYPE_DEFINITION_REALCreateCallback               OnAfterCreateInterface[DATATYPE_DEFINITION_REAL]
	OnAfterDATATYPE_DEFINITION_REALUpdateCallback               OnAfterUpdateInterface[DATATYPE_DEFINITION_REAL]
	OnAfterDATATYPE_DEFINITION_REALUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[DATATYPE_DEFINITION_REAL]
	OnAfterDATATYPE_DEFINITION_REALDeleteCallback               OnAfterDeleteInterface[DATATYPE_DEFINITION_REAL]
	OnAfterDATATYPE_DEFINITION_REALReadCallback                 OnAfterReadInterface[DATATYPE_DEFINITION_REAL]

	DATATYPE_DEFINITION_STRINGs           map[*DATATYPE_DEFINITION_STRING]any
	DATATYPE_DEFINITION_STRINGs_mapString map[string]*DATATYPE_DEFINITION_STRING

	// insertion point for slice of pointers maps
	OnAfterDATATYPE_DEFINITION_STRINGCreateCallback               OnAfterCreateInterface[DATATYPE_DEFINITION_STRING]
	OnAfterDATATYPE_DEFINITION_STRINGUpdateCallback               OnAfterUpdateInterface[DATATYPE_DEFINITION_STRING]
	OnAfterDATATYPE_DEFINITION_STRINGUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[DATATYPE_DEFINITION_STRING]
	OnAfterDATATYPE_DEFINITION_STRINGDeleteCallback               OnAfterDeleteInterface[DATATYPE_DEFINITION_STRING]
	OnAfterDATATYPE_DEFINITION_STRINGReadCallback                 OnAfterReadInterface[DATATYPE_DEFINITION_STRING]

	DATATYPE_DEFINITION_XHTMLs           map[*DATATYPE_DEFINITION_XHTML]any
	DATATYPE_DEFINITION_XHTMLs_mapString map[string]*DATATYPE_DEFINITION_XHTML

	// insertion point for slice of pointers maps
	OnAfterDATATYPE_DEFINITION_XHTMLCreateCallback               OnAfterCreateInterface[DATATYPE_DEFINITION_XHTML]
	OnAfterDATATYPE_DEFINITION_XHTMLUpdateCallback               OnAfterUpdateInterface[DATATYPE_DEFINITION_XHTML]
	OnAfterDATATYPE_DEFINITION_XHTMLUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[DATATYPE_DEFINITION_XHTML]
	OnAfterDATATYPE_DEFINITION_XHTMLDeleteCallback               OnAfterDeleteInterface[DATATYPE_DEFINITION_XHTML]
	OnAfterDATATYPE_DEFINITION_XHTMLReadCallback                 OnAfterReadInterface[DATATYPE_DEFINITION_XHTML]

	EMBEDDED_VALUEs           map[*EMBEDDED_VALUE]any
	EMBEDDED_VALUEs_mapString map[string]*EMBEDDED_VALUE

	// insertion point for slice of pointers maps
	OnAfterEMBEDDED_VALUECreateCallback               OnAfterCreateInterface[EMBEDDED_VALUE]
	OnAfterEMBEDDED_VALUEUpdateCallback               OnAfterUpdateInterface[EMBEDDED_VALUE]
	OnAfterEMBEDDED_VALUEUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[EMBEDDED_VALUE]
	OnAfterEMBEDDED_VALUEDeleteCallback               OnAfterDeleteInterface[EMBEDDED_VALUE]
	OnAfterEMBEDDED_VALUEReadCallback                 OnAfterReadInterface[EMBEDDED_VALUE]

	ENUM_VALUEs           map[*ENUM_VALUE]any
	ENUM_VALUEs_mapString map[string]*ENUM_VALUE

	// insertion point for slice of pointers maps
	OnAfterENUM_VALUECreateCallback               OnAfterCreateInterface[ENUM_VALUE]
	OnAfterENUM_VALUEUpdateCallback               OnAfterUpdateInterface[ENUM_VALUE]
	OnAfterENUM_VALUEUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[ENUM_VALUE]
	OnAfterENUM_VALUEDeleteCallback               OnAfterDeleteInterface[ENUM_VALUE]
	OnAfterENUM_VALUEReadCallback                 OnAfterReadInterface[ENUM_VALUE]

	EmbeddedJpgImages           map[*EmbeddedJpgImage]any
	EmbeddedJpgImages_mapString map[string]*EmbeddedJpgImage

	// insertion point for slice of pointers maps
	OnAfterEmbeddedJpgImageCreateCallback               OnAfterCreateInterface[EmbeddedJpgImage]
	OnAfterEmbeddedJpgImageUpdateCallback               OnAfterUpdateInterface[EmbeddedJpgImage]
	OnAfterEmbeddedJpgImageUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[EmbeddedJpgImage]
	OnAfterEmbeddedJpgImageDeleteCallback               OnAfterDeleteInterface[EmbeddedJpgImage]
	OnAfterEmbeddedJpgImageReadCallback                 OnAfterReadInterface[EmbeddedJpgImage]

	EmbeddedPngImages           map[*EmbeddedPngImage]any
	EmbeddedPngImages_mapString map[string]*EmbeddedPngImage

	// insertion point for slice of pointers maps
	OnAfterEmbeddedPngImageCreateCallback               OnAfterCreateInterface[EmbeddedPngImage]
	OnAfterEmbeddedPngImageUpdateCallback               OnAfterUpdateInterface[EmbeddedPngImage]
	OnAfterEmbeddedPngImageUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[EmbeddedPngImage]
	OnAfterEmbeddedPngImageDeleteCallback               OnAfterDeleteInterface[EmbeddedPngImage]
	OnAfterEmbeddedPngImageReadCallback                 OnAfterReadInterface[EmbeddedPngImage]

	EmbeddedSvgImages           map[*EmbeddedSvgImage]any
	EmbeddedSvgImages_mapString map[string]*EmbeddedSvgImage

	// insertion point for slice of pointers maps
	OnAfterEmbeddedSvgImageCreateCallback               OnAfterCreateInterface[EmbeddedSvgImage]
	OnAfterEmbeddedSvgImageUpdateCallback               OnAfterUpdateInterface[EmbeddedSvgImage]
	OnAfterEmbeddedSvgImageUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[EmbeddedSvgImage]
	OnAfterEmbeddedSvgImageDeleteCallback               OnAfterDeleteInterface[EmbeddedSvgImage]
	OnAfterEmbeddedSvgImageReadCallback                 OnAfterReadInterface[EmbeddedSvgImage]

	Kills           map[*Kill]any
	Kills_mapString map[string]*Kill

	// insertion point for slice of pointers maps
	OnAfterKillCreateCallback               OnAfterCreateInterface[Kill]
	OnAfterKillUpdateCallback               OnAfterUpdateInterface[Kill]
	OnAfterKillUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Kill]
	OnAfterKillDeleteCallback               OnAfterDeleteInterface[Kill]
	OnAfterKillReadCallback                 OnAfterReadInterface[Kill]

	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntrys           map[*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry]any
	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry]

	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntrys           map[*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry]any
	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry]

	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntrys           map[*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry]any
	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry]

	Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntrys           map[*Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry]any
	Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry]

	Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntrys           map[*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry]any
	Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry]

	Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntrys           map[*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry]any
	Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry]

	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntrys           map[*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry]any
	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry]

	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntrys           map[*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry]any
	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry]

	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntrys           map[*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry]any
	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry]

	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntrys           map[*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry]any
	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry]

	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntrys           map[*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry]any
	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry]

	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntrys           map[*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry]any
	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry]

	Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntrys           map[*Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry]any
	Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry]

	Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntrys           map[*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry]any
	Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry]

	Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntrys           map[*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry]any
	Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry]

	Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntrys           map[*Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry]any
	Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry]

	Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntrys           map[*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry]any
	Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry]

	Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntrys           map[*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry]any
	Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry]

	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntrys           map[*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry]any
	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry]

	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntrys           map[*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry]any
	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry]

	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntrys           map[*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry]any
	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntrys_mapString map[string]*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry

	// insertion point for slice of pointers maps
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntryCreateCallback               OnAfterCreateInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntryUpdateCallback               OnAfterUpdateInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntryDeleteCallback               OnAfterDeleteInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry]
	OnAfterMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntryReadCallback                 OnAfterReadInterface[Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry]

	Map_SPECIFICATION_Nodes_expandedEntrys           map[*Map_SPECIFICATION_Nodes_expandedEntry]any
	Map_SPECIFICATION_Nodes_expandedEntrys_mapString map[string]*Map_SPECIFICATION_Nodes_expandedEntry

	// insertion point for slice of pointers maps
	OnAfterMap_SPECIFICATION_Nodes_expandedEntryCreateCallback               OnAfterCreateInterface[Map_SPECIFICATION_Nodes_expandedEntry]
	OnAfterMap_SPECIFICATION_Nodes_expandedEntryUpdateCallback               OnAfterUpdateInterface[Map_SPECIFICATION_Nodes_expandedEntry]
	OnAfterMap_SPECIFICATION_Nodes_expandedEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_SPECIFICATION_Nodes_expandedEntry]
	OnAfterMap_SPECIFICATION_Nodes_expandedEntryDeleteCallback               OnAfterDeleteInterface[Map_SPECIFICATION_Nodes_expandedEntry]
	OnAfterMap_SPECIFICATION_Nodes_expandedEntryReadCallback                 OnAfterReadInterface[Map_SPECIFICATION_Nodes_expandedEntry]

	Map_SPEC_OBJECT_TYPE_isNodeExpandedEntrys           map[*Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry]any
	Map_SPEC_OBJECT_TYPE_isNodeExpandedEntrys_mapString map[string]*Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry

	// insertion point for slice of pointers maps
	OnAfterMap_SPEC_OBJECT_TYPE_isNodeExpandedEntryCreateCallback               OnAfterCreateInterface[Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry]
	OnAfterMap_SPEC_OBJECT_TYPE_isNodeExpandedEntryUpdateCallback               OnAfterUpdateInterface[Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry]
	OnAfterMap_SPEC_OBJECT_TYPE_isNodeExpandedEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry]
	OnAfterMap_SPEC_OBJECT_TYPE_isNodeExpandedEntryDeleteCallback               OnAfterDeleteInterface[Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry]
	OnAfterMap_SPEC_OBJECT_TYPE_isNodeExpandedEntryReadCallback                 OnAfterReadInterface[Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry]

	Map_SPEC_OBJECT_TYPE_showIdentifierEntrys           map[*Map_SPEC_OBJECT_TYPE_showIdentifierEntry]any
	Map_SPEC_OBJECT_TYPE_showIdentifierEntrys_mapString map[string]*Map_SPEC_OBJECT_TYPE_showIdentifierEntry

	// insertion point for slice of pointers maps
	OnAfterMap_SPEC_OBJECT_TYPE_showIdentifierEntryCreateCallback               OnAfterCreateInterface[Map_SPEC_OBJECT_TYPE_showIdentifierEntry]
	OnAfterMap_SPEC_OBJECT_TYPE_showIdentifierEntryUpdateCallback               OnAfterUpdateInterface[Map_SPEC_OBJECT_TYPE_showIdentifierEntry]
	OnAfterMap_SPEC_OBJECT_TYPE_showIdentifierEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_SPEC_OBJECT_TYPE_showIdentifierEntry]
	OnAfterMap_SPEC_OBJECT_TYPE_showIdentifierEntryDeleteCallback               OnAfterDeleteInterface[Map_SPEC_OBJECT_TYPE_showIdentifierEntry]
	OnAfterMap_SPEC_OBJECT_TYPE_showIdentifierEntryReadCallback                 OnAfterReadInterface[Map_SPEC_OBJECT_TYPE_showIdentifierEntry]

	Map_SPEC_OBJECT_TYPE_showNameEntrys           map[*Map_SPEC_OBJECT_TYPE_showNameEntry]any
	Map_SPEC_OBJECT_TYPE_showNameEntrys_mapString map[string]*Map_SPEC_OBJECT_TYPE_showNameEntry

	// insertion point for slice of pointers maps
	OnAfterMap_SPEC_OBJECT_TYPE_showNameEntryCreateCallback               OnAfterCreateInterface[Map_SPEC_OBJECT_TYPE_showNameEntry]
	OnAfterMap_SPEC_OBJECT_TYPE_showNameEntryUpdateCallback               OnAfterUpdateInterface[Map_SPEC_OBJECT_TYPE_showNameEntry]
	OnAfterMap_SPEC_OBJECT_TYPE_showNameEntryUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[Map_SPEC_OBJECT_TYPE_showNameEntry]
	OnAfterMap_SPEC_OBJECT_TYPE_showNameEntryDeleteCallback               OnAfterDeleteInterface[Map_SPEC_OBJECT_TYPE_showNameEntry]
	OnAfterMap_SPEC_OBJECT_TYPE_showNameEntryReadCallback                 OnAfterReadInterface[Map_SPEC_OBJECT_TYPE_showNameEntry]

	RELATION_GROUPs           map[*RELATION_GROUP]any
	RELATION_GROUPs_mapString map[string]*RELATION_GROUP

	// insertion point for slice of pointers maps
	OnAfterRELATION_GROUPCreateCallback               OnAfterCreateInterface[RELATION_GROUP]
	OnAfterRELATION_GROUPUpdateCallback               OnAfterUpdateInterface[RELATION_GROUP]
	OnAfterRELATION_GROUPUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[RELATION_GROUP]
	OnAfterRELATION_GROUPDeleteCallback               OnAfterDeleteInterface[RELATION_GROUP]
	OnAfterRELATION_GROUPReadCallback                 OnAfterReadInterface[RELATION_GROUP]

	RELATION_GROUP_TYPEs           map[*RELATION_GROUP_TYPE]any
	RELATION_GROUP_TYPEs_mapString map[string]*RELATION_GROUP_TYPE

	// insertion point for slice of pointers maps
	OnAfterRELATION_GROUP_TYPECreateCallback               OnAfterCreateInterface[RELATION_GROUP_TYPE]
	OnAfterRELATION_GROUP_TYPEUpdateCallback               OnAfterUpdateInterface[RELATION_GROUP_TYPE]
	OnAfterRELATION_GROUP_TYPEUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[RELATION_GROUP_TYPE]
	OnAfterRELATION_GROUP_TYPEDeleteCallback               OnAfterDeleteInterface[RELATION_GROUP_TYPE]
	OnAfterRELATION_GROUP_TYPEReadCallback                 OnAfterReadInterface[RELATION_GROUP_TYPE]

	REQ_IFs           map[*REQ_IF]any
	REQ_IFs_mapString map[string]*REQ_IF

	// insertion point for slice of pointers maps
	OnAfterREQ_IFCreateCallback               OnAfterCreateInterface[REQ_IF]
	OnAfterREQ_IFUpdateCallback               OnAfterUpdateInterface[REQ_IF]
	OnAfterREQ_IFUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[REQ_IF]
	OnAfterREQ_IFDeleteCallback               OnAfterDeleteInterface[REQ_IF]
	OnAfterREQ_IFReadCallback                 OnAfterReadInterface[REQ_IF]

	REQ_IF_CONTENTs           map[*REQ_IF_CONTENT]any
	REQ_IF_CONTENTs_mapString map[string]*REQ_IF_CONTENT

	// insertion point for slice of pointers maps
	OnAfterREQ_IF_CONTENTCreateCallback               OnAfterCreateInterface[REQ_IF_CONTENT]
	OnAfterREQ_IF_CONTENTUpdateCallback               OnAfterUpdateInterface[REQ_IF_CONTENT]
	OnAfterREQ_IF_CONTENTUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[REQ_IF_CONTENT]
	OnAfterREQ_IF_CONTENTDeleteCallback               OnAfterDeleteInterface[REQ_IF_CONTENT]
	OnAfterREQ_IF_CONTENTReadCallback                 OnAfterReadInterface[REQ_IF_CONTENT]

	REQ_IF_HEADERs           map[*REQ_IF_HEADER]any
	REQ_IF_HEADERs_mapString map[string]*REQ_IF_HEADER

	// insertion point for slice of pointers maps
	OnAfterREQ_IF_HEADERCreateCallback               OnAfterCreateInterface[REQ_IF_HEADER]
	OnAfterREQ_IF_HEADERUpdateCallback               OnAfterUpdateInterface[REQ_IF_HEADER]
	OnAfterREQ_IF_HEADERUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[REQ_IF_HEADER]
	OnAfterREQ_IF_HEADERDeleteCallback               OnAfterDeleteInterface[REQ_IF_HEADER]
	OnAfterREQ_IF_HEADERReadCallback                 OnAfterReadInterface[REQ_IF_HEADER]

	REQ_IF_TOOL_EXTENSIONs           map[*REQ_IF_TOOL_EXTENSION]any
	REQ_IF_TOOL_EXTENSIONs_mapString map[string]*REQ_IF_TOOL_EXTENSION

	// insertion point for slice of pointers maps
	OnAfterREQ_IF_TOOL_EXTENSIONCreateCallback               OnAfterCreateInterface[REQ_IF_TOOL_EXTENSION]
	OnAfterREQ_IF_TOOL_EXTENSIONUpdateCallback               OnAfterUpdateInterface[REQ_IF_TOOL_EXTENSION]
	OnAfterREQ_IF_TOOL_EXTENSIONUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[REQ_IF_TOOL_EXTENSION]
	OnAfterREQ_IF_TOOL_EXTENSIONDeleteCallback               OnAfterDeleteInterface[REQ_IF_TOOL_EXTENSION]
	OnAfterREQ_IF_TOOL_EXTENSIONReadCallback                 OnAfterReadInterface[REQ_IF_TOOL_EXTENSION]

	RenderingConfigurations           map[*RenderingConfiguration]any
	RenderingConfigurations_mapString map[string]*RenderingConfiguration

	// insertion point for slice of pointers maps
	RenderingConfiguration_Map_SPEC_OBJECT_TYPE_isNodeExpandedEntries_reverseMap map[*Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry]*RenderingConfiguration

	RenderingConfiguration_Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntries_reverseMap map[*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry]*RenderingConfiguration

	RenderingConfiguration_Map_SPECIFICATION_Nodes_expandedEntries_reverseMap map[*Map_SPECIFICATION_Nodes_expandedEntry]*RenderingConfiguration

	RenderingConfiguration_Map_SPEC_OBJECT_TYPE_showIdentifierEntries_reverseMap map[*Map_SPEC_OBJECT_TYPE_showIdentifierEntry]*RenderingConfiguration

	RenderingConfiguration_Map_SPEC_OBJECT_TYPE_showNameEntries_reverseMap map[*Map_SPEC_OBJECT_TYPE_showNameEntry]*RenderingConfiguration

	OnAfterRenderingConfigurationCreateCallback               OnAfterCreateInterface[RenderingConfiguration]
	OnAfterRenderingConfigurationUpdateCallback               OnAfterUpdateInterface[RenderingConfiguration]
	OnAfterRenderingConfigurationUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[RenderingConfiguration]
	OnAfterRenderingConfigurationDeleteCallback               OnAfterDeleteInterface[RenderingConfiguration]
	OnAfterRenderingConfigurationReadCallback                 OnAfterReadInterface[RenderingConfiguration]

	SPECIFICATIONs           map[*SPECIFICATION]any
	SPECIFICATIONs_mapString map[string]*SPECIFICATION

	// insertion point for slice of pointers maps
	OnAfterSPECIFICATIONCreateCallback               OnAfterCreateInterface[SPECIFICATION]
	OnAfterSPECIFICATIONUpdateCallback               OnAfterUpdateInterface[SPECIFICATION]
	OnAfterSPECIFICATIONUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[SPECIFICATION]
	OnAfterSPECIFICATIONDeleteCallback               OnAfterDeleteInterface[SPECIFICATION]
	OnAfterSPECIFICATIONReadCallback                 OnAfterReadInterface[SPECIFICATION]

	SPECIFICATION_TYPEs           map[*SPECIFICATION_TYPE]any
	SPECIFICATION_TYPEs_mapString map[string]*SPECIFICATION_TYPE

	// insertion point for slice of pointers maps
	OnAfterSPECIFICATION_TYPECreateCallback               OnAfterCreateInterface[SPECIFICATION_TYPE]
	OnAfterSPECIFICATION_TYPEUpdateCallback               OnAfterUpdateInterface[SPECIFICATION_TYPE]
	OnAfterSPECIFICATION_TYPEUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[SPECIFICATION_TYPE]
	OnAfterSPECIFICATION_TYPEDeleteCallback               OnAfterDeleteInterface[SPECIFICATION_TYPE]
	OnAfterSPECIFICATION_TYPEReadCallback                 OnAfterReadInterface[SPECIFICATION_TYPE]

	SPEC_HIERARCHYs           map[*SPEC_HIERARCHY]any
	SPEC_HIERARCHYs_mapString map[string]*SPEC_HIERARCHY

	// insertion point for slice of pointers maps
	OnAfterSPEC_HIERARCHYCreateCallback               OnAfterCreateInterface[SPEC_HIERARCHY]
	OnAfterSPEC_HIERARCHYUpdateCallback               OnAfterUpdateInterface[SPEC_HIERARCHY]
	OnAfterSPEC_HIERARCHYUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[SPEC_HIERARCHY]
	OnAfterSPEC_HIERARCHYDeleteCallback               OnAfterDeleteInterface[SPEC_HIERARCHY]
	OnAfterSPEC_HIERARCHYReadCallback                 OnAfterReadInterface[SPEC_HIERARCHY]

	SPEC_OBJECTs           map[*SPEC_OBJECT]any
	SPEC_OBJECTs_mapString map[string]*SPEC_OBJECT

	// insertion point for slice of pointers maps
	OnAfterSPEC_OBJECTCreateCallback               OnAfterCreateInterface[SPEC_OBJECT]
	OnAfterSPEC_OBJECTUpdateCallback               OnAfterUpdateInterface[SPEC_OBJECT]
	OnAfterSPEC_OBJECTUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[SPEC_OBJECT]
	OnAfterSPEC_OBJECTDeleteCallback               OnAfterDeleteInterface[SPEC_OBJECT]
	OnAfterSPEC_OBJECTReadCallback                 OnAfterReadInterface[SPEC_OBJECT]

	SPEC_OBJECT_TYPEs           map[*SPEC_OBJECT_TYPE]any
	SPEC_OBJECT_TYPEs_mapString map[string]*SPEC_OBJECT_TYPE

	// insertion point for slice of pointers maps
	OnAfterSPEC_OBJECT_TYPECreateCallback               OnAfterCreateInterface[SPEC_OBJECT_TYPE]
	OnAfterSPEC_OBJECT_TYPEUpdateCallback               OnAfterUpdateInterface[SPEC_OBJECT_TYPE]
	OnAfterSPEC_OBJECT_TYPEUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[SPEC_OBJECT_TYPE]
	OnAfterSPEC_OBJECT_TYPEDeleteCallback               OnAfterDeleteInterface[SPEC_OBJECT_TYPE]
	OnAfterSPEC_OBJECT_TYPEReadCallback                 OnAfterReadInterface[SPEC_OBJECT_TYPE]

	SPEC_RELATIONs           map[*SPEC_RELATION]any
	SPEC_RELATIONs_mapString map[string]*SPEC_RELATION

	// insertion point for slice of pointers maps
	OnAfterSPEC_RELATIONCreateCallback               OnAfterCreateInterface[SPEC_RELATION]
	OnAfterSPEC_RELATIONUpdateCallback               OnAfterUpdateInterface[SPEC_RELATION]
	OnAfterSPEC_RELATIONUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[SPEC_RELATION]
	OnAfterSPEC_RELATIONDeleteCallback               OnAfterDeleteInterface[SPEC_RELATION]
	OnAfterSPEC_RELATIONReadCallback                 OnAfterReadInterface[SPEC_RELATION]

	SPEC_RELATION_TYPEs           map[*SPEC_RELATION_TYPE]any
	SPEC_RELATION_TYPEs_mapString map[string]*SPEC_RELATION_TYPE

	// insertion point for slice of pointers maps
	OnAfterSPEC_RELATION_TYPECreateCallback               OnAfterCreateInterface[SPEC_RELATION_TYPE]
	OnAfterSPEC_RELATION_TYPEUpdateCallback               OnAfterUpdateInterface[SPEC_RELATION_TYPE]
	OnAfterSPEC_RELATION_TYPEUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[SPEC_RELATION_TYPE]
	OnAfterSPEC_RELATION_TYPEDeleteCallback               OnAfterDeleteInterface[SPEC_RELATION_TYPE]
	OnAfterSPEC_RELATION_TYPEReadCallback                 OnAfterReadInterface[SPEC_RELATION_TYPE]

	StaticWebSites           map[*StaticWebSite]any
	StaticWebSites_mapString map[string]*StaticWebSite

	// insertion point for slice of pointers maps
	StaticWebSite_Chapters_reverseMap map[*StaticWebSiteChapter]*StaticWebSite

	OnAfterStaticWebSiteCreateCallback               OnAfterCreateInterface[StaticWebSite]
	OnAfterStaticWebSiteUpdateCallback               OnAfterUpdateInterface[StaticWebSite]
	OnAfterStaticWebSiteUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[StaticWebSite]
	OnAfterStaticWebSiteDeleteCallback               OnAfterDeleteInterface[StaticWebSite]
	OnAfterStaticWebSiteReadCallback                 OnAfterReadInterface[StaticWebSite]

	StaticWebSiteChapters           map[*StaticWebSiteChapter]any
	StaticWebSiteChapters_mapString map[string]*StaticWebSiteChapter

	// insertion point for slice of pointers maps
	StaticWebSiteChapter_Paragraphs_reverseMap map[*StaticWebSiteParagraph]*StaticWebSiteChapter

	OnAfterStaticWebSiteChapterCreateCallback               OnAfterCreateInterface[StaticWebSiteChapter]
	OnAfterStaticWebSiteChapterUpdateCallback               OnAfterUpdateInterface[StaticWebSiteChapter]
	OnAfterStaticWebSiteChapterUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[StaticWebSiteChapter]
	OnAfterStaticWebSiteChapterDeleteCallback               OnAfterDeleteInterface[StaticWebSiteChapter]
	OnAfterStaticWebSiteChapterReadCallback                 OnAfterReadInterface[StaticWebSiteChapter]

	StaticWebSiteGeneratedImages           map[*StaticWebSiteGeneratedImage]any
	StaticWebSiteGeneratedImages_mapString map[string]*StaticWebSiteGeneratedImage

	// insertion point for slice of pointers maps
	OnAfterStaticWebSiteGeneratedImageCreateCallback               OnAfterCreateInterface[StaticWebSiteGeneratedImage]
	OnAfterStaticWebSiteGeneratedImageUpdateCallback               OnAfterUpdateInterface[StaticWebSiteGeneratedImage]
	OnAfterStaticWebSiteGeneratedImageUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[StaticWebSiteGeneratedImage]
	OnAfterStaticWebSiteGeneratedImageDeleteCallback               OnAfterDeleteInterface[StaticWebSiteGeneratedImage]
	OnAfterStaticWebSiteGeneratedImageReadCallback                 OnAfterReadInterface[StaticWebSiteGeneratedImage]

	StaticWebSiteImages           map[*StaticWebSiteImage]any
	StaticWebSiteImages_mapString map[string]*StaticWebSiteImage

	// insertion point for slice of pointers maps
	OnAfterStaticWebSiteImageCreateCallback               OnAfterCreateInterface[StaticWebSiteImage]
	OnAfterStaticWebSiteImageUpdateCallback               OnAfterUpdateInterface[StaticWebSiteImage]
	OnAfterStaticWebSiteImageUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[StaticWebSiteImage]
	OnAfterStaticWebSiteImageDeleteCallback               OnAfterDeleteInterface[StaticWebSiteImage]
	OnAfterStaticWebSiteImageReadCallback                 OnAfterReadInterface[StaticWebSiteImage]

	StaticWebSiteParagraphs           map[*StaticWebSiteParagraph]any
	StaticWebSiteParagraphs_mapString map[string]*StaticWebSiteParagraph

	// insertion point for slice of pointers maps
	OnAfterStaticWebSiteParagraphCreateCallback               OnAfterCreateInterface[StaticWebSiteParagraph]
	OnAfterStaticWebSiteParagraphUpdateCallback               OnAfterUpdateInterface[StaticWebSiteParagraph]
	OnAfterStaticWebSiteParagraphUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[StaticWebSiteParagraph]
	OnAfterStaticWebSiteParagraphDeleteCallback               OnAfterDeleteInterface[StaticWebSiteParagraph]
	OnAfterStaticWebSiteParagraphReadCallback                 OnAfterReadInterface[StaticWebSiteParagraph]

	XHTML_CONTENTs           map[*XHTML_CONTENT]any
	XHTML_CONTENTs_mapString map[string]*XHTML_CONTENT

	// insertion point for slice of pointers maps
	OnAfterXHTML_CONTENTCreateCallback               OnAfterCreateInterface[XHTML_CONTENT]
	OnAfterXHTML_CONTENTUpdateCallback               OnAfterUpdateInterface[XHTML_CONTENT]
	OnAfterXHTML_CONTENTUpdateWithMouseEventCallback OnAfterUpdateWithMouseEventInterface[XHTML_CONTENT]
	OnAfterXHTML_CONTENTDeleteCallback               OnAfterDeleteInterface[XHTML_CONTENT]
	OnAfterXHTML_CONTENTReadCallback                 OnAfterReadInterface[XHTML_CONTENT]

	AllModelsStructCreateCallback AllModelsStructCreateInterface

	AllModelsStructDeleteCallback AllModelsStructDeleteInterface

	BackRepo BackRepoInterface

	// if set will be called before each commit to the back repo
	OnInitCommitCallback          OnInitCommitInterface
	OnInitCommitFromFrontCallback OnInitCommitInterface
	OnInitCommitFromBackCallback  OnInitCommitInterface

	// store the number of instance per gongstruct
	Map_GongStructName_InstancesNb map[string]int

	// store meta package import
	MetaPackageImportPath  string
	MetaPackageImportAlias string

	// to be removed after fix of [issue](https://github.com/golang/go/issues/57559)
	// map to enable docLink renaming when an identifier is renamed
	Map_DocLink_Renaming map[string]GONG__Identifier

	// store the stage order of each instance in order to
	// preserve this order when serializing them
	// insertion point for order fields declaration
	ALTERNATIVE_IDOrder            uint
	ALTERNATIVE_IDMap_Staged_Order map[*ALTERNATIVE_ID]uint

	ATTRIBUTE_DEFINITION_BOOLEANOrder            uint
	ATTRIBUTE_DEFINITION_BOOLEANMap_Staged_Order map[*ATTRIBUTE_DEFINITION_BOOLEAN]uint

	ATTRIBUTE_DEFINITION_DATEOrder            uint
	ATTRIBUTE_DEFINITION_DATEMap_Staged_Order map[*ATTRIBUTE_DEFINITION_DATE]uint

	ATTRIBUTE_DEFINITION_ENUMERATIONOrder            uint
	ATTRIBUTE_DEFINITION_ENUMERATIONMap_Staged_Order map[*ATTRIBUTE_DEFINITION_ENUMERATION]uint

	ATTRIBUTE_DEFINITION_INTEGEROrder            uint
	ATTRIBUTE_DEFINITION_INTEGERMap_Staged_Order map[*ATTRIBUTE_DEFINITION_INTEGER]uint

	ATTRIBUTE_DEFINITION_REALOrder            uint
	ATTRIBUTE_DEFINITION_REALMap_Staged_Order map[*ATTRIBUTE_DEFINITION_REAL]uint

	ATTRIBUTE_DEFINITION_STRINGOrder            uint
	ATTRIBUTE_DEFINITION_STRINGMap_Staged_Order map[*ATTRIBUTE_DEFINITION_STRING]uint

	ATTRIBUTE_DEFINITION_XHTMLOrder            uint
	ATTRIBUTE_DEFINITION_XHTMLMap_Staged_Order map[*ATTRIBUTE_DEFINITION_XHTML]uint

	ATTRIBUTE_VALUE_BOOLEANOrder            uint
	ATTRIBUTE_VALUE_BOOLEANMap_Staged_Order map[*ATTRIBUTE_VALUE_BOOLEAN]uint

	ATTRIBUTE_VALUE_DATEOrder            uint
	ATTRIBUTE_VALUE_DATEMap_Staged_Order map[*ATTRIBUTE_VALUE_DATE]uint

	ATTRIBUTE_VALUE_ENUMERATIONOrder            uint
	ATTRIBUTE_VALUE_ENUMERATIONMap_Staged_Order map[*ATTRIBUTE_VALUE_ENUMERATION]uint

	ATTRIBUTE_VALUE_INTEGEROrder            uint
	ATTRIBUTE_VALUE_INTEGERMap_Staged_Order map[*ATTRIBUTE_VALUE_INTEGER]uint

	ATTRIBUTE_VALUE_REALOrder            uint
	ATTRIBUTE_VALUE_REALMap_Staged_Order map[*ATTRIBUTE_VALUE_REAL]uint

	ATTRIBUTE_VALUE_STRINGOrder            uint
	ATTRIBUTE_VALUE_STRINGMap_Staged_Order map[*ATTRIBUTE_VALUE_STRING]uint

	ATTRIBUTE_VALUE_XHTMLOrder            uint
	ATTRIBUTE_VALUE_XHTMLMap_Staged_Order map[*ATTRIBUTE_VALUE_XHTML]uint

	A_ALTERNATIVE_IDOrder            uint
	A_ALTERNATIVE_IDMap_Staged_Order map[*A_ALTERNATIVE_ID]uint

	A_ATTRIBUTE_DEFINITION_BOOLEAN_REFOrder            uint
	A_ATTRIBUTE_DEFINITION_BOOLEAN_REFMap_Staged_Order map[*A_ATTRIBUTE_DEFINITION_BOOLEAN_REF]uint

	A_ATTRIBUTE_DEFINITION_DATE_REFOrder            uint
	A_ATTRIBUTE_DEFINITION_DATE_REFMap_Staged_Order map[*A_ATTRIBUTE_DEFINITION_DATE_REF]uint

	A_ATTRIBUTE_DEFINITION_ENUMERATION_REFOrder            uint
	A_ATTRIBUTE_DEFINITION_ENUMERATION_REFMap_Staged_Order map[*A_ATTRIBUTE_DEFINITION_ENUMERATION_REF]uint

	A_ATTRIBUTE_DEFINITION_INTEGER_REFOrder            uint
	A_ATTRIBUTE_DEFINITION_INTEGER_REFMap_Staged_Order map[*A_ATTRIBUTE_DEFINITION_INTEGER_REF]uint

	A_ATTRIBUTE_DEFINITION_REAL_REFOrder            uint
	A_ATTRIBUTE_DEFINITION_REAL_REFMap_Staged_Order map[*A_ATTRIBUTE_DEFINITION_REAL_REF]uint

	A_ATTRIBUTE_DEFINITION_STRING_REFOrder            uint
	A_ATTRIBUTE_DEFINITION_STRING_REFMap_Staged_Order map[*A_ATTRIBUTE_DEFINITION_STRING_REF]uint

	A_ATTRIBUTE_DEFINITION_XHTML_REFOrder            uint
	A_ATTRIBUTE_DEFINITION_XHTML_REFMap_Staged_Order map[*A_ATTRIBUTE_DEFINITION_XHTML_REF]uint

	A_ATTRIBUTE_VALUE_BOOLEANOrder            uint
	A_ATTRIBUTE_VALUE_BOOLEANMap_Staged_Order map[*A_ATTRIBUTE_VALUE_BOOLEAN]uint

	A_ATTRIBUTE_VALUE_DATEOrder            uint
	A_ATTRIBUTE_VALUE_DATEMap_Staged_Order map[*A_ATTRIBUTE_VALUE_DATE]uint

	A_ATTRIBUTE_VALUE_ENUMERATIONOrder            uint
	A_ATTRIBUTE_VALUE_ENUMERATIONMap_Staged_Order map[*A_ATTRIBUTE_VALUE_ENUMERATION]uint

	A_ATTRIBUTE_VALUE_INTEGEROrder            uint
	A_ATTRIBUTE_VALUE_INTEGERMap_Staged_Order map[*A_ATTRIBUTE_VALUE_INTEGER]uint

	A_ATTRIBUTE_VALUE_REALOrder            uint
	A_ATTRIBUTE_VALUE_REALMap_Staged_Order map[*A_ATTRIBUTE_VALUE_REAL]uint

	A_ATTRIBUTE_VALUE_STRINGOrder            uint
	A_ATTRIBUTE_VALUE_STRINGMap_Staged_Order map[*A_ATTRIBUTE_VALUE_STRING]uint

	A_ATTRIBUTE_VALUE_XHTMLOrder            uint
	A_ATTRIBUTE_VALUE_XHTMLMap_Staged_Order map[*A_ATTRIBUTE_VALUE_XHTML]uint

	A_ATTRIBUTE_VALUE_XHTML_1Order            uint
	A_ATTRIBUTE_VALUE_XHTML_1Map_Staged_Order map[*A_ATTRIBUTE_VALUE_XHTML_1]uint

	A_CHILDRENOrder            uint
	A_CHILDRENMap_Staged_Order map[*A_CHILDREN]uint

	A_CORE_CONTENTOrder            uint
	A_CORE_CONTENTMap_Staged_Order map[*A_CORE_CONTENT]uint

	A_DATATYPESOrder            uint
	A_DATATYPESMap_Staged_Order map[*A_DATATYPES]uint

	A_DATATYPE_DEFINITION_BOOLEAN_REFOrder            uint
	A_DATATYPE_DEFINITION_BOOLEAN_REFMap_Staged_Order map[*A_DATATYPE_DEFINITION_BOOLEAN_REF]uint

	A_DATATYPE_DEFINITION_DATE_REFOrder            uint
	A_DATATYPE_DEFINITION_DATE_REFMap_Staged_Order map[*A_DATATYPE_DEFINITION_DATE_REF]uint

	A_DATATYPE_DEFINITION_ENUMERATION_REFOrder            uint
	A_DATATYPE_DEFINITION_ENUMERATION_REFMap_Staged_Order map[*A_DATATYPE_DEFINITION_ENUMERATION_REF]uint

	A_DATATYPE_DEFINITION_INTEGER_REFOrder            uint
	A_DATATYPE_DEFINITION_INTEGER_REFMap_Staged_Order map[*A_DATATYPE_DEFINITION_INTEGER_REF]uint

	A_DATATYPE_DEFINITION_REAL_REFOrder            uint
	A_DATATYPE_DEFINITION_REAL_REFMap_Staged_Order map[*A_DATATYPE_DEFINITION_REAL_REF]uint

	A_DATATYPE_DEFINITION_STRING_REFOrder            uint
	A_DATATYPE_DEFINITION_STRING_REFMap_Staged_Order map[*A_DATATYPE_DEFINITION_STRING_REF]uint

	A_DATATYPE_DEFINITION_XHTML_REFOrder            uint
	A_DATATYPE_DEFINITION_XHTML_REFMap_Staged_Order map[*A_DATATYPE_DEFINITION_XHTML_REF]uint

	A_EDITABLE_ATTSOrder            uint
	A_EDITABLE_ATTSMap_Staged_Order map[*A_EDITABLE_ATTS]uint

	A_ENUM_VALUE_REFOrder            uint
	A_ENUM_VALUE_REFMap_Staged_Order map[*A_ENUM_VALUE_REF]uint

	A_OBJECTOrder            uint
	A_OBJECTMap_Staged_Order map[*A_OBJECT]uint

	A_PROPERTIESOrder            uint
	A_PROPERTIESMap_Staged_Order map[*A_PROPERTIES]uint

	A_RELATION_GROUP_TYPE_REFOrder            uint
	A_RELATION_GROUP_TYPE_REFMap_Staged_Order map[*A_RELATION_GROUP_TYPE_REF]uint

	A_SOURCE_1Order            uint
	A_SOURCE_1Map_Staged_Order map[*A_SOURCE_1]uint

	A_SOURCE_SPECIFICATION_1Order            uint
	A_SOURCE_SPECIFICATION_1Map_Staged_Order map[*A_SOURCE_SPECIFICATION_1]uint

	A_SPECIFICATIONSOrder            uint
	A_SPECIFICATIONSMap_Staged_Order map[*A_SPECIFICATIONS]uint

	A_SPECIFICATION_TYPE_REFOrder            uint
	A_SPECIFICATION_TYPE_REFMap_Staged_Order map[*A_SPECIFICATION_TYPE_REF]uint

	A_SPECIFIED_VALUESOrder            uint
	A_SPECIFIED_VALUESMap_Staged_Order map[*A_SPECIFIED_VALUES]uint

	A_SPEC_ATTRIBUTESOrder            uint
	A_SPEC_ATTRIBUTESMap_Staged_Order map[*A_SPEC_ATTRIBUTES]uint

	A_SPEC_OBJECTSOrder            uint
	A_SPEC_OBJECTSMap_Staged_Order map[*A_SPEC_OBJECTS]uint

	A_SPEC_OBJECT_TYPE_REFOrder            uint
	A_SPEC_OBJECT_TYPE_REFMap_Staged_Order map[*A_SPEC_OBJECT_TYPE_REF]uint

	A_SPEC_RELATIONSOrder            uint
	A_SPEC_RELATIONSMap_Staged_Order map[*A_SPEC_RELATIONS]uint

	A_SPEC_RELATION_GROUPSOrder            uint
	A_SPEC_RELATION_GROUPSMap_Staged_Order map[*A_SPEC_RELATION_GROUPS]uint

	A_SPEC_RELATION_REFOrder            uint
	A_SPEC_RELATION_REFMap_Staged_Order map[*A_SPEC_RELATION_REF]uint

	A_SPEC_RELATION_TYPE_REFOrder            uint
	A_SPEC_RELATION_TYPE_REFMap_Staged_Order map[*A_SPEC_RELATION_TYPE_REF]uint

	A_SPEC_TYPESOrder            uint
	A_SPEC_TYPESMap_Staged_Order map[*A_SPEC_TYPES]uint

	A_THE_HEADEROrder            uint
	A_THE_HEADERMap_Staged_Order map[*A_THE_HEADER]uint

	A_TOOL_EXTENSIONSOrder            uint
	A_TOOL_EXTENSIONSMap_Staged_Order map[*A_TOOL_EXTENSIONS]uint

	DATATYPE_DEFINITION_BOOLEANOrder            uint
	DATATYPE_DEFINITION_BOOLEANMap_Staged_Order map[*DATATYPE_DEFINITION_BOOLEAN]uint

	DATATYPE_DEFINITION_DATEOrder            uint
	DATATYPE_DEFINITION_DATEMap_Staged_Order map[*DATATYPE_DEFINITION_DATE]uint

	DATATYPE_DEFINITION_ENUMERATIONOrder            uint
	DATATYPE_DEFINITION_ENUMERATIONMap_Staged_Order map[*DATATYPE_DEFINITION_ENUMERATION]uint

	DATATYPE_DEFINITION_INTEGEROrder            uint
	DATATYPE_DEFINITION_INTEGERMap_Staged_Order map[*DATATYPE_DEFINITION_INTEGER]uint

	DATATYPE_DEFINITION_REALOrder            uint
	DATATYPE_DEFINITION_REALMap_Staged_Order map[*DATATYPE_DEFINITION_REAL]uint

	DATATYPE_DEFINITION_STRINGOrder            uint
	DATATYPE_DEFINITION_STRINGMap_Staged_Order map[*DATATYPE_DEFINITION_STRING]uint

	DATATYPE_DEFINITION_XHTMLOrder            uint
	DATATYPE_DEFINITION_XHTMLMap_Staged_Order map[*DATATYPE_DEFINITION_XHTML]uint

	EMBEDDED_VALUEOrder            uint
	EMBEDDED_VALUEMap_Staged_Order map[*EMBEDDED_VALUE]uint

	ENUM_VALUEOrder            uint
	ENUM_VALUEMap_Staged_Order map[*ENUM_VALUE]uint

	EmbeddedJpgImageOrder            uint
	EmbeddedJpgImageMap_Staged_Order map[*EmbeddedJpgImage]uint

	EmbeddedPngImageOrder            uint
	EmbeddedPngImageMap_Staged_Order map[*EmbeddedPngImage]uint

	EmbeddedSvgImageOrder            uint
	EmbeddedSvgImageMap_Staged_Order map[*EmbeddedSvgImage]uint

	KillOrder            uint
	KillMap_Staged_Order map[*Kill]uint

	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry]uint

	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry]uint

	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry]uint

	Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry]uint

	Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry]uint

	Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry]uint

	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry]uint

	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry]uint

	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry]uint

	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry]uint

	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry]uint

	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry]uint

	Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry]uint

	Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry]uint

	Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry]uint

	Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry]uint

	Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry]uint

	Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry]uint

	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry]uint

	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry]uint

	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntryOrder            uint
	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntryMap_Staged_Order map[*Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry]uint

	Map_SPECIFICATION_Nodes_expandedEntryOrder            uint
	Map_SPECIFICATION_Nodes_expandedEntryMap_Staged_Order map[*Map_SPECIFICATION_Nodes_expandedEntry]uint

	Map_SPEC_OBJECT_TYPE_isNodeExpandedEntryOrder            uint
	Map_SPEC_OBJECT_TYPE_isNodeExpandedEntryMap_Staged_Order map[*Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry]uint

	Map_SPEC_OBJECT_TYPE_showIdentifierEntryOrder            uint
	Map_SPEC_OBJECT_TYPE_showIdentifierEntryMap_Staged_Order map[*Map_SPEC_OBJECT_TYPE_showIdentifierEntry]uint

	Map_SPEC_OBJECT_TYPE_showNameEntryOrder            uint
	Map_SPEC_OBJECT_TYPE_showNameEntryMap_Staged_Order map[*Map_SPEC_OBJECT_TYPE_showNameEntry]uint

	RELATION_GROUPOrder            uint
	RELATION_GROUPMap_Staged_Order map[*RELATION_GROUP]uint

	RELATION_GROUP_TYPEOrder            uint
	RELATION_GROUP_TYPEMap_Staged_Order map[*RELATION_GROUP_TYPE]uint

	REQ_IFOrder            uint
	REQ_IFMap_Staged_Order map[*REQ_IF]uint

	REQ_IF_CONTENTOrder            uint
	REQ_IF_CONTENTMap_Staged_Order map[*REQ_IF_CONTENT]uint

	REQ_IF_HEADEROrder            uint
	REQ_IF_HEADERMap_Staged_Order map[*REQ_IF_HEADER]uint

	REQ_IF_TOOL_EXTENSIONOrder            uint
	REQ_IF_TOOL_EXTENSIONMap_Staged_Order map[*REQ_IF_TOOL_EXTENSION]uint

	RenderingConfigurationOrder            uint
	RenderingConfigurationMap_Staged_Order map[*RenderingConfiguration]uint

	SPECIFICATIONOrder            uint
	SPECIFICATIONMap_Staged_Order map[*SPECIFICATION]uint

	SPECIFICATION_TYPEOrder            uint
	SPECIFICATION_TYPEMap_Staged_Order map[*SPECIFICATION_TYPE]uint

	SPEC_HIERARCHYOrder            uint
	SPEC_HIERARCHYMap_Staged_Order map[*SPEC_HIERARCHY]uint

	SPEC_OBJECTOrder            uint
	SPEC_OBJECTMap_Staged_Order map[*SPEC_OBJECT]uint

	SPEC_OBJECT_TYPEOrder            uint
	SPEC_OBJECT_TYPEMap_Staged_Order map[*SPEC_OBJECT_TYPE]uint

	SPEC_RELATIONOrder            uint
	SPEC_RELATIONMap_Staged_Order map[*SPEC_RELATION]uint

	SPEC_RELATION_TYPEOrder            uint
	SPEC_RELATION_TYPEMap_Staged_Order map[*SPEC_RELATION_TYPE]uint

	StaticWebSiteOrder            uint
	StaticWebSiteMap_Staged_Order map[*StaticWebSite]uint

	StaticWebSiteChapterOrder            uint
	StaticWebSiteChapterMap_Staged_Order map[*StaticWebSiteChapter]uint

	StaticWebSiteGeneratedImageOrder            uint
	StaticWebSiteGeneratedImageMap_Staged_Order map[*StaticWebSiteGeneratedImage]uint

	StaticWebSiteImageOrder            uint
	StaticWebSiteImageMap_Staged_Order map[*StaticWebSiteImage]uint

	StaticWebSiteParagraphOrder            uint
	StaticWebSiteParagraphMap_Staged_Order map[*StaticWebSiteParagraph]uint

	XHTML_CONTENTOrder            uint
	XHTML_CONTENTMap_Staged_Order map[*XHTML_CONTENT]uint

	NamedStructs []*NamedStruct
	// contains filtered or unexported fields
}

Stage enables storage of staged instances swagger:ignore

func NewStage

func NewStage(name string) (stage *Stage)

func (*Stage) Backup

func (stage *Stage) Backup(dirPath string)

backup generates backup files in the dirPath

func (*Stage) BackupXL

func (stage *Stage) BackupXL(dirPath string)

backup generates backup files in the dirPath

func (*Stage) Checkout

func (stage *Stage) Checkout()

func (*Stage) Commit

func (stage *Stage) Commit()

func (*Stage) CommitWithSuspendedCallbacks

func (stage *Stage) CommitWithSuspendedCallbacks()

func (*Stage) ComputeReverseMaps

func (stage *Stage) ComputeReverseMaps()

ComputeReverseMaps computes the reverse map, for all intances, for all slice to pointers field Its complexity is in O(n)O(p) where p is the number of pointers

func (*Stage) GetCommitId

func (stage *Stage) GetCommitId() uint

func (*Stage) GetCommitTS

func (stage *Stage) GetCommitTS() time.Time

func (*Stage) GetDigramsEmbededDir

func (stage *Stage) GetDigramsEmbededDir() embed.FS

func (*Stage) GetMap_GongStructName_InstancesNb

func (stage *Stage) GetMap_GongStructName_InstancesNb() map[string]int

func (*Stage) GetModelsEmbededDir

func (stage *Stage) GetModelsEmbededDir() embed.FS

func (*Stage) GetName

func (stage *Stage) GetName() string

func (*Stage) GetNamedStructNamesByOrder

func (stage *Stage) GetNamedStructNamesByOrder(namedStructName string) (res []string)

func (*Stage) GetNamedStructsNames

func (stage *Stage) GetNamedStructsNames() (res []string)

GetNamedStructs implements models.ProbebStage.

func (*Stage) GetProbeFormStageName

func (stage *Stage) GetProbeFormStageName() string

func (*Stage) GetProbeSplitStageName

func (stage *Stage) GetProbeSplitStageName() string

func (*Stage) GetProbeTableStageName

func (stage *Stage) GetProbeTableStageName() string

func (*Stage) GetProbeTreeSidebarStageName

func (stage *Stage) GetProbeTreeSidebarStageName() string

func (*Stage) GetType

func (stage *Stage) GetType() string

func (*Stage) IsStagedALTERNATIVE_ID

func (stage *Stage) IsStagedALTERNATIVE_ID(alternative_id *ALTERNATIVE_ID) (ok bool)

insertion point for stage per struct

func (*Stage) IsStagedATTRIBUTE_DEFINITION_BOOLEAN

func (stage *Stage) IsStagedATTRIBUTE_DEFINITION_BOOLEAN(attribute_definition_boolean *ATTRIBUTE_DEFINITION_BOOLEAN) (ok bool)

func (*Stage) IsStagedATTRIBUTE_DEFINITION_DATE

func (stage *Stage) IsStagedATTRIBUTE_DEFINITION_DATE(attribute_definition_date *ATTRIBUTE_DEFINITION_DATE) (ok bool)

func (*Stage) IsStagedATTRIBUTE_DEFINITION_ENUMERATION

func (stage *Stage) IsStagedATTRIBUTE_DEFINITION_ENUMERATION(attribute_definition_enumeration *ATTRIBUTE_DEFINITION_ENUMERATION) (ok bool)

func (*Stage) IsStagedATTRIBUTE_DEFINITION_INTEGER

func (stage *Stage) IsStagedATTRIBUTE_DEFINITION_INTEGER(attribute_definition_integer *ATTRIBUTE_DEFINITION_INTEGER) (ok bool)

func (*Stage) IsStagedATTRIBUTE_DEFINITION_REAL

func (stage *Stage) IsStagedATTRIBUTE_DEFINITION_REAL(attribute_definition_real *ATTRIBUTE_DEFINITION_REAL) (ok bool)

func (*Stage) IsStagedATTRIBUTE_DEFINITION_STRING

func (stage *Stage) IsStagedATTRIBUTE_DEFINITION_STRING(attribute_definition_string *ATTRIBUTE_DEFINITION_STRING) (ok bool)

func (*Stage) IsStagedATTRIBUTE_DEFINITION_XHTML

func (stage *Stage) IsStagedATTRIBUTE_DEFINITION_XHTML(attribute_definition_xhtml *ATTRIBUTE_DEFINITION_XHTML) (ok bool)

func (*Stage) IsStagedATTRIBUTE_VALUE_BOOLEAN

func (stage *Stage) IsStagedATTRIBUTE_VALUE_BOOLEAN(attribute_value_boolean *ATTRIBUTE_VALUE_BOOLEAN) (ok bool)

func (*Stage) IsStagedATTRIBUTE_VALUE_DATE

func (stage *Stage) IsStagedATTRIBUTE_VALUE_DATE(attribute_value_date *ATTRIBUTE_VALUE_DATE) (ok bool)

func (*Stage) IsStagedATTRIBUTE_VALUE_ENUMERATION

func (stage *Stage) IsStagedATTRIBUTE_VALUE_ENUMERATION(attribute_value_enumeration *ATTRIBUTE_VALUE_ENUMERATION) (ok bool)

func (*Stage) IsStagedATTRIBUTE_VALUE_INTEGER

func (stage *Stage) IsStagedATTRIBUTE_VALUE_INTEGER(attribute_value_integer *ATTRIBUTE_VALUE_INTEGER) (ok bool)

func (*Stage) IsStagedATTRIBUTE_VALUE_REAL

func (stage *Stage) IsStagedATTRIBUTE_VALUE_REAL(attribute_value_real *ATTRIBUTE_VALUE_REAL) (ok bool)

func (*Stage) IsStagedATTRIBUTE_VALUE_STRING

func (stage *Stage) IsStagedATTRIBUTE_VALUE_STRING(attribute_value_string *ATTRIBUTE_VALUE_STRING) (ok bool)

func (*Stage) IsStagedATTRIBUTE_VALUE_XHTML

func (stage *Stage) IsStagedATTRIBUTE_VALUE_XHTML(attribute_value_xhtml *ATTRIBUTE_VALUE_XHTML) (ok bool)

func (*Stage) IsStagedA_ALTERNATIVE_ID

func (stage *Stage) IsStagedA_ALTERNATIVE_ID(a_alternative_id *A_ALTERNATIVE_ID) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_DEFINITION_BOOLEAN_REF

func (stage *Stage) IsStagedA_ATTRIBUTE_DEFINITION_BOOLEAN_REF(a_attribute_definition_boolean_ref *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_DEFINITION_DATE_REF

func (stage *Stage) IsStagedA_ATTRIBUTE_DEFINITION_DATE_REF(a_attribute_definition_date_ref *A_ATTRIBUTE_DEFINITION_DATE_REF) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_DEFINITION_ENUMERATION_REF

func (stage *Stage) IsStagedA_ATTRIBUTE_DEFINITION_ENUMERATION_REF(a_attribute_definition_enumeration_ref *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_DEFINITION_INTEGER_REF

func (stage *Stage) IsStagedA_ATTRIBUTE_DEFINITION_INTEGER_REF(a_attribute_definition_integer_ref *A_ATTRIBUTE_DEFINITION_INTEGER_REF) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_DEFINITION_REAL_REF

func (stage *Stage) IsStagedA_ATTRIBUTE_DEFINITION_REAL_REF(a_attribute_definition_real_ref *A_ATTRIBUTE_DEFINITION_REAL_REF) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_DEFINITION_STRING_REF

func (stage *Stage) IsStagedA_ATTRIBUTE_DEFINITION_STRING_REF(a_attribute_definition_string_ref *A_ATTRIBUTE_DEFINITION_STRING_REF) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_DEFINITION_XHTML_REF

func (stage *Stage) IsStagedA_ATTRIBUTE_DEFINITION_XHTML_REF(a_attribute_definition_xhtml_ref *A_ATTRIBUTE_DEFINITION_XHTML_REF) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_VALUE_BOOLEAN

func (stage *Stage) IsStagedA_ATTRIBUTE_VALUE_BOOLEAN(a_attribute_value_boolean *A_ATTRIBUTE_VALUE_BOOLEAN) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_VALUE_DATE

func (stage *Stage) IsStagedA_ATTRIBUTE_VALUE_DATE(a_attribute_value_date *A_ATTRIBUTE_VALUE_DATE) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_VALUE_ENUMERATION

func (stage *Stage) IsStagedA_ATTRIBUTE_VALUE_ENUMERATION(a_attribute_value_enumeration *A_ATTRIBUTE_VALUE_ENUMERATION) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_VALUE_INTEGER

func (stage *Stage) IsStagedA_ATTRIBUTE_VALUE_INTEGER(a_attribute_value_integer *A_ATTRIBUTE_VALUE_INTEGER) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_VALUE_REAL

func (stage *Stage) IsStagedA_ATTRIBUTE_VALUE_REAL(a_attribute_value_real *A_ATTRIBUTE_VALUE_REAL) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_VALUE_STRING

func (stage *Stage) IsStagedA_ATTRIBUTE_VALUE_STRING(a_attribute_value_string *A_ATTRIBUTE_VALUE_STRING) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_VALUE_XHTML

func (stage *Stage) IsStagedA_ATTRIBUTE_VALUE_XHTML(a_attribute_value_xhtml *A_ATTRIBUTE_VALUE_XHTML) (ok bool)

func (*Stage) IsStagedA_ATTRIBUTE_VALUE_XHTML_1

func (stage *Stage) IsStagedA_ATTRIBUTE_VALUE_XHTML_1(a_attribute_value_xhtml_1 *A_ATTRIBUTE_VALUE_XHTML_1) (ok bool)

func (*Stage) IsStagedA_CHILDREN

func (stage *Stage) IsStagedA_CHILDREN(a_children *A_CHILDREN) (ok bool)

func (*Stage) IsStagedA_CORE_CONTENT

func (stage *Stage) IsStagedA_CORE_CONTENT(a_core_content *A_CORE_CONTENT) (ok bool)

func (*Stage) IsStagedA_DATATYPES

func (stage *Stage) IsStagedA_DATATYPES(a_datatypes *A_DATATYPES) (ok bool)

func (*Stage) IsStagedA_DATATYPE_DEFINITION_BOOLEAN_REF

func (stage *Stage) IsStagedA_DATATYPE_DEFINITION_BOOLEAN_REF(a_datatype_definition_boolean_ref *A_DATATYPE_DEFINITION_BOOLEAN_REF) (ok bool)

func (*Stage) IsStagedA_DATATYPE_DEFINITION_DATE_REF

func (stage *Stage) IsStagedA_DATATYPE_DEFINITION_DATE_REF(a_datatype_definition_date_ref *A_DATATYPE_DEFINITION_DATE_REF) (ok bool)

func (*Stage) IsStagedA_DATATYPE_DEFINITION_ENUMERATION_REF

func (stage *Stage) IsStagedA_DATATYPE_DEFINITION_ENUMERATION_REF(a_datatype_definition_enumeration_ref *A_DATATYPE_DEFINITION_ENUMERATION_REF) (ok bool)

func (*Stage) IsStagedA_DATATYPE_DEFINITION_INTEGER_REF

func (stage *Stage) IsStagedA_DATATYPE_DEFINITION_INTEGER_REF(a_datatype_definition_integer_ref *A_DATATYPE_DEFINITION_INTEGER_REF) (ok bool)

func (*Stage) IsStagedA_DATATYPE_DEFINITION_REAL_REF

func (stage *Stage) IsStagedA_DATATYPE_DEFINITION_REAL_REF(a_datatype_definition_real_ref *A_DATATYPE_DEFINITION_REAL_REF) (ok bool)

func (*Stage) IsStagedA_DATATYPE_DEFINITION_STRING_REF

func (stage *Stage) IsStagedA_DATATYPE_DEFINITION_STRING_REF(a_datatype_definition_string_ref *A_DATATYPE_DEFINITION_STRING_REF) (ok bool)

func (*Stage) IsStagedA_DATATYPE_DEFINITION_XHTML_REF

func (stage *Stage) IsStagedA_DATATYPE_DEFINITION_XHTML_REF(a_datatype_definition_xhtml_ref *A_DATATYPE_DEFINITION_XHTML_REF) (ok bool)

func (*Stage) IsStagedA_EDITABLE_ATTS

func (stage *Stage) IsStagedA_EDITABLE_ATTS(a_editable_atts *A_EDITABLE_ATTS) (ok bool)

func (*Stage) IsStagedA_ENUM_VALUE_REF

func (stage *Stage) IsStagedA_ENUM_VALUE_REF(a_enum_value_ref *A_ENUM_VALUE_REF) (ok bool)

func (*Stage) IsStagedA_OBJECT

func (stage *Stage) IsStagedA_OBJECT(a_object *A_OBJECT) (ok bool)

func (*Stage) IsStagedA_PROPERTIES

func (stage *Stage) IsStagedA_PROPERTIES(a_properties *A_PROPERTIES) (ok bool)

func (*Stage) IsStagedA_RELATION_GROUP_TYPE_REF

func (stage *Stage) IsStagedA_RELATION_GROUP_TYPE_REF(a_relation_group_type_ref *A_RELATION_GROUP_TYPE_REF) (ok bool)

func (*Stage) IsStagedA_SOURCE_1

func (stage *Stage) IsStagedA_SOURCE_1(a_source_1 *A_SOURCE_1) (ok bool)

func (*Stage) IsStagedA_SOURCE_SPECIFICATION_1

func (stage *Stage) IsStagedA_SOURCE_SPECIFICATION_1(a_source_specification_1 *A_SOURCE_SPECIFICATION_1) (ok bool)

func (*Stage) IsStagedA_SPECIFICATIONS

func (stage *Stage) IsStagedA_SPECIFICATIONS(a_specifications *A_SPECIFICATIONS) (ok bool)

func (*Stage) IsStagedA_SPECIFICATION_TYPE_REF

func (stage *Stage) IsStagedA_SPECIFICATION_TYPE_REF(a_specification_type_ref *A_SPECIFICATION_TYPE_REF) (ok bool)

func (*Stage) IsStagedA_SPECIFIED_VALUES

func (stage *Stage) IsStagedA_SPECIFIED_VALUES(a_specified_values *A_SPECIFIED_VALUES) (ok bool)

func (*Stage) IsStagedA_SPEC_ATTRIBUTES

func (stage *Stage) IsStagedA_SPEC_ATTRIBUTES(a_spec_attributes *A_SPEC_ATTRIBUTES) (ok bool)

func (*Stage) IsStagedA_SPEC_OBJECTS

func (stage *Stage) IsStagedA_SPEC_OBJECTS(a_spec_objects *A_SPEC_OBJECTS) (ok bool)

func (*Stage) IsStagedA_SPEC_OBJECT_TYPE_REF

func (stage *Stage) IsStagedA_SPEC_OBJECT_TYPE_REF(a_spec_object_type_ref *A_SPEC_OBJECT_TYPE_REF) (ok bool)

func (*Stage) IsStagedA_SPEC_RELATIONS

func (stage *Stage) IsStagedA_SPEC_RELATIONS(a_spec_relations *A_SPEC_RELATIONS) (ok bool)

func (*Stage) IsStagedA_SPEC_RELATION_GROUPS

func (stage *Stage) IsStagedA_SPEC_RELATION_GROUPS(a_spec_relation_groups *A_SPEC_RELATION_GROUPS) (ok bool)

func (*Stage) IsStagedA_SPEC_RELATION_REF

func (stage *Stage) IsStagedA_SPEC_RELATION_REF(a_spec_relation_ref *A_SPEC_RELATION_REF) (ok bool)

func (*Stage) IsStagedA_SPEC_RELATION_TYPE_REF

func (stage *Stage) IsStagedA_SPEC_RELATION_TYPE_REF(a_spec_relation_type_ref *A_SPEC_RELATION_TYPE_REF) (ok bool)

func (*Stage) IsStagedA_SPEC_TYPES

func (stage *Stage) IsStagedA_SPEC_TYPES(a_spec_types *A_SPEC_TYPES) (ok bool)

func (*Stage) IsStagedA_THE_HEADER

func (stage *Stage) IsStagedA_THE_HEADER(a_the_header *A_THE_HEADER) (ok bool)

func (*Stage) IsStagedA_TOOL_EXTENSIONS

func (stage *Stage) IsStagedA_TOOL_EXTENSIONS(a_tool_extensions *A_TOOL_EXTENSIONS) (ok bool)

func (*Stage) IsStagedDATATYPE_DEFINITION_BOOLEAN

func (stage *Stage) IsStagedDATATYPE_DEFINITION_BOOLEAN(datatype_definition_boolean *DATATYPE_DEFINITION_BOOLEAN) (ok bool)

func (*Stage) IsStagedDATATYPE_DEFINITION_DATE

func (stage *Stage) IsStagedDATATYPE_DEFINITION_DATE(datatype_definition_date *DATATYPE_DEFINITION_DATE) (ok bool)

func (*Stage) IsStagedDATATYPE_DEFINITION_ENUMERATION

func (stage *Stage) IsStagedDATATYPE_DEFINITION_ENUMERATION(datatype_definition_enumeration *DATATYPE_DEFINITION_ENUMERATION) (ok bool)

func (*Stage) IsStagedDATATYPE_DEFINITION_INTEGER

func (stage *Stage) IsStagedDATATYPE_DEFINITION_INTEGER(datatype_definition_integer *DATATYPE_DEFINITION_INTEGER) (ok bool)

func (*Stage) IsStagedDATATYPE_DEFINITION_REAL

func (stage *Stage) IsStagedDATATYPE_DEFINITION_REAL(datatype_definition_real *DATATYPE_DEFINITION_REAL) (ok bool)

func (*Stage) IsStagedDATATYPE_DEFINITION_STRING

func (stage *Stage) IsStagedDATATYPE_DEFINITION_STRING(datatype_definition_string *DATATYPE_DEFINITION_STRING) (ok bool)

func (*Stage) IsStagedDATATYPE_DEFINITION_XHTML

func (stage *Stage) IsStagedDATATYPE_DEFINITION_XHTML(datatype_definition_xhtml *DATATYPE_DEFINITION_XHTML) (ok bool)

func (*Stage) IsStagedEMBEDDED_VALUE

func (stage *Stage) IsStagedEMBEDDED_VALUE(embedded_value *EMBEDDED_VALUE) (ok bool)

func (*Stage) IsStagedENUM_VALUE

func (stage *Stage) IsStagedENUM_VALUE(enum_value *ENUM_VALUE) (ok bool)

func (*Stage) IsStagedEmbeddedJpgImage

func (stage *Stage) IsStagedEmbeddedJpgImage(embeddedjpgimage *EmbeddedJpgImage) (ok bool)

func (*Stage) IsStagedEmbeddedPngImage

func (stage *Stage) IsStagedEmbeddedPngImage(embeddedpngimage *EmbeddedPngImage) (ok bool)

func (*Stage) IsStagedEmbeddedSvgImage

func (stage *Stage) IsStagedEmbeddedSvgImage(embeddedsvgimage *EmbeddedSvgImage) (ok bool)

func (*Stage) IsStagedKill

func (stage *Stage) IsStagedKill(kill *Kill) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry(map_attribute_definition_boolean_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry(map_attribute_definition_boolean_showintableentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry(map_attribute_definition_boolean_showintitleentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry(map_attribute_definition_date_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry(map_attribute_definition_date_showintableentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry(map_attribute_definition_date_showintitleentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry(map_attribute_definition_enumeration_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry(map_attribute_definition_enumeration_showintableentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry(map_attribute_definition_enumeration_showintitleentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry(map_attribute_definition_integer_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry(map_attribute_definition_integer_showintableentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry(map_attribute_definition_integer_showintitleentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry(map_attribute_definition_real_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry(map_attribute_definition_real_showintableentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry(map_attribute_definition_real_showintitleentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry(map_attribute_definition_string_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry(map_attribute_definition_string_showintableentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry(map_attribute_definition_string_showintitleentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry(map_attribute_definition_xhtml_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry(map_attribute_definition_xhtml_showintableentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry) (ok bool)

func (*Stage) IsStagedMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry

func (stage *Stage) IsStagedMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry(map_attribute_definition_xhtml_showintitleentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry) (ok bool)

func (*Stage) IsStagedMap_SPECIFICATION_Nodes_expandedEntry

func (stage *Stage) IsStagedMap_SPECIFICATION_Nodes_expandedEntry(map_specification_nodes_expandedentry *Map_SPECIFICATION_Nodes_expandedEntry) (ok bool)

func (*Stage) IsStagedMap_SPEC_OBJECT_TYPE_isNodeExpandedEntry

func (stage *Stage) IsStagedMap_SPEC_OBJECT_TYPE_isNodeExpandedEntry(map_spec_object_type_isnodeexpandedentry *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry) (ok bool)

func (*Stage) IsStagedMap_SPEC_OBJECT_TYPE_showIdentifierEntry

func (stage *Stage) IsStagedMap_SPEC_OBJECT_TYPE_showIdentifierEntry(map_spec_object_type_showidentifierentry *Map_SPEC_OBJECT_TYPE_showIdentifierEntry) (ok bool)

func (*Stage) IsStagedMap_SPEC_OBJECT_TYPE_showNameEntry

func (stage *Stage) IsStagedMap_SPEC_OBJECT_TYPE_showNameEntry(map_spec_object_type_shownameentry *Map_SPEC_OBJECT_TYPE_showNameEntry) (ok bool)

func (*Stage) IsStagedRELATION_GROUP

func (stage *Stage) IsStagedRELATION_GROUP(relation_group *RELATION_GROUP) (ok bool)

func (*Stage) IsStagedRELATION_GROUP_TYPE

func (stage *Stage) IsStagedRELATION_GROUP_TYPE(relation_group_type *RELATION_GROUP_TYPE) (ok bool)

func (*Stage) IsStagedREQ_IF

func (stage *Stage) IsStagedREQ_IF(req_if *REQ_IF) (ok bool)

func (*Stage) IsStagedREQ_IF_CONTENT

func (stage *Stage) IsStagedREQ_IF_CONTENT(req_if_content *REQ_IF_CONTENT) (ok bool)

func (*Stage) IsStagedREQ_IF_HEADER

func (stage *Stage) IsStagedREQ_IF_HEADER(req_if_header *REQ_IF_HEADER) (ok bool)

func (*Stage) IsStagedREQ_IF_TOOL_EXTENSION

func (stage *Stage) IsStagedREQ_IF_TOOL_EXTENSION(req_if_tool_extension *REQ_IF_TOOL_EXTENSION) (ok bool)

func (*Stage) IsStagedRenderingConfiguration

func (stage *Stage) IsStagedRenderingConfiguration(renderingconfiguration *RenderingConfiguration) (ok bool)

func (*Stage) IsStagedSPECIFICATION

func (stage *Stage) IsStagedSPECIFICATION(specification *SPECIFICATION) (ok bool)

func (*Stage) IsStagedSPECIFICATION_TYPE

func (stage *Stage) IsStagedSPECIFICATION_TYPE(specification_type *SPECIFICATION_TYPE) (ok bool)

func (*Stage) IsStagedSPEC_HIERARCHY

func (stage *Stage) IsStagedSPEC_HIERARCHY(spec_hierarchy *SPEC_HIERARCHY) (ok bool)

func (*Stage) IsStagedSPEC_OBJECT

func (stage *Stage) IsStagedSPEC_OBJECT(spec_object *SPEC_OBJECT) (ok bool)

func (*Stage) IsStagedSPEC_OBJECT_TYPE

func (stage *Stage) IsStagedSPEC_OBJECT_TYPE(spec_object_type *SPEC_OBJECT_TYPE) (ok bool)

func (*Stage) IsStagedSPEC_RELATION

func (stage *Stage) IsStagedSPEC_RELATION(spec_relation *SPEC_RELATION) (ok bool)

func (*Stage) IsStagedSPEC_RELATION_TYPE

func (stage *Stage) IsStagedSPEC_RELATION_TYPE(spec_relation_type *SPEC_RELATION_TYPE) (ok bool)

func (*Stage) IsStagedStaticWebSite

func (stage *Stage) IsStagedStaticWebSite(staticwebsite *StaticWebSite) (ok bool)

func (*Stage) IsStagedStaticWebSiteChapter

func (stage *Stage) IsStagedStaticWebSiteChapter(staticwebsitechapter *StaticWebSiteChapter) (ok bool)

func (*Stage) IsStagedStaticWebSiteGeneratedImage

func (stage *Stage) IsStagedStaticWebSiteGeneratedImage(staticwebsitegeneratedimage *StaticWebSiteGeneratedImage) (ok bool)

func (*Stage) IsStagedStaticWebSiteImage

func (stage *Stage) IsStagedStaticWebSiteImage(staticwebsiteimage *StaticWebSiteImage) (ok bool)

func (*Stage) IsStagedStaticWebSiteParagraph

func (stage *Stage) IsStagedStaticWebSiteParagraph(staticwebsiteparagraph *StaticWebSiteParagraph) (ok bool)

func (*Stage) IsStagedXHTML_CONTENT

func (stage *Stage) IsStagedXHTML_CONTENT(xhtml_content *XHTML_CONTENT) (ok bool)

func (*Stage) Marshall

func (stage *Stage) Marshall(file *os.File, modelsPackageName, packageName string)

Marshall marshall the stage content into the file as an instanciation into a stage

func (*Stage) Nil

func (stage *Stage) Nil()

func (*Stage) Reset

func (stage *Stage) Reset()

func (*Stage) Restore

func (stage *Stage) Restore(dirPath string)

Restore resets Stage & BackRepo and restores their content from the restore files in dirPath

func (*Stage) RestoreXL

func (stage *Stage) RestoreXL(dirPath string)

Restore resets Stage & BackRepo and restores their content from the restore files in dirPath

func (*Stage) SetGeneratesDiff

func (stage *Stage) SetGeneratesDiff(generatesDiff bool)

func (*Stage) StageBranchALTERNATIVE_ID

func (stage *Stage) StageBranchALTERNATIVE_ID(alternative_id *ALTERNATIVE_ID)

insertion point for stage branch per struct

func (*Stage) StageBranchATTRIBUTE_DEFINITION_BOOLEAN

func (stage *Stage) StageBranchATTRIBUTE_DEFINITION_BOOLEAN(attribute_definition_boolean *ATTRIBUTE_DEFINITION_BOOLEAN)

func (*Stage) StageBranchATTRIBUTE_DEFINITION_DATE

func (stage *Stage) StageBranchATTRIBUTE_DEFINITION_DATE(attribute_definition_date *ATTRIBUTE_DEFINITION_DATE)

func (*Stage) StageBranchATTRIBUTE_DEFINITION_ENUMERATION

func (stage *Stage) StageBranchATTRIBUTE_DEFINITION_ENUMERATION(attribute_definition_enumeration *ATTRIBUTE_DEFINITION_ENUMERATION)

func (*Stage) StageBranchATTRIBUTE_DEFINITION_INTEGER

func (stage *Stage) StageBranchATTRIBUTE_DEFINITION_INTEGER(attribute_definition_integer *ATTRIBUTE_DEFINITION_INTEGER)

func (*Stage) StageBranchATTRIBUTE_DEFINITION_REAL

func (stage *Stage) StageBranchATTRIBUTE_DEFINITION_REAL(attribute_definition_real *ATTRIBUTE_DEFINITION_REAL)

func (*Stage) StageBranchATTRIBUTE_DEFINITION_STRING

func (stage *Stage) StageBranchATTRIBUTE_DEFINITION_STRING(attribute_definition_string *ATTRIBUTE_DEFINITION_STRING)

func (*Stage) StageBranchATTRIBUTE_DEFINITION_XHTML

func (stage *Stage) StageBranchATTRIBUTE_DEFINITION_XHTML(attribute_definition_xhtml *ATTRIBUTE_DEFINITION_XHTML)

func (*Stage) StageBranchATTRIBUTE_VALUE_BOOLEAN

func (stage *Stage) StageBranchATTRIBUTE_VALUE_BOOLEAN(attribute_value_boolean *ATTRIBUTE_VALUE_BOOLEAN)

func (*Stage) StageBranchATTRIBUTE_VALUE_DATE

func (stage *Stage) StageBranchATTRIBUTE_VALUE_DATE(attribute_value_date *ATTRIBUTE_VALUE_DATE)

func (*Stage) StageBranchATTRIBUTE_VALUE_ENUMERATION

func (stage *Stage) StageBranchATTRIBUTE_VALUE_ENUMERATION(attribute_value_enumeration *ATTRIBUTE_VALUE_ENUMERATION)

func (*Stage) StageBranchATTRIBUTE_VALUE_INTEGER

func (stage *Stage) StageBranchATTRIBUTE_VALUE_INTEGER(attribute_value_integer *ATTRIBUTE_VALUE_INTEGER)

func (*Stage) StageBranchATTRIBUTE_VALUE_REAL

func (stage *Stage) StageBranchATTRIBUTE_VALUE_REAL(attribute_value_real *ATTRIBUTE_VALUE_REAL)

func (*Stage) StageBranchATTRIBUTE_VALUE_STRING

func (stage *Stage) StageBranchATTRIBUTE_VALUE_STRING(attribute_value_string *ATTRIBUTE_VALUE_STRING)

func (*Stage) StageBranchATTRIBUTE_VALUE_XHTML

func (stage *Stage) StageBranchATTRIBUTE_VALUE_XHTML(attribute_value_xhtml *ATTRIBUTE_VALUE_XHTML)

func (*Stage) StageBranchA_ALTERNATIVE_ID

func (stage *Stage) StageBranchA_ALTERNATIVE_ID(a_alternative_id *A_ALTERNATIVE_ID)

func (*Stage) StageBranchA_ATTRIBUTE_DEFINITION_BOOLEAN_REF

func (stage *Stage) StageBranchA_ATTRIBUTE_DEFINITION_BOOLEAN_REF(a_attribute_definition_boolean_ref *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF)

func (*Stage) StageBranchA_ATTRIBUTE_DEFINITION_DATE_REF

func (stage *Stage) StageBranchA_ATTRIBUTE_DEFINITION_DATE_REF(a_attribute_definition_date_ref *A_ATTRIBUTE_DEFINITION_DATE_REF)

func (*Stage) StageBranchA_ATTRIBUTE_DEFINITION_ENUMERATION_REF

func (stage *Stage) StageBranchA_ATTRIBUTE_DEFINITION_ENUMERATION_REF(a_attribute_definition_enumeration_ref *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF)

func (*Stage) StageBranchA_ATTRIBUTE_DEFINITION_INTEGER_REF

func (stage *Stage) StageBranchA_ATTRIBUTE_DEFINITION_INTEGER_REF(a_attribute_definition_integer_ref *A_ATTRIBUTE_DEFINITION_INTEGER_REF)

func (*Stage) StageBranchA_ATTRIBUTE_DEFINITION_REAL_REF

func (stage *Stage) StageBranchA_ATTRIBUTE_DEFINITION_REAL_REF(a_attribute_definition_real_ref *A_ATTRIBUTE_DEFINITION_REAL_REF)

func (*Stage) StageBranchA_ATTRIBUTE_DEFINITION_STRING_REF

func (stage *Stage) StageBranchA_ATTRIBUTE_DEFINITION_STRING_REF(a_attribute_definition_string_ref *A_ATTRIBUTE_DEFINITION_STRING_REF)

func (*Stage) StageBranchA_ATTRIBUTE_DEFINITION_XHTML_REF

func (stage *Stage) StageBranchA_ATTRIBUTE_DEFINITION_XHTML_REF(a_attribute_definition_xhtml_ref *A_ATTRIBUTE_DEFINITION_XHTML_REF)

func (*Stage) StageBranchA_ATTRIBUTE_VALUE_BOOLEAN

func (stage *Stage) StageBranchA_ATTRIBUTE_VALUE_BOOLEAN(a_attribute_value_boolean *A_ATTRIBUTE_VALUE_BOOLEAN)

func (*Stage) StageBranchA_ATTRIBUTE_VALUE_DATE

func (stage *Stage) StageBranchA_ATTRIBUTE_VALUE_DATE(a_attribute_value_date *A_ATTRIBUTE_VALUE_DATE)

func (*Stage) StageBranchA_ATTRIBUTE_VALUE_ENUMERATION

func (stage *Stage) StageBranchA_ATTRIBUTE_VALUE_ENUMERATION(a_attribute_value_enumeration *A_ATTRIBUTE_VALUE_ENUMERATION)

func (*Stage) StageBranchA_ATTRIBUTE_VALUE_INTEGER

func (stage *Stage) StageBranchA_ATTRIBUTE_VALUE_INTEGER(a_attribute_value_integer *A_ATTRIBUTE_VALUE_INTEGER)

func (*Stage) StageBranchA_ATTRIBUTE_VALUE_REAL

func (stage *Stage) StageBranchA_ATTRIBUTE_VALUE_REAL(a_attribute_value_real *A_ATTRIBUTE_VALUE_REAL)

func (*Stage) StageBranchA_ATTRIBUTE_VALUE_STRING

func (stage *Stage) StageBranchA_ATTRIBUTE_VALUE_STRING(a_attribute_value_string *A_ATTRIBUTE_VALUE_STRING)

func (*Stage) StageBranchA_ATTRIBUTE_VALUE_XHTML

func (stage *Stage) StageBranchA_ATTRIBUTE_VALUE_XHTML(a_attribute_value_xhtml *A_ATTRIBUTE_VALUE_XHTML)

func (*Stage) StageBranchA_ATTRIBUTE_VALUE_XHTML_1

func (stage *Stage) StageBranchA_ATTRIBUTE_VALUE_XHTML_1(a_attribute_value_xhtml_1 *A_ATTRIBUTE_VALUE_XHTML_1)

func (*Stage) StageBranchA_CHILDREN

func (stage *Stage) StageBranchA_CHILDREN(a_children *A_CHILDREN)

func (*Stage) StageBranchA_CORE_CONTENT

func (stage *Stage) StageBranchA_CORE_CONTENT(a_core_content *A_CORE_CONTENT)

func (*Stage) StageBranchA_DATATYPES

func (stage *Stage) StageBranchA_DATATYPES(a_datatypes *A_DATATYPES)

func (*Stage) StageBranchA_DATATYPE_DEFINITION_BOOLEAN_REF

func (stage *Stage) StageBranchA_DATATYPE_DEFINITION_BOOLEAN_REF(a_datatype_definition_boolean_ref *A_DATATYPE_DEFINITION_BOOLEAN_REF)

func (*Stage) StageBranchA_DATATYPE_DEFINITION_DATE_REF

func (stage *Stage) StageBranchA_DATATYPE_DEFINITION_DATE_REF(a_datatype_definition_date_ref *A_DATATYPE_DEFINITION_DATE_REF)

func (*Stage) StageBranchA_DATATYPE_DEFINITION_ENUMERATION_REF

func (stage *Stage) StageBranchA_DATATYPE_DEFINITION_ENUMERATION_REF(a_datatype_definition_enumeration_ref *A_DATATYPE_DEFINITION_ENUMERATION_REF)

func (*Stage) StageBranchA_DATATYPE_DEFINITION_INTEGER_REF

func (stage *Stage) StageBranchA_DATATYPE_DEFINITION_INTEGER_REF(a_datatype_definition_integer_ref *A_DATATYPE_DEFINITION_INTEGER_REF)

func (*Stage) StageBranchA_DATATYPE_DEFINITION_REAL_REF

func (stage *Stage) StageBranchA_DATATYPE_DEFINITION_REAL_REF(a_datatype_definition_real_ref *A_DATATYPE_DEFINITION_REAL_REF)

func (*Stage) StageBranchA_DATATYPE_DEFINITION_STRING_REF

func (stage *Stage) StageBranchA_DATATYPE_DEFINITION_STRING_REF(a_datatype_definition_string_ref *A_DATATYPE_DEFINITION_STRING_REF)

func (*Stage) StageBranchA_DATATYPE_DEFINITION_XHTML_REF

func (stage *Stage) StageBranchA_DATATYPE_DEFINITION_XHTML_REF(a_datatype_definition_xhtml_ref *A_DATATYPE_DEFINITION_XHTML_REF)

func (*Stage) StageBranchA_EDITABLE_ATTS

func (stage *Stage) StageBranchA_EDITABLE_ATTS(a_editable_atts *A_EDITABLE_ATTS)

func (*Stage) StageBranchA_ENUM_VALUE_REF

func (stage *Stage) StageBranchA_ENUM_VALUE_REF(a_enum_value_ref *A_ENUM_VALUE_REF)

func (*Stage) StageBranchA_OBJECT

func (stage *Stage) StageBranchA_OBJECT(a_object *A_OBJECT)

func (*Stage) StageBranchA_PROPERTIES

func (stage *Stage) StageBranchA_PROPERTIES(a_properties *A_PROPERTIES)

func (*Stage) StageBranchA_RELATION_GROUP_TYPE_REF

func (stage *Stage) StageBranchA_RELATION_GROUP_TYPE_REF(a_relation_group_type_ref *A_RELATION_GROUP_TYPE_REF)

func (*Stage) StageBranchA_SOURCE_1

func (stage *Stage) StageBranchA_SOURCE_1(a_source_1 *A_SOURCE_1)

func (*Stage) StageBranchA_SOURCE_SPECIFICATION_1

func (stage *Stage) StageBranchA_SOURCE_SPECIFICATION_1(a_source_specification_1 *A_SOURCE_SPECIFICATION_1)

func (*Stage) StageBranchA_SPECIFICATIONS

func (stage *Stage) StageBranchA_SPECIFICATIONS(a_specifications *A_SPECIFICATIONS)

func (*Stage) StageBranchA_SPECIFICATION_TYPE_REF

func (stage *Stage) StageBranchA_SPECIFICATION_TYPE_REF(a_specification_type_ref *A_SPECIFICATION_TYPE_REF)

func (*Stage) StageBranchA_SPECIFIED_VALUES

func (stage *Stage) StageBranchA_SPECIFIED_VALUES(a_specified_values *A_SPECIFIED_VALUES)

func (*Stage) StageBranchA_SPEC_ATTRIBUTES

func (stage *Stage) StageBranchA_SPEC_ATTRIBUTES(a_spec_attributes *A_SPEC_ATTRIBUTES)

func (*Stage) StageBranchA_SPEC_OBJECTS

func (stage *Stage) StageBranchA_SPEC_OBJECTS(a_spec_objects *A_SPEC_OBJECTS)

func (*Stage) StageBranchA_SPEC_OBJECT_TYPE_REF

func (stage *Stage) StageBranchA_SPEC_OBJECT_TYPE_REF(a_spec_object_type_ref *A_SPEC_OBJECT_TYPE_REF)

func (*Stage) StageBranchA_SPEC_RELATIONS

func (stage *Stage) StageBranchA_SPEC_RELATIONS(a_spec_relations *A_SPEC_RELATIONS)

func (*Stage) StageBranchA_SPEC_RELATION_GROUPS

func (stage *Stage) StageBranchA_SPEC_RELATION_GROUPS(a_spec_relation_groups *A_SPEC_RELATION_GROUPS)

func (*Stage) StageBranchA_SPEC_RELATION_REF

func (stage *Stage) StageBranchA_SPEC_RELATION_REF(a_spec_relation_ref *A_SPEC_RELATION_REF)

func (*Stage) StageBranchA_SPEC_RELATION_TYPE_REF

func (stage *Stage) StageBranchA_SPEC_RELATION_TYPE_REF(a_spec_relation_type_ref *A_SPEC_RELATION_TYPE_REF)

func (*Stage) StageBranchA_SPEC_TYPES

func (stage *Stage) StageBranchA_SPEC_TYPES(a_spec_types *A_SPEC_TYPES)

func (*Stage) StageBranchA_THE_HEADER

func (stage *Stage) StageBranchA_THE_HEADER(a_the_header *A_THE_HEADER)

func (*Stage) StageBranchA_TOOL_EXTENSIONS

func (stage *Stage) StageBranchA_TOOL_EXTENSIONS(a_tool_extensions *A_TOOL_EXTENSIONS)

func (*Stage) StageBranchDATATYPE_DEFINITION_BOOLEAN

func (stage *Stage) StageBranchDATATYPE_DEFINITION_BOOLEAN(datatype_definition_boolean *DATATYPE_DEFINITION_BOOLEAN)

func (*Stage) StageBranchDATATYPE_DEFINITION_DATE

func (stage *Stage) StageBranchDATATYPE_DEFINITION_DATE(datatype_definition_date *DATATYPE_DEFINITION_DATE)

func (*Stage) StageBranchDATATYPE_DEFINITION_ENUMERATION

func (stage *Stage) StageBranchDATATYPE_DEFINITION_ENUMERATION(datatype_definition_enumeration *DATATYPE_DEFINITION_ENUMERATION)

func (*Stage) StageBranchDATATYPE_DEFINITION_INTEGER

func (stage *Stage) StageBranchDATATYPE_DEFINITION_INTEGER(datatype_definition_integer *DATATYPE_DEFINITION_INTEGER)

func (*Stage) StageBranchDATATYPE_DEFINITION_REAL

func (stage *Stage) StageBranchDATATYPE_DEFINITION_REAL(datatype_definition_real *DATATYPE_DEFINITION_REAL)

func (*Stage) StageBranchDATATYPE_DEFINITION_STRING

func (stage *Stage) StageBranchDATATYPE_DEFINITION_STRING(datatype_definition_string *DATATYPE_DEFINITION_STRING)

func (*Stage) StageBranchDATATYPE_DEFINITION_XHTML

func (stage *Stage) StageBranchDATATYPE_DEFINITION_XHTML(datatype_definition_xhtml *DATATYPE_DEFINITION_XHTML)

func (*Stage) StageBranchEMBEDDED_VALUE

func (stage *Stage) StageBranchEMBEDDED_VALUE(embedded_value *EMBEDDED_VALUE)

func (*Stage) StageBranchENUM_VALUE

func (stage *Stage) StageBranchENUM_VALUE(enum_value *ENUM_VALUE)

func (*Stage) StageBranchEmbeddedJpgImage

func (stage *Stage) StageBranchEmbeddedJpgImage(embeddedjpgimage *EmbeddedJpgImage)

func (*Stage) StageBranchEmbeddedPngImage

func (stage *Stage) StageBranchEmbeddedPngImage(embeddedpngimage *EmbeddedPngImage)

func (*Stage) StageBranchEmbeddedSvgImage

func (stage *Stage) StageBranchEmbeddedSvgImage(embeddedsvgimage *EmbeddedSvgImage)

func (*Stage) StageBranchKill

func (stage *Stage) StageBranchKill(kill *Kill)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry(map_attribute_definition_boolean_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry(map_attribute_definition_boolean_showintableentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry(map_attribute_definition_boolean_showintitleentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry(map_attribute_definition_date_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry(map_attribute_definition_date_showintableentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry(map_attribute_definition_date_showintitleentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry(map_attribute_definition_enumeration_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry(map_attribute_definition_enumeration_showintableentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry(map_attribute_definition_enumeration_showintitleentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry(map_attribute_definition_integer_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry(map_attribute_definition_integer_showintableentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry(map_attribute_definition_integer_showintitleentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry(map_attribute_definition_real_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry(map_attribute_definition_real_showintableentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry(map_attribute_definition_real_showintitleentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry(map_attribute_definition_string_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry(map_attribute_definition_string_showintableentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry(map_attribute_definition_string_showintitleentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry(map_attribute_definition_xhtml_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry(map_attribute_definition_xhtml_showintableentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry)

func (*Stage) StageBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry

func (stage *Stage) StageBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry(map_attribute_definition_xhtml_showintitleentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry)

func (*Stage) StageBranchMap_SPECIFICATION_Nodes_expandedEntry

func (stage *Stage) StageBranchMap_SPECIFICATION_Nodes_expandedEntry(map_specification_nodes_expandedentry *Map_SPECIFICATION_Nodes_expandedEntry)

func (*Stage) StageBranchMap_SPEC_OBJECT_TYPE_isNodeExpandedEntry

func (stage *Stage) StageBranchMap_SPEC_OBJECT_TYPE_isNodeExpandedEntry(map_spec_object_type_isnodeexpandedentry *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry)

func (*Stage) StageBranchMap_SPEC_OBJECT_TYPE_showIdentifierEntry

func (stage *Stage) StageBranchMap_SPEC_OBJECT_TYPE_showIdentifierEntry(map_spec_object_type_showidentifierentry *Map_SPEC_OBJECT_TYPE_showIdentifierEntry)

func (*Stage) StageBranchMap_SPEC_OBJECT_TYPE_showNameEntry

func (stage *Stage) StageBranchMap_SPEC_OBJECT_TYPE_showNameEntry(map_spec_object_type_shownameentry *Map_SPEC_OBJECT_TYPE_showNameEntry)

func (*Stage) StageBranchRELATION_GROUP

func (stage *Stage) StageBranchRELATION_GROUP(relation_group *RELATION_GROUP)

func (*Stage) StageBranchRELATION_GROUP_TYPE

func (stage *Stage) StageBranchRELATION_GROUP_TYPE(relation_group_type *RELATION_GROUP_TYPE)

func (*Stage) StageBranchREQ_IF

func (stage *Stage) StageBranchREQ_IF(req_if *REQ_IF)

func (*Stage) StageBranchREQ_IF_CONTENT

func (stage *Stage) StageBranchREQ_IF_CONTENT(req_if_content *REQ_IF_CONTENT)

func (*Stage) StageBranchREQ_IF_HEADER

func (stage *Stage) StageBranchREQ_IF_HEADER(req_if_header *REQ_IF_HEADER)

func (*Stage) StageBranchREQ_IF_TOOL_EXTENSION

func (stage *Stage) StageBranchREQ_IF_TOOL_EXTENSION(req_if_tool_extension *REQ_IF_TOOL_EXTENSION)

func (*Stage) StageBranchRenderingConfiguration

func (stage *Stage) StageBranchRenderingConfiguration(renderingconfiguration *RenderingConfiguration)

func (*Stage) StageBranchSPECIFICATION

func (stage *Stage) StageBranchSPECIFICATION(specification *SPECIFICATION)

func (*Stage) StageBranchSPECIFICATION_TYPE

func (stage *Stage) StageBranchSPECIFICATION_TYPE(specification_type *SPECIFICATION_TYPE)

func (*Stage) StageBranchSPEC_HIERARCHY

func (stage *Stage) StageBranchSPEC_HIERARCHY(spec_hierarchy *SPEC_HIERARCHY)

func (*Stage) StageBranchSPEC_OBJECT

func (stage *Stage) StageBranchSPEC_OBJECT(spec_object *SPEC_OBJECT)

func (*Stage) StageBranchSPEC_OBJECT_TYPE

func (stage *Stage) StageBranchSPEC_OBJECT_TYPE(spec_object_type *SPEC_OBJECT_TYPE)

func (*Stage) StageBranchSPEC_RELATION

func (stage *Stage) StageBranchSPEC_RELATION(spec_relation *SPEC_RELATION)

func (*Stage) StageBranchSPEC_RELATION_TYPE

func (stage *Stage) StageBranchSPEC_RELATION_TYPE(spec_relation_type *SPEC_RELATION_TYPE)

func (*Stage) StageBranchStaticWebSite

func (stage *Stage) StageBranchStaticWebSite(staticwebsite *StaticWebSite)

func (*Stage) StageBranchStaticWebSiteChapter

func (stage *Stage) StageBranchStaticWebSiteChapter(staticwebsitechapter *StaticWebSiteChapter)

func (*Stage) StageBranchStaticWebSiteGeneratedImage

func (stage *Stage) StageBranchStaticWebSiteGeneratedImage(staticwebsitegeneratedimage *StaticWebSiteGeneratedImage)

func (*Stage) StageBranchStaticWebSiteImage

func (stage *Stage) StageBranchStaticWebSiteImage(staticwebsiteimage *StaticWebSiteImage)

func (*Stage) StageBranchStaticWebSiteParagraph

func (stage *Stage) StageBranchStaticWebSiteParagraph(staticwebsiteparagraph *StaticWebSiteParagraph)

func (*Stage) StageBranchXHTML_CONTENT

func (stage *Stage) StageBranchXHTML_CONTENT(xhtml_content *XHTML_CONTENT)

func (*Stage) Unstage

func (stage *Stage) Unstage()

func (*Stage) UnstageBranchALTERNATIVE_ID

func (stage *Stage) UnstageBranchALTERNATIVE_ID(alternative_id *ALTERNATIVE_ID)

insertion point for unstage branch per struct

func (*Stage) UnstageBranchATTRIBUTE_DEFINITION_BOOLEAN

func (stage *Stage) UnstageBranchATTRIBUTE_DEFINITION_BOOLEAN(attribute_definition_boolean *ATTRIBUTE_DEFINITION_BOOLEAN)

func (*Stage) UnstageBranchATTRIBUTE_DEFINITION_DATE

func (stage *Stage) UnstageBranchATTRIBUTE_DEFINITION_DATE(attribute_definition_date *ATTRIBUTE_DEFINITION_DATE)

func (*Stage) UnstageBranchATTRIBUTE_DEFINITION_ENUMERATION

func (stage *Stage) UnstageBranchATTRIBUTE_DEFINITION_ENUMERATION(attribute_definition_enumeration *ATTRIBUTE_DEFINITION_ENUMERATION)

func (*Stage) UnstageBranchATTRIBUTE_DEFINITION_INTEGER

func (stage *Stage) UnstageBranchATTRIBUTE_DEFINITION_INTEGER(attribute_definition_integer *ATTRIBUTE_DEFINITION_INTEGER)

func (*Stage) UnstageBranchATTRIBUTE_DEFINITION_REAL

func (stage *Stage) UnstageBranchATTRIBUTE_DEFINITION_REAL(attribute_definition_real *ATTRIBUTE_DEFINITION_REAL)

func (*Stage) UnstageBranchATTRIBUTE_DEFINITION_STRING

func (stage *Stage) UnstageBranchATTRIBUTE_DEFINITION_STRING(attribute_definition_string *ATTRIBUTE_DEFINITION_STRING)

func (*Stage) UnstageBranchATTRIBUTE_DEFINITION_XHTML

func (stage *Stage) UnstageBranchATTRIBUTE_DEFINITION_XHTML(attribute_definition_xhtml *ATTRIBUTE_DEFINITION_XHTML)

func (*Stage) UnstageBranchATTRIBUTE_VALUE_BOOLEAN

func (stage *Stage) UnstageBranchATTRIBUTE_VALUE_BOOLEAN(attribute_value_boolean *ATTRIBUTE_VALUE_BOOLEAN)

func (*Stage) UnstageBranchATTRIBUTE_VALUE_DATE

func (stage *Stage) UnstageBranchATTRIBUTE_VALUE_DATE(attribute_value_date *ATTRIBUTE_VALUE_DATE)

func (*Stage) UnstageBranchATTRIBUTE_VALUE_ENUMERATION

func (stage *Stage) UnstageBranchATTRIBUTE_VALUE_ENUMERATION(attribute_value_enumeration *ATTRIBUTE_VALUE_ENUMERATION)

func (*Stage) UnstageBranchATTRIBUTE_VALUE_INTEGER

func (stage *Stage) UnstageBranchATTRIBUTE_VALUE_INTEGER(attribute_value_integer *ATTRIBUTE_VALUE_INTEGER)

func (*Stage) UnstageBranchATTRIBUTE_VALUE_REAL

func (stage *Stage) UnstageBranchATTRIBUTE_VALUE_REAL(attribute_value_real *ATTRIBUTE_VALUE_REAL)

func (*Stage) UnstageBranchATTRIBUTE_VALUE_STRING

func (stage *Stage) UnstageBranchATTRIBUTE_VALUE_STRING(attribute_value_string *ATTRIBUTE_VALUE_STRING)

func (*Stage) UnstageBranchATTRIBUTE_VALUE_XHTML

func (stage *Stage) UnstageBranchATTRIBUTE_VALUE_XHTML(attribute_value_xhtml *ATTRIBUTE_VALUE_XHTML)

func (*Stage) UnstageBranchA_ALTERNATIVE_ID

func (stage *Stage) UnstageBranchA_ALTERNATIVE_ID(a_alternative_id *A_ALTERNATIVE_ID)

func (*Stage) UnstageBranchA_ATTRIBUTE_DEFINITION_BOOLEAN_REF

func (stage *Stage) UnstageBranchA_ATTRIBUTE_DEFINITION_BOOLEAN_REF(a_attribute_definition_boolean_ref *A_ATTRIBUTE_DEFINITION_BOOLEAN_REF)

func (*Stage) UnstageBranchA_ATTRIBUTE_DEFINITION_DATE_REF

func (stage *Stage) UnstageBranchA_ATTRIBUTE_DEFINITION_DATE_REF(a_attribute_definition_date_ref *A_ATTRIBUTE_DEFINITION_DATE_REF)

func (*Stage) UnstageBranchA_ATTRIBUTE_DEFINITION_ENUMERATION_REF

func (stage *Stage) UnstageBranchA_ATTRIBUTE_DEFINITION_ENUMERATION_REF(a_attribute_definition_enumeration_ref *A_ATTRIBUTE_DEFINITION_ENUMERATION_REF)

func (*Stage) UnstageBranchA_ATTRIBUTE_DEFINITION_INTEGER_REF

func (stage *Stage) UnstageBranchA_ATTRIBUTE_DEFINITION_INTEGER_REF(a_attribute_definition_integer_ref *A_ATTRIBUTE_DEFINITION_INTEGER_REF)

func (*Stage) UnstageBranchA_ATTRIBUTE_DEFINITION_REAL_REF

func (stage *Stage) UnstageBranchA_ATTRIBUTE_DEFINITION_REAL_REF(a_attribute_definition_real_ref *A_ATTRIBUTE_DEFINITION_REAL_REF)

func (*Stage) UnstageBranchA_ATTRIBUTE_DEFINITION_STRING_REF

func (stage *Stage) UnstageBranchA_ATTRIBUTE_DEFINITION_STRING_REF(a_attribute_definition_string_ref *A_ATTRIBUTE_DEFINITION_STRING_REF)

func (*Stage) UnstageBranchA_ATTRIBUTE_DEFINITION_XHTML_REF

func (stage *Stage) UnstageBranchA_ATTRIBUTE_DEFINITION_XHTML_REF(a_attribute_definition_xhtml_ref *A_ATTRIBUTE_DEFINITION_XHTML_REF)

func (*Stage) UnstageBranchA_ATTRIBUTE_VALUE_BOOLEAN

func (stage *Stage) UnstageBranchA_ATTRIBUTE_VALUE_BOOLEAN(a_attribute_value_boolean *A_ATTRIBUTE_VALUE_BOOLEAN)

func (*Stage) UnstageBranchA_ATTRIBUTE_VALUE_DATE

func (stage *Stage) UnstageBranchA_ATTRIBUTE_VALUE_DATE(a_attribute_value_date *A_ATTRIBUTE_VALUE_DATE)

func (*Stage) UnstageBranchA_ATTRIBUTE_VALUE_ENUMERATION

func (stage *Stage) UnstageBranchA_ATTRIBUTE_VALUE_ENUMERATION(a_attribute_value_enumeration *A_ATTRIBUTE_VALUE_ENUMERATION)

func (*Stage) UnstageBranchA_ATTRIBUTE_VALUE_INTEGER

func (stage *Stage) UnstageBranchA_ATTRIBUTE_VALUE_INTEGER(a_attribute_value_integer *A_ATTRIBUTE_VALUE_INTEGER)

func (*Stage) UnstageBranchA_ATTRIBUTE_VALUE_REAL

func (stage *Stage) UnstageBranchA_ATTRIBUTE_VALUE_REAL(a_attribute_value_real *A_ATTRIBUTE_VALUE_REAL)

func (*Stage) UnstageBranchA_ATTRIBUTE_VALUE_STRING

func (stage *Stage) UnstageBranchA_ATTRIBUTE_VALUE_STRING(a_attribute_value_string *A_ATTRIBUTE_VALUE_STRING)

func (*Stage) UnstageBranchA_ATTRIBUTE_VALUE_XHTML

func (stage *Stage) UnstageBranchA_ATTRIBUTE_VALUE_XHTML(a_attribute_value_xhtml *A_ATTRIBUTE_VALUE_XHTML)

func (*Stage) UnstageBranchA_ATTRIBUTE_VALUE_XHTML_1

func (stage *Stage) UnstageBranchA_ATTRIBUTE_VALUE_XHTML_1(a_attribute_value_xhtml_1 *A_ATTRIBUTE_VALUE_XHTML_1)

func (*Stage) UnstageBranchA_CHILDREN

func (stage *Stage) UnstageBranchA_CHILDREN(a_children *A_CHILDREN)

func (*Stage) UnstageBranchA_CORE_CONTENT

func (stage *Stage) UnstageBranchA_CORE_CONTENT(a_core_content *A_CORE_CONTENT)

func (*Stage) UnstageBranchA_DATATYPES

func (stage *Stage) UnstageBranchA_DATATYPES(a_datatypes *A_DATATYPES)

func (*Stage) UnstageBranchA_DATATYPE_DEFINITION_BOOLEAN_REF

func (stage *Stage) UnstageBranchA_DATATYPE_DEFINITION_BOOLEAN_REF(a_datatype_definition_boolean_ref *A_DATATYPE_DEFINITION_BOOLEAN_REF)

func (*Stage) UnstageBranchA_DATATYPE_DEFINITION_DATE_REF

func (stage *Stage) UnstageBranchA_DATATYPE_DEFINITION_DATE_REF(a_datatype_definition_date_ref *A_DATATYPE_DEFINITION_DATE_REF)

func (*Stage) UnstageBranchA_DATATYPE_DEFINITION_ENUMERATION_REF

func (stage *Stage) UnstageBranchA_DATATYPE_DEFINITION_ENUMERATION_REF(a_datatype_definition_enumeration_ref *A_DATATYPE_DEFINITION_ENUMERATION_REF)

func (*Stage) UnstageBranchA_DATATYPE_DEFINITION_INTEGER_REF

func (stage *Stage) UnstageBranchA_DATATYPE_DEFINITION_INTEGER_REF(a_datatype_definition_integer_ref *A_DATATYPE_DEFINITION_INTEGER_REF)

func (*Stage) UnstageBranchA_DATATYPE_DEFINITION_REAL_REF

func (stage *Stage) UnstageBranchA_DATATYPE_DEFINITION_REAL_REF(a_datatype_definition_real_ref *A_DATATYPE_DEFINITION_REAL_REF)

func (*Stage) UnstageBranchA_DATATYPE_DEFINITION_STRING_REF

func (stage *Stage) UnstageBranchA_DATATYPE_DEFINITION_STRING_REF(a_datatype_definition_string_ref *A_DATATYPE_DEFINITION_STRING_REF)

func (*Stage) UnstageBranchA_DATATYPE_DEFINITION_XHTML_REF

func (stage *Stage) UnstageBranchA_DATATYPE_DEFINITION_XHTML_REF(a_datatype_definition_xhtml_ref *A_DATATYPE_DEFINITION_XHTML_REF)

func (*Stage) UnstageBranchA_EDITABLE_ATTS

func (stage *Stage) UnstageBranchA_EDITABLE_ATTS(a_editable_atts *A_EDITABLE_ATTS)

func (*Stage) UnstageBranchA_ENUM_VALUE_REF

func (stage *Stage) UnstageBranchA_ENUM_VALUE_REF(a_enum_value_ref *A_ENUM_VALUE_REF)

func (*Stage) UnstageBranchA_OBJECT

func (stage *Stage) UnstageBranchA_OBJECT(a_object *A_OBJECT)

func (*Stage) UnstageBranchA_PROPERTIES

func (stage *Stage) UnstageBranchA_PROPERTIES(a_properties *A_PROPERTIES)

func (*Stage) UnstageBranchA_RELATION_GROUP_TYPE_REF

func (stage *Stage) UnstageBranchA_RELATION_GROUP_TYPE_REF(a_relation_group_type_ref *A_RELATION_GROUP_TYPE_REF)

func (*Stage) UnstageBranchA_SOURCE_1

func (stage *Stage) UnstageBranchA_SOURCE_1(a_source_1 *A_SOURCE_1)

func (*Stage) UnstageBranchA_SOURCE_SPECIFICATION_1

func (stage *Stage) UnstageBranchA_SOURCE_SPECIFICATION_1(a_source_specification_1 *A_SOURCE_SPECIFICATION_1)

func (*Stage) UnstageBranchA_SPECIFICATIONS

func (stage *Stage) UnstageBranchA_SPECIFICATIONS(a_specifications *A_SPECIFICATIONS)

func (*Stage) UnstageBranchA_SPECIFICATION_TYPE_REF

func (stage *Stage) UnstageBranchA_SPECIFICATION_TYPE_REF(a_specification_type_ref *A_SPECIFICATION_TYPE_REF)

func (*Stage) UnstageBranchA_SPECIFIED_VALUES

func (stage *Stage) UnstageBranchA_SPECIFIED_VALUES(a_specified_values *A_SPECIFIED_VALUES)

func (*Stage) UnstageBranchA_SPEC_ATTRIBUTES

func (stage *Stage) UnstageBranchA_SPEC_ATTRIBUTES(a_spec_attributes *A_SPEC_ATTRIBUTES)

func (*Stage) UnstageBranchA_SPEC_OBJECTS

func (stage *Stage) UnstageBranchA_SPEC_OBJECTS(a_spec_objects *A_SPEC_OBJECTS)

func (*Stage) UnstageBranchA_SPEC_OBJECT_TYPE_REF

func (stage *Stage) UnstageBranchA_SPEC_OBJECT_TYPE_REF(a_spec_object_type_ref *A_SPEC_OBJECT_TYPE_REF)

func (*Stage) UnstageBranchA_SPEC_RELATIONS

func (stage *Stage) UnstageBranchA_SPEC_RELATIONS(a_spec_relations *A_SPEC_RELATIONS)

func (*Stage) UnstageBranchA_SPEC_RELATION_GROUPS

func (stage *Stage) UnstageBranchA_SPEC_RELATION_GROUPS(a_spec_relation_groups *A_SPEC_RELATION_GROUPS)

func (*Stage) UnstageBranchA_SPEC_RELATION_REF

func (stage *Stage) UnstageBranchA_SPEC_RELATION_REF(a_spec_relation_ref *A_SPEC_RELATION_REF)

func (*Stage) UnstageBranchA_SPEC_RELATION_TYPE_REF

func (stage *Stage) UnstageBranchA_SPEC_RELATION_TYPE_REF(a_spec_relation_type_ref *A_SPEC_RELATION_TYPE_REF)

func (*Stage) UnstageBranchA_SPEC_TYPES

func (stage *Stage) UnstageBranchA_SPEC_TYPES(a_spec_types *A_SPEC_TYPES)

func (*Stage) UnstageBranchA_THE_HEADER

func (stage *Stage) UnstageBranchA_THE_HEADER(a_the_header *A_THE_HEADER)

func (*Stage) UnstageBranchA_TOOL_EXTENSIONS

func (stage *Stage) UnstageBranchA_TOOL_EXTENSIONS(a_tool_extensions *A_TOOL_EXTENSIONS)

func (*Stage) UnstageBranchDATATYPE_DEFINITION_BOOLEAN

func (stage *Stage) UnstageBranchDATATYPE_DEFINITION_BOOLEAN(datatype_definition_boolean *DATATYPE_DEFINITION_BOOLEAN)

func (*Stage) UnstageBranchDATATYPE_DEFINITION_DATE

func (stage *Stage) UnstageBranchDATATYPE_DEFINITION_DATE(datatype_definition_date *DATATYPE_DEFINITION_DATE)

func (*Stage) UnstageBranchDATATYPE_DEFINITION_ENUMERATION

func (stage *Stage) UnstageBranchDATATYPE_DEFINITION_ENUMERATION(datatype_definition_enumeration *DATATYPE_DEFINITION_ENUMERATION)

func (*Stage) UnstageBranchDATATYPE_DEFINITION_INTEGER

func (stage *Stage) UnstageBranchDATATYPE_DEFINITION_INTEGER(datatype_definition_integer *DATATYPE_DEFINITION_INTEGER)

func (*Stage) UnstageBranchDATATYPE_DEFINITION_REAL

func (stage *Stage) UnstageBranchDATATYPE_DEFINITION_REAL(datatype_definition_real *DATATYPE_DEFINITION_REAL)

func (*Stage) UnstageBranchDATATYPE_DEFINITION_STRING

func (stage *Stage) UnstageBranchDATATYPE_DEFINITION_STRING(datatype_definition_string *DATATYPE_DEFINITION_STRING)

func (*Stage) UnstageBranchDATATYPE_DEFINITION_XHTML

func (stage *Stage) UnstageBranchDATATYPE_DEFINITION_XHTML(datatype_definition_xhtml *DATATYPE_DEFINITION_XHTML)

func (*Stage) UnstageBranchEMBEDDED_VALUE

func (stage *Stage) UnstageBranchEMBEDDED_VALUE(embedded_value *EMBEDDED_VALUE)

func (*Stage) UnstageBranchENUM_VALUE

func (stage *Stage) UnstageBranchENUM_VALUE(enum_value *ENUM_VALUE)

func (*Stage) UnstageBranchEmbeddedJpgImage

func (stage *Stage) UnstageBranchEmbeddedJpgImage(embeddedjpgimage *EmbeddedJpgImage)

func (*Stage) UnstageBranchEmbeddedPngImage

func (stage *Stage) UnstageBranchEmbeddedPngImage(embeddedpngimage *EmbeddedPngImage)

func (*Stage) UnstageBranchEmbeddedSvgImage

func (stage *Stage) UnstageBranchEmbeddedSvgImage(embeddedsvgimage *EmbeddedSvgImage)

func (*Stage) UnstageBranchKill

func (stage *Stage) UnstageBranchKill(kill *Kill)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry(map_attribute_definition_boolean_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubjectEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry(map_attribute_definition_boolean_showintableentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTableEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry(map_attribute_definition_boolean_showintitleentry *Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitleEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry(map_attribute_definition_date_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubjectEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry(map_attribute_definition_date_showintableentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTableEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry(map_attribute_definition_date_showintitleentry *Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitleEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry(map_attribute_definition_enumeration_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubjectEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry(map_attribute_definition_enumeration_showintableentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTableEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry(map_attribute_definition_enumeration_showintitleentry *Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitleEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry(map_attribute_definition_integer_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubjectEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry(map_attribute_definition_integer_showintableentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTableEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry(map_attribute_definition_integer_showintitleentry *Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitleEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry(map_attribute_definition_real_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubjectEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry(map_attribute_definition_real_showintableentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTableEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry(map_attribute_definition_real_showintitleentry *Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitleEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry(map_attribute_definition_string_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubjectEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry(map_attribute_definition_string_showintableentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTableEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry(map_attribute_definition_string_showintitleentry *Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitleEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry(map_attribute_definition_xhtml_showinsubjectentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubjectEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry(map_attribute_definition_xhtml_showintableentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTableEntry)

func (*Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry

func (stage *Stage) UnstageBranchMap_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry(map_attribute_definition_xhtml_showintitleentry *Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitleEntry)

func (*Stage) UnstageBranchMap_SPECIFICATION_Nodes_expandedEntry

func (stage *Stage) UnstageBranchMap_SPECIFICATION_Nodes_expandedEntry(map_specification_nodes_expandedentry *Map_SPECIFICATION_Nodes_expandedEntry)

func (*Stage) UnstageBranchMap_SPEC_OBJECT_TYPE_isNodeExpandedEntry

func (stage *Stage) UnstageBranchMap_SPEC_OBJECT_TYPE_isNodeExpandedEntry(map_spec_object_type_isnodeexpandedentry *Map_SPEC_OBJECT_TYPE_isNodeExpandedEntry)

func (*Stage) UnstageBranchMap_SPEC_OBJECT_TYPE_showIdentifierEntry

func (stage *Stage) UnstageBranchMap_SPEC_OBJECT_TYPE_showIdentifierEntry(map_spec_object_type_showidentifierentry *Map_SPEC_OBJECT_TYPE_showIdentifierEntry)

func (*Stage) UnstageBranchMap_SPEC_OBJECT_TYPE_showNameEntry

func (stage *Stage) UnstageBranchMap_SPEC_OBJECT_TYPE_showNameEntry(map_spec_object_type_shownameentry *Map_SPEC_OBJECT_TYPE_showNameEntry)

func (*Stage) UnstageBranchRELATION_GROUP

func (stage *Stage) UnstageBranchRELATION_GROUP(relation_group *RELATION_GROUP)

func (*Stage) UnstageBranchRELATION_GROUP_TYPE

func (stage *Stage) UnstageBranchRELATION_GROUP_TYPE(relation_group_type *RELATION_GROUP_TYPE)

func (*Stage) UnstageBranchREQ_IF

func (stage *Stage) UnstageBranchREQ_IF(req_if *REQ_IF)

func (*Stage) UnstageBranchREQ_IF_CONTENT

func (stage *Stage) UnstageBranchREQ_IF_CONTENT(req_if_content *REQ_IF_CONTENT)

func (*Stage) UnstageBranchREQ_IF_HEADER

func (stage *Stage) UnstageBranchREQ_IF_HEADER(req_if_header *REQ_IF_HEADER)

func (*Stage) UnstageBranchREQ_IF_TOOL_EXTENSION

func (stage *Stage) UnstageBranchREQ_IF_TOOL_EXTENSION(req_if_tool_extension *REQ_IF_TOOL_EXTENSION)

func (*Stage) UnstageBranchRenderingConfiguration

func (stage *Stage) UnstageBranchRenderingConfiguration(renderingconfiguration *RenderingConfiguration)

func (*Stage) UnstageBranchSPECIFICATION

func (stage *Stage) UnstageBranchSPECIFICATION(specification *SPECIFICATION)

func (*Stage) UnstageBranchSPECIFICATION_TYPE

func (stage *Stage) UnstageBranchSPECIFICATION_TYPE(specification_type *SPECIFICATION_TYPE)

func (*Stage) UnstageBranchSPEC_HIERARCHY

func (stage *Stage) UnstageBranchSPEC_HIERARCHY(spec_hierarchy *SPEC_HIERARCHY)

func (*Stage) UnstageBranchSPEC_OBJECT

func (stage *Stage) UnstageBranchSPEC_OBJECT(spec_object *SPEC_OBJECT)

func (*Stage) UnstageBranchSPEC_OBJECT_TYPE

func (stage *Stage) UnstageBranchSPEC_OBJECT_TYPE(spec_object_type *SPEC_OBJECT_TYPE)

func (*Stage) UnstageBranchSPEC_RELATION

func (stage *Stage) UnstageBranchSPEC_RELATION(spec_relation *SPEC_RELATION)

func (*Stage) UnstageBranchSPEC_RELATION_TYPE

func (stage *Stage) UnstageBranchSPEC_RELATION_TYPE(spec_relation_type *SPEC_RELATION_TYPE)

func (*Stage) UnstageBranchStaticWebSite

func (stage *Stage) UnstageBranchStaticWebSite(staticwebsite *StaticWebSite)

func (*Stage) UnstageBranchStaticWebSiteChapter

func (stage *Stage) UnstageBranchStaticWebSiteChapter(staticwebsitechapter *StaticWebSiteChapter)

func (*Stage) UnstageBranchStaticWebSiteGeneratedImage

func (stage *Stage) UnstageBranchStaticWebSiteGeneratedImage(staticwebsitegeneratedimage *StaticWebSiteGeneratedImage)

func (*Stage) UnstageBranchStaticWebSiteImage

func (stage *Stage) UnstageBranchStaticWebSiteImage(staticwebsiteimage *StaticWebSiteImage)

func (*Stage) UnstageBranchStaticWebSiteParagraph

func (stage *Stage) UnstageBranchStaticWebSiteParagraph(staticwebsiteparagraph *StaticWebSiteParagraph)

func (*Stage) UnstageBranchXHTML_CONTENT

func (stage *Stage) UnstageBranchXHTML_CONTENT(xhtml_content *XHTML_CONTENT)

type Stager

type Stager struct {

	// maps for navigating the ReqIF data
	Map_id_DATATYPE_DEFINITION_XHTML       map[string]*DATATYPE_DEFINITION_XHTML
	Map_id_DATATYPE_DEFINITION_STRING      map[string]*DATATYPE_DEFINITION_STRING
	Map_id_DATATYPE_DEFINITION_BOOLEAN     map[string]*DATATYPE_DEFINITION_BOOLEAN
	Map_id_DATATYPE_DEFINITION_INTEGER     map[string]*DATATYPE_DEFINITION_INTEGER
	Map_id_DATATYPE_DEFINITION_REAL        map[string]*DATATYPE_DEFINITION_REAL
	Map_id_DATATYPE_DEFINITION_DATE        map[string]*DATATYPE_DEFINITION_DATE
	Map_id_DATATYPE_DEFINITION_ENUMERATION map[string]*DATATYPE_DEFINITION_ENUMERATION

	Map_id_SPEC_OBJECT_TYPE   map[string]*SPEC_OBJECT_TYPE
	Map_id_SPECIFICATION_TYPE map[string]*SPECIFICATION_TYPE
	Map_id_SPEC_OBJECT        map[string]*SPEC_OBJECT

	Map_id_ATTRIBUTE_DEFINITION_XHTML       map[string]*ATTRIBUTE_DEFINITION_XHTML
	Map_id_ATTRIBUTE_DEFINITION_STRING      map[string]*ATTRIBUTE_DEFINITION_STRING
	Map_id_ATTRIBUTE_DEFINITION_BOOLEAN     map[string]*ATTRIBUTE_DEFINITION_BOOLEAN
	Map_id_ATTRIBUTE_DEFINITION_INTEGER     map[string]*ATTRIBUTE_DEFINITION_INTEGER
	Map_id_ATTRIBUTE_DEFINITION_DATE        map[string]*ATTRIBUTE_DEFINITION_DATE
	Map_id_ATTRIBUTE_DEFINITION_REAL        map[string]*ATTRIBUTE_DEFINITION_REAL
	Map_id_ATTRIBUTE_DEFINITION_ENUMERATION map[string]*ATTRIBUTE_DEFINITION_ENUMERATION

	Map_SPEC_OBJECT_TYPE_Spec_nbInstance   map[*SPEC_OBJECT_TYPE]int
	Map_SPECIFICATION_TYPE_Spec_nbInstance map[*SPECIFICATION_TYPE]int
	Map_SPEC_RELATION_TYPE_Spec_nbInstance map[*SPEC_RELATION_TYPE]int

	Map_SPEC_OBJECT_TYPE_isHeading      map[*SPEC_OBJECT_TYPE]bool
	Map_SPEC_OBJECT_TYPE_isNodeExpanded map[*SPEC_OBJECT_TYPE]bool // is the tree node expanded in the UX

	Map_ATTRIBUTE_DEFINITION_XHTML_Spec_nbInstance       map[*ATTRIBUTE_DEFINITION_XHTML]int
	Map_ATTRIBUTE_DEFINITION_STRING_Spec_nbInstance      map[*ATTRIBUTE_DEFINITION_STRING]int
	Map_ATTRIBUTE_DEFINITION_BOOLEAN_Spec_nbInstance     map[*ATTRIBUTE_DEFINITION_BOOLEAN]int
	Map_ATTRIBUTE_DEFINITION_INTEGER_Spec_nbInstance     map[*ATTRIBUTE_DEFINITION_INTEGER]int
	Map_ATTRIBUTE_DEFINITION_DATE_Spec_nbInstance        map[*ATTRIBUTE_DEFINITION_DATE]int
	Map_ATTRIBUTE_DEFINITION_REAL_Spec_nbInstance        map[*ATTRIBUTE_DEFINITION_REAL]int
	Map_ATTRIBUTE_DEFINITION_ENUMERATION_Spec_nbInstance map[*ATTRIBUTE_DEFINITION_ENUMERATION]int

	Map_ENUM_VALUE_Spec_nbInstance map[*ENUM_VALUE]int

	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTitle       map[*ATTRIBUTE_DEFINITION_XHTML]bool
	Map_ATTRIBUTE_DEFINITION_STRING_ShowInTitle      map[*ATTRIBUTE_DEFINITION_STRING]bool
	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTitle     map[*ATTRIBUTE_DEFINITION_BOOLEAN]bool
	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTitle     map[*ATTRIBUTE_DEFINITION_INTEGER]bool
	Map_ATTRIBUTE_DEFINITION_DATE_ShowInTitle        map[*ATTRIBUTE_DEFINITION_DATE]bool
	Map_ATTRIBUTE_DEFINITION_REAL_ShowInTitle        map[*ATTRIBUTE_DEFINITION_REAL]bool
	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTitle map[*ATTRIBUTE_DEFINITION_ENUMERATION]bool

	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInTable       map[*ATTRIBUTE_DEFINITION_XHTML]bool
	Map_ATTRIBUTE_DEFINITION_STRING_ShowInTable      map[*ATTRIBUTE_DEFINITION_STRING]bool
	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInTable     map[*ATTRIBUTE_DEFINITION_BOOLEAN]bool
	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInTable     map[*ATTRIBUTE_DEFINITION_INTEGER]bool
	Map_ATTRIBUTE_DEFINITION_DATE_ShowInTable        map[*ATTRIBUTE_DEFINITION_DATE]bool
	Map_ATTRIBUTE_DEFINITION_REAL_ShowInTable        map[*ATTRIBUTE_DEFINITION_REAL]bool
	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInTable map[*ATTRIBUTE_DEFINITION_ENUMERATION]bool

	Map_ATTRIBUTE_DEFINITION_XHTML_ShowInSubject       map[*ATTRIBUTE_DEFINITION_XHTML]bool
	Map_ATTRIBUTE_DEFINITION_STRING_ShowInSubject      map[*ATTRIBUTE_DEFINITION_STRING]bool
	Map_ATTRIBUTE_DEFINITION_BOOLEAN_ShowInSubject     map[*ATTRIBUTE_DEFINITION_BOOLEAN]bool
	Map_ATTRIBUTE_DEFINITION_INTEGER_ShowInSubject     map[*ATTRIBUTE_DEFINITION_INTEGER]bool
	Map_ATTRIBUTE_DEFINITION_DATE_ShowInSubject        map[*ATTRIBUTE_DEFINITION_DATE]bool
	Map_ATTRIBUTE_DEFINITION_REAL_ShowInSubject        map[*ATTRIBUTE_DEFINITION_REAL]bool
	Map_ATTRIBUTE_DEFINITION_ENUMERATION_ShowInSubject map[*ATTRIBUTE_DEFINITION_ENUMERATION]bool

	Map_id_ENUM_VALUE map[string]*ENUM_VALUE

	Map_id_SPEC_RELATION_TYPE map[string]*SPEC_RELATION_TYPE

	Map_SPECIFICATION_Nodes_expanded    map[*SPECIFICATION]bool
	Map_SPEC_OBJECT_TYPE_showIdentifier map[*SPEC_OBJECT_TYPE]bool
	Map_SPEC_OBJECT_TYPE_showName       map[*SPEC_OBJECT_TYPE]bool
	// contains filtered or unexported fields
}

func NewStager

func NewStager(
	r *gin.Engine,
	splitStage *split.Stage,
	stage *Stage,
	pathToReqifFile string,
	pathToOutputReqifFile string,

	dataTypesTreeUpdater DataTypesTreeUpdaterInterface,
	specTypesTreeUpdater SpecTypesTreeUpdaterInterface,

	specObjectsTreeUpdater SpecObjectsTreeUpdaterInterface,
	specRelationsTreeUpdater SpecRelationsTreeUpdaterInterface,
	specificationsTreeUpdater SpecificationsTreeUpdaterInterface,

	exporter Exporter,

	objectNamer ObjectNamerInterface) (
	stager *Stager,
)

func (*Stager) FromRenderingConfiguration

func (s *Stager) FromRenderingConfiguration(conf *RenderingConfiguration)

FromRenderingConfiguration populates the Stager's maps based on a RenderingConfiguration.

This method iterates through the entries in the configuration and updates the corresponding values in the Stager's maps.

CRITICAL ASSUMPTION: This method assumes that the Stager's maps (e.g., s.Map_SPEC_OBJECT_TYPE_isNodeExpanded) are already populated with all possible pointer keys. It finds the matching key by comparing IDENTIFIER fields. It does NOT create new pointer keys. NOTE: This implementation uses nested loops for simplicity, which may be inefficient for very large maps.

func (*Stager) GetDataTypeTreeStage

func (stager *Stager) GetDataTypeTreeStage() (dataTypeTreeStage *tree.Stage)

func (*Stager) GetLoadStage

func (stager *Stager) GetLoadStage() (s *load.Stage)

func (*Stager) GetMarkdownStage

func (stager *Stager) GetMarkdownStage() (s *markdown.Stage)

func (*Stager) GetPathToOutputReqifFile

func (stager *Stager) GetPathToOutputReqifFile() string

func (*Stager) GetRootREQIF

func (stager *Stager) GetRootREQIF() (rootReqif *REQ_IF)

func (*Stager) GetSelectedSpecification

func (stager *Stager) GetSelectedSpecification() (selectedSpecification *SPECIFICATION)

func (*Stager) GetSpecObjectsTreeStage

func (stager *Stager) GetSpecObjectsTreeStage() (s *tree.Stage)

func (*Stager) GetSpecRelationsTreeStage

func (stager *Stager) GetSpecRelationsTreeStage() (s *tree.Stage)

func (*Stager) GetSpecTypesTreeStage

func (stager *Stager) GetSpecTypesTreeStage() (s *tree.Stage)

func (*Stager) GetSpecTypesTreeUpdater

func (stager *Stager) GetSpecTypesTreeUpdater() (specTypesTreeUpdater SpecTypesTreeUpdaterInterface)

func (*Stager) GetSpecificationsTreeStage

func (stager *Stager) GetSpecificationsTreeStage() (s *tree.Stage)

func (*Stager) GetSpecificationsTreeUpdater

func (stager *Stager) GetSpecificationsTreeUpdater() (specificationsTreeUpdater SpecificationsTreeUpdaterInterface)

func (*Stager) GetSsgStage

func (stager *Stager) GetSsgStage() (s *ssg.Stage)

func (*Stager) GetStage

func (stager *Stager) GetStage() (stage *Stage)

func (*Stager) SetModelGenerator

func (stager *Stager) SetModelGenerator(modelGenerator ModelGeneratorInterface)

func (*Stager) SetSelectedSpecification

func (stager *Stager) SetSelectedSpecification(selectedSpecification *SPECIFICATION)

func (*Stager) ToRenderingConfiguration

func (s *Stager) ToRenderingConfiguration(pathToReqifFile string) *RenderingConfiguration

ToRenderingConfiguration creates a RenderingConfiguration instance from the Stager's fields. This method iterates through each map in the Stager, converts its key-value pairs into a slice of the corresponding Entry structs, and populates a new RenderingConfiguration.

The code assumes that all key types (e.g., *SPEC_OBJECT_TYPE, *ATTRIBUTE_DEFINITION_STRING) have an exported string field named 'IDENTIFIER' which is used to populate the 'Name' field of each entry.

This version omits explicit length checks on the maps, as a 'for...range' loop over a nil or empty map is a safe no-op in Go. This results in cleaner, more concise code.

func (*Stager) UpdateAndCommitRenderingTabButtonStage

func (stager *Stager) UpdateAndCommitRenderingTabButtonStage()

func (*Stager) UpdateAndCommitSsgStage

func (stager *Stager) UpdateAndCommitSsgStage()

func (*Stager) UpdateAndCommitWelcomeTabButtonStage

func (stager *Stager) UpdateAndCommitWelcomeTabButtonStage()

type StaticWebSite

type StaticWebSite struct {
	Name string

	//gong:text
	//gong:width 900 gong:height 600
	MarkdownContent string

	Chapters []*StaticWebSiteChapter

	InputImagesDir     string
	OutputStaticWebDir string

	VersionInfo string
}

func CopyBranchStaticWebSite

func CopyBranchStaticWebSite(mapOrigCopy map[any]any, staticwebsiteFrom *StaticWebSite) (staticwebsiteTo *StaticWebSite)

func (*StaticWebSite) Checkout

func (staticwebsite *StaticWebSite) Checkout(stage *Stage) *StaticWebSite

Checkout staticwebsite to the back repo (if it is already staged)

func (*StaticWebSite) Commit

func (staticwebsite *StaticWebSite) Commit(stage *Stage) *StaticWebSite

commit staticwebsite to the back repo (if it is already staged)

func (*StaticWebSite) CommitVoid

func (staticwebsite *StaticWebSite) CommitVoid(stage *Stage)

func (*StaticWebSite) CopyBasicFields

func (from *StaticWebSite) CopyBasicFields(to *StaticWebSite)

func (*StaticWebSite) GetName

func (staticwebsite *StaticWebSite) GetName() (res string)

for satisfaction of GongStruct interface

func (*StaticWebSite) Stage

func (staticwebsite *StaticWebSite) Stage(stage *Stage) *StaticWebSite

Stage puts staticwebsite to the model stage

func (*StaticWebSite) Unstage

func (staticwebsite *StaticWebSite) Unstage(stage *Stage) *StaticWebSite

Unstage removes staticwebsite off the model stage

func (*StaticWebSite) UnstageVoid

func (staticwebsite *StaticWebSite) UnstageVoid(stage *Stage)

UnstageVoid removes staticwebsite off the model stage

type StaticWebSiteChapter

type StaticWebSiteChapter struct {
	Name string

	//gong:text
	//gong:width 900 gong:height 600
	MarkdownContent string

	Paragraphs []*StaticWebSiteParagraph
}

func CopyBranchStaticWebSiteChapter

func CopyBranchStaticWebSiteChapter(mapOrigCopy map[any]any, staticwebsitechapterFrom *StaticWebSiteChapter) (staticwebsitechapterTo *StaticWebSiteChapter)

func (*StaticWebSiteChapter) Checkout

func (staticwebsitechapter *StaticWebSiteChapter) Checkout(stage *Stage) *StaticWebSiteChapter

Checkout staticwebsitechapter to the back repo (if it is already staged)

func (*StaticWebSiteChapter) Commit

func (staticwebsitechapter *StaticWebSiteChapter) Commit(stage *Stage) *StaticWebSiteChapter

commit staticwebsitechapter to the back repo (if it is already staged)

func (*StaticWebSiteChapter) CommitVoid

func (staticwebsitechapter *StaticWebSiteChapter) CommitVoid(stage *Stage)

func (*StaticWebSiteChapter) CopyBasicFields

func (from *StaticWebSiteChapter) CopyBasicFields(to *StaticWebSiteChapter)

func (*StaticWebSiteChapter) GetName

func (staticwebsitechapter *StaticWebSiteChapter) GetName() (res string)

for satisfaction of GongStruct interface

func (*StaticWebSiteChapter) Stage

func (staticwebsitechapter *StaticWebSiteChapter) Stage(stage *Stage) *StaticWebSiteChapter

Stage puts staticwebsitechapter to the model stage

func (*StaticWebSiteChapter) Unstage

func (staticwebsitechapter *StaticWebSiteChapter) Unstage(stage *Stage) *StaticWebSiteChapter

Unstage removes staticwebsitechapter off the model stage

func (*StaticWebSiteChapter) UnstageVoid

func (staticwebsitechapter *StaticWebSiteChapter) UnstageVoid(stage *Stage)

UnstageVoid removes staticwebsitechapter off the model stage

type StaticWebSiteChapter_WOP

type StaticWebSiteChapter_WOP struct {
	Name string

	MarkdownContent string
}

type StaticWebSiteGeneratedImage

type StaticWebSiteGeneratedImage struct {
	Name                string
	SourceDirectoryPath string // for instance "../../../images/logo.svg"
	Width               int
	Height              int
}

the generated image will be unstaged at the end

func CopyBranchStaticWebSiteGeneratedImage

func CopyBranchStaticWebSiteGeneratedImage(mapOrigCopy map[any]any, staticwebsitegeneratedimageFrom *StaticWebSiteGeneratedImage) (staticwebsitegeneratedimageTo *StaticWebSiteGeneratedImage)

func (*StaticWebSiteGeneratedImage) Checkout

func (staticwebsitegeneratedimage *StaticWebSiteGeneratedImage) Checkout(stage *Stage) *StaticWebSiteGeneratedImage

Checkout staticwebsitegeneratedimage to the back repo (if it is already staged)

func (*StaticWebSiteGeneratedImage) Commit

func (staticwebsitegeneratedimage *StaticWebSiteGeneratedImage) Commit(stage *Stage) *StaticWebSiteGeneratedImage

commit staticwebsitegeneratedimage to the back repo (if it is already staged)

func (*StaticWebSiteGeneratedImage) CommitVoid

func (staticwebsitegeneratedimage *StaticWebSiteGeneratedImage) CommitVoid(stage *Stage)

func (*StaticWebSiteGeneratedImage) CopyBasicFields

func (from *StaticWebSiteGeneratedImage) CopyBasicFields(to *StaticWebSiteGeneratedImage)

func (*StaticWebSiteGeneratedImage) GetName

func (staticwebsitegeneratedimage *StaticWebSiteGeneratedImage) GetName() (res string)

for satisfaction of GongStruct interface

func (*StaticWebSiteGeneratedImage) Stage

func (staticwebsitegeneratedimage *StaticWebSiteGeneratedImage) Stage(stage *Stage) *StaticWebSiteGeneratedImage

Stage puts staticwebsitegeneratedimage to the model stage

func (*StaticWebSiteGeneratedImage) Unstage

func (staticwebsitegeneratedimage *StaticWebSiteGeneratedImage) Unstage(stage *Stage) *StaticWebSiteGeneratedImage

Unstage removes staticwebsitegeneratedimage off the model stage

func (*StaticWebSiteGeneratedImage) UnstageVoid

func (staticwebsitegeneratedimage *StaticWebSiteGeneratedImage) UnstageVoid(stage *Stage)

UnstageVoid removes staticwebsitegeneratedimage off the model stage

type StaticWebSiteGeneratedImage_WOP

type StaticWebSiteGeneratedImage_WOP struct {
	Name string

	SourceDirectoryPath string

	Width int

	Height int
}

type StaticWebSiteImage

type StaticWebSiteImage struct {
	Name                string
	SourceDirectoryPath string // for instance "../../../images/logo.svg"

	Width  int
	Height int
}

Iamge needs to be copied to "/static/images"

func CopyBranchStaticWebSiteImage

func CopyBranchStaticWebSiteImage(mapOrigCopy map[any]any, staticwebsiteimageFrom *StaticWebSiteImage) (staticwebsiteimageTo *StaticWebSiteImage)

func (*StaticWebSiteImage) Checkout

func (staticwebsiteimage *StaticWebSiteImage) Checkout(stage *Stage) *StaticWebSiteImage

Checkout staticwebsiteimage to the back repo (if it is already staged)

func (*StaticWebSiteImage) Commit

func (staticwebsiteimage *StaticWebSiteImage) Commit(stage *Stage) *StaticWebSiteImage

commit staticwebsiteimage to the back repo (if it is already staged)

func (*StaticWebSiteImage) CommitVoid

func (staticwebsiteimage *StaticWebSiteImage) CommitVoid(stage *Stage)

func (*StaticWebSiteImage) CopyBasicFields

func (from *StaticWebSiteImage) CopyBasicFields(to *StaticWebSiteImage)

func (*StaticWebSiteImage) GetName

func (staticwebsiteimage *StaticWebSiteImage) GetName() (res string)

for satisfaction of GongStruct interface

func (*StaticWebSiteImage) Stage

func (staticwebsiteimage *StaticWebSiteImage) Stage(stage *Stage) *StaticWebSiteImage

Stage puts staticwebsiteimage to the model stage

func (*StaticWebSiteImage) Unstage

func (staticwebsiteimage *StaticWebSiteImage) Unstage(stage *Stage) *StaticWebSiteImage

Unstage removes staticwebsiteimage off the model stage

func (*StaticWebSiteImage) UnstageVoid

func (staticwebsiteimage *StaticWebSiteImage) UnstageVoid(stage *Stage)

UnstageVoid removes staticwebsiteimage off the model stage

type StaticWebSiteImage_WOP

type StaticWebSiteImage_WOP struct {
	Name string

	SourceDirectoryPath string

	Width int

	Height int
}

type StaticWebSiteParagraph

type StaticWebSiteParagraph struct {
	Name string

	//gong:text
	//gong:width 300 gong:height 300
	LegendMarkdownContent string

	Image *StaticWebSiteImage
}

func CopyBranchStaticWebSiteParagraph

func CopyBranchStaticWebSiteParagraph(mapOrigCopy map[any]any, staticwebsiteparagraphFrom *StaticWebSiteParagraph) (staticwebsiteparagraphTo *StaticWebSiteParagraph)

func (*StaticWebSiteParagraph) Checkout

func (staticwebsiteparagraph *StaticWebSiteParagraph) Checkout(stage *Stage) *StaticWebSiteParagraph

Checkout staticwebsiteparagraph to the back repo (if it is already staged)

func (*StaticWebSiteParagraph) Commit

func (staticwebsiteparagraph *StaticWebSiteParagraph) Commit(stage *Stage) *StaticWebSiteParagraph

commit staticwebsiteparagraph to the back repo (if it is already staged)

func (*StaticWebSiteParagraph) CommitVoid

func (staticwebsiteparagraph *StaticWebSiteParagraph) CommitVoid(stage *Stage)

func (*StaticWebSiteParagraph) CopyBasicFields

func (from *StaticWebSiteParagraph) CopyBasicFields(to *StaticWebSiteParagraph)

func (*StaticWebSiteParagraph) GetName

func (staticwebsiteparagraph *StaticWebSiteParagraph) GetName() (res string)

for satisfaction of GongStruct interface

func (*StaticWebSiteParagraph) Stage

func (staticwebsiteparagraph *StaticWebSiteParagraph) Stage(stage *Stage) *StaticWebSiteParagraph

Stage puts staticwebsiteparagraph to the model stage

func (*StaticWebSiteParagraph) Unstage

func (staticwebsiteparagraph *StaticWebSiteParagraph) Unstage(stage *Stage) *StaticWebSiteParagraph

Unstage removes staticwebsiteparagraph off the model stage

func (*StaticWebSiteParagraph) UnstageVoid

func (staticwebsiteparagraph *StaticWebSiteParagraph) UnstageVoid(stage *Stage)

UnstageVoid removes staticwebsiteparagraph off the model stage

type StaticWebSiteParagraph_WOP

type StaticWebSiteParagraph_WOP struct {
	Name string

	LegendMarkdownContent string
}

type StaticWebSite_WOP

type StaticWebSite_WOP struct {
	Name string

	MarkdownContent string

	InputImagesDir string

	OutputStaticWebDir string

	VersionInfo string
}

type Tabulator

type Tabulator interface {
	AddSheet(sheetName string)
	AddRow(sheetName string) int
	AddCell(sheetName string, rowId, columnIndex int, value string)
}

Tabulator is an interface for writing to a table strings

type XHTML_CONTENT

type XHTML_CONTENT struct {
	Name string `xml:"-"`

	// in case the extension has base type xs:string, one has to had the chardata stuff
	// gong:text gong:width 600 gong:height 400
	EnclosedText string `xml:",innerxml"`

	// in case the extension has base type xs:string, one has to had the chardata stuff
	// gong:text gong:width 600 gong:height 400
	PureText string `xml:"-"`
}

XHTML_CONTENT Named source named complex type "XHTML-CONTENT"

func CopyBranchXHTML_CONTENT

func CopyBranchXHTML_CONTENT(mapOrigCopy map[any]any, xhtml_contentFrom *XHTML_CONTENT) (xhtml_contentTo *XHTML_CONTENT)

func (*XHTML_CONTENT) Checkout

func (xhtml_content *XHTML_CONTENT) Checkout(stage *Stage) *XHTML_CONTENT

Checkout xhtml_content to the back repo (if it is already staged)

func (*XHTML_CONTENT) Commit

func (xhtml_content *XHTML_CONTENT) Commit(stage *Stage) *XHTML_CONTENT

commit xhtml_content to the back repo (if it is already staged)

func (*XHTML_CONTENT) CommitVoid

func (xhtml_content *XHTML_CONTENT) CommitVoid(stage *Stage)

func (*XHTML_CONTENT) CopyBasicFields

func (from *XHTML_CONTENT) CopyBasicFields(to *XHTML_CONTENT)

func (*XHTML_CONTENT) GetName

func (xhtml_content *XHTML_CONTENT) GetName() (res string)

for satisfaction of GongStruct interface

func (*XHTML_CONTENT) Stage

func (xhtml_content *XHTML_CONTENT) Stage(stage *Stage) *XHTML_CONTENT

Stage puts xhtml_content to the model stage

func (*XHTML_CONTENT) Unstage

func (xhtml_content *XHTML_CONTENT) Unstage(stage *Stage) *XHTML_CONTENT

Unstage removes xhtml_content off the model stage

func (*XHTML_CONTENT) UnstageVoid

func (xhtml_content *XHTML_CONTENT) UnstageVoid(stage *Stage)

UnstageVoid removes xhtml_content off the model stage

type XHTML_CONTENT_WOP

type XHTML_CONTENT_WOP struct {
	Name string

	EnclosedText string

	PureText string
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL