���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: SimpleHierarchy.xsd **********************************************************************************************/ namespace SimpleHierarchyLib { /// <summary> /// This class represents the ComplexType Payment /// </summary> [LiquidTechnologies.Runtime.XmlObjectInfo(LiquidTechnologies.Runtime.XmlObjectBase.XmlElementGroupType.Choice, LiquidTechnologies.Runtime.XmlObjectBase.XmlElementType.Element, "Payment", "", true, false, false)] public partial class Payment : SimpleHierarchyLib.XmlCommonBase { #region Constructors /// <summary> /// Constructor for Payment /// </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 SimpleHierarchy.xsd /// </remarks> public Payment() { _elementName = "Payment"; Init(); } public Payment(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 SimpleHierarchy.xsd. /// </remarks> protected override void Init() { SimpleHierarchyLib.Registration.iRegistrationIndicator = 0; // causes registration to take place m_VISA = null; m_Vouchers = new SimpleHierarchyLib.XmlObjectCollection<SimpleHierarchyLib.Vouchers>("Vouchers", "", 1, -1, false); m_Vouchers.OnCollectionChange += new SimpleHierarchyLib.XmlObjectCollection<SimpleHierarchyLib.Vouchers>.OnCollectionChangeEvent(this.Vouchers_OnChange); m_Cash = null; _validElement = ""; // ##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 } protected void ClearChoice(string selectedElement) { m_VISA = null; if (m_Vouchers != null) { if ("Vouchers" != selectedElement) m_Vouchers.Clear(); } m_Cash = null; _validElement = selectedElement; } #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() { SimpleHierarchyLib.Payment newObject = new SimpleHierarchyLib.Payment(_elementName); newObject.m_VISA = null; if (m_VISA != null) newObject.m_VISA = (SimpleHierarchyLib.VISA)m_VISA.Clone(); foreach (SimpleHierarchyLib.Vouchers o in m_Vouchers) newObject.m_Vouchers.Add((SimpleHierarchyLib.Vouchers)o.Clone()); newObject.m_Cash = null; if (m_Cash != null) newObject.m_Cash = (LiquidTechnologies.Runtime.Element)m_Cash.Clone(); newObject._validElement = _validElement; // ##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 - VISA /// <summary> /// Represents an optional Element in the XML document /// </summary> /// <remarks> /// This property is represented as an Element in the XML. /// It is optional, initially it is null. /// Only one Element within this class may be set at a time, setting this property when another element is already set will raise an exception. setting this property to null will allow another element to be selected /// </remarks> [LiquidTechnologies.Runtime.ElementInfoChoiceClsOpt("VISA", "", LiquidTechnologies.Runtime.XmlObjectBase.XmlElementType.Element, typeof(SimpleHierarchyLib.VISA))] public SimpleHierarchyLib.VISA VISA { get { return m_VISA; } set { // The class represents a choice, so prevent more than one element from being selected ClearChoice((value == null)?"":"VISA"); // remove selection if (value == null) m_VISA = null; else { SetElementName(value, "VISA"); m_VISA = value; } } } protected SimpleHierarchyLib.VISA m_VISA; #endregion #region Attribute - Vouchers /// <summary> /// A collection of Voucherss /// </summary> /// <remarks> /// This property is represented as an Element in the XML. /// This collection may contain 1 to Many objects. /// Only one Element within this class may be set at a time. This collection (as a whole is counted as an element) may contain 0 or 1 to Many entries. Emptying the collection allows a different element to be the selected one. If there is already a selected element, and an item is added to this collection then an exception will be raised /// </remarks> [LiquidTechnologies.Runtime.ElementInfoChoiceClsCol("Vouchers", "", LiquidTechnologies.Runtime.XmlObjectBase.XmlElementType.Element)] public SimpleHierarchyLib.XmlObjectCollection<SimpleHierarchyLib.Vouchers> Vouchers { get { return m_Vouchers; } } // gets called when the collection changes (allows us to determine if this choice is selected or not) private void Vouchers_OnChange(object o, EventArgs args) { // The class represents a choice, so prevent more than one element from being selected if (_validElement != "Vouchers") { ClearChoice(m_Vouchers.Count == 0?"":"Vouchers"); // remove selection } } protected SimpleHierarchyLib.XmlObjectCollection<SimpleHierarchyLib.Vouchers> m_Vouchers; #endregion #region Attribute - Cash /// <summary> /// Represents an optional untyped element in the XML document /// </summary> /// <remarks> /// It is optional, initially it is null. /// Only one Element within this class may be set at a time, setting this property when another element is already set will raise an exception. setting this property to null will allow another element to be selected /// </remarks> [LiquidTechnologies.Runtime.ElementInfoChoiceUntpdOpt("Cash", "", "##any", "")] public LiquidTechnologies.Runtime.Element Cash { get { return m_Cash; } set { if (value != null) LiquidTechnologies.Runtime.Element.TestNamespace(value.Namespace, "##any", ""); // The class represents a choice, so prevent more than one element from being selected ClearChoice((value == null)?"":"Cash"); m_Cash = value; } } protected LiquidTechnologies.Runtime.Element m_Cash; #endregion public string ChoiceSelectedElement { get { return _validElement; } } protected string _validElement; #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 } }