���using System; using System.Xml; /********************************************************************************************** * Copyright (c) 2001-2023 Liquid Technologies Limited. All rights reserved. * See www.liquid-technologies.com for product details. * * Please see products End User License Agreement for distribution permissions. * * WARNING: THIS FILE IS GENERATED * Changes made outside of ##HAND_CODED_BLOCK_START blocks will be overwritten * * Generation : by Liquid XML Data Binder 19.0.14.11049 * Using Schema: DerivedByExtension.xsd **********************************************************************************************/ namespace DerivedByExtensionLib { /// <summary> /// This class represents the Element Person /// </summary> [LiquidTechnologies.Runtime.XmlObjectInfo(LiquidTechnologies.Runtime.XmlObjectBase.XmlElementGroupType.Sequence, LiquidTechnologies.Runtime.XmlObjectBase.XmlElementType.Element, "Person", "", true, false, false)] public partial class Person : DerivedByExtensionLib.XmlCommonBase { #region Constructors /// <summary> /// Constructor for Person /// </summary> /// <remarks> /// The class is created with all the mandatory fields populated with the /// default data. /// All Collection object are created. /// However any 1-n relationships (these are represented as collections) are /// empty. To comply with the schema these must be populated before the xml /// obtained from ToXml is valid against the schema DerivedByExtension.xsd /// </remarks> public Person() { _elementName = "Person"; Init(); } public Person(string elementName) { _elementName = elementName; Init(); } #endregion #region Initialization methods for the class /// <summary> /// Initializes the class /// </summary> /// <remarks> /// This creates all the mandatory fields (populated with the default data) /// All Collection object are created. /// However any 1-n relationships (these are represented as collections) are /// empty. To comply with the schema these must be populated before the xml /// obtained from ToXml is valid against the schema DerivedByExtension.xsd. /// </remarks> protected override void Init() { DerivedByExtensionLib.Registration.iRegistrationIndicator = 0; // causes registration to take place m_Age = 0; m_HomeAddress = null; // ##HAND_CODED_BLOCK_START ID="Additional Inits"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS // Add Additional initialization code here... // ##HAND_CODED_BLOCK_END ID="Additional Inits"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS } #endregion #region ICloneable Interface /// <summary> /// Allows the class to be copied /// </summary> /// <remarks> /// Performs a 'deep copy' of all the data in the class (and its children) /// </remarks> public override object Clone() { DerivedByExtensionLib.Person newObject = new DerivedByExtensionLib.Person(_elementName); newObject.m_Age = m_Age; newObject.m_HomeAddress = null; if (m_HomeAddress != null) newObject.m_HomeAddress = (DerivedByExtensionLib.IAddress)m_HomeAddress.Clone(); // ##HAND_CODED_BLOCK_START ID="Additional clone"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS // Add Additional clone code here... // ##HAND_CODED_BLOCK_END ID="Additional clone"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS return newObject; } #endregion #region Member variables protected override string TargetNamespace { get { return ""; } } #region Attribute - Age /// <summary> /// Represents a mandatory Element in the XML document /// </summary> /// <remarks> /// This property is represented as an Element in the XML. /// It is mandatory and therefore must be populated within the XML. /// It is defaulted to 0. /// </remarks> [LiquidTechnologies.Runtime.ElementInfoSeqPrimMnd("Age", "", null, LiquidTechnologies.Runtime.Conversions.ConversionType.type_ui1, null, LiquidTechnologies.Runtime.WhitespaceUtils.WhitespaceRule.Collapse, "", -1, -1, "", "", "", "", -1, -1, -1, null)] public byte Age { get { return m_Age; } set { m_Age = value; } } protected byte m_Age; #endregion #region Attribute - HomeAddress /// <summary> /// Represents a mandatory Element in the XML document /// </summary> /// <remarks> /// This property is represented as an Element in the XML. /// It is mandatory and therefore must be populated within the XML. /// If this property is set, then the object will be COPIED. If the property is set to null an exception is raised. /// </remarks> [LiquidTechnologies.Runtime.ElementInfoSeqAbsClsMnd("HomeAddress", "", LiquidTechnologies.Runtime.XmlObjectBase.XmlElementType.Element, typeof(DerivedByExtensionLib.ClassFactory), "IAddressCreateObject")] public DerivedByExtensionLib.IAddress HomeAddress { get { return m_HomeAddress; } set { Throw_IfPropertyIsNull(value, "HomeAddress"); if (value != null) { // The object being set needs to take the element name from the class (the type="" attribute will then be set in the XML) SetElementName(value.GetBase(), "HomeAddress"); } m_HomeAddress = value; } } protected DerivedByExtensionLib.IAddress m_HomeAddress; #endregion #region Attribute - Namespace public override string Namespace { get { return ""; } } #endregion #region Attribute - GetBase public override LiquidTechnologies.Runtime.XmlObjectBase GetBase() { return this; } #endregion #endregion // ##HAND_CODED_BLOCK_START ID="Additional Methods"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS // Add Additional Methods and members here... // ##HAND_CODED_BLOCK_END ID="Additional Methods"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS } }