In This Topic
    AlbumType.cs
    In This Topic
    ��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: MusicStore.xsd
     **********************************************************************************************/
    
    namespace MusicStoreLib
    {
        /// <summary>
        /// This class represents the ComplexType AlbumType
        /// </summary>
        [LiquidTechnologies.Runtime.XmlObjectInfo(LiquidTechnologies.Runtime.XmlObjectBase.XmlElementGroupType.Sequence,
                                                        LiquidTechnologies.Runtime.XmlObjectBase.XmlElementType.Element,
                                                        "AlbumType", "", true, false, false)]
        public partial class AlbumType : MusicStoreLib.XmlCommonBase
        {
            #region Constructors
            /// <summary>
            /// Constructor for AlbumType
            /// </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 MusicStore.xsd
            /// </remarks>
            public AlbumType()
            {
                _elementName = "AlbumType";
                Init();
            }
            public AlbumType(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 MusicStore.xsd.
            /// </remarks>
            protected override void Init()
            {
                MusicStoreLib.Registration.iRegistrationIndicator = 0; // causes registration to take place
                m_Label = "";
                m_RRP = null;
                m_ProductCode = "";
                m_AlbumName = "";
                m_ArtistName = "";
                m_Track = new MusicStoreLib.XmlObjectCollection<MusicStoreLib.TrackType>("Track", "", 1, -1, false);
    
    // ##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()
            {
                MusicStoreLib.AlbumType newObject = new MusicStoreLib.AlbumType(_elementName);
                newObject.m_Label = m_Label;
                newObject.m_RRP = m_RRP;
                newObject.m_ProductCode = m_ProductCode;
                newObject.m_AlbumName = m_AlbumName;
                newObject.m_ArtistName = m_ArtistName;
                foreach (MusicStoreLib.TrackType o in m_Track)
                    newObject.m_Track.Add((MusicStoreLib.TrackType)o.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 - Label
            /// <summary>
            /// Represents a mandatory Attribute in the XML document
            /// </summary>
            /// <remarks>
            /// This property is represented as an Attribute in the XML.
            /// It is mandatory and therefore must be populated within the XML.
            /// It is defaulted to "".
            /// </remarks>
            [LiquidTechnologies.Runtime.AttributeInfoPrimitive("Label", "", LiquidTechnologies.Runtime.Conversions.ConversionType.type_string, null, LiquidTechnologies.Runtime.WhitespaceUtils.WhitespaceRule.Preserve, "", -1, -1, "", "", "", "", -1, -1, -1, null)]
            public string Label
            {
                get
                {
                    return m_Label;
                }
                set 
                {
                    // Apply whitespace rules appropriately
                    value = LiquidTechnologies.Runtime.WhitespaceUtils.Preserve(value);
                    m_Label = value;
                }
            }
            protected string m_Label;
    
            #endregion
    
            #region Attribute - RRP
            /// <summary>
            /// Represents an optional Attribute in the XML document
            /// </summary>
            /// <remarks>
            /// This property is represented as an Attribute in the XML.
            /// It is optional, initially it is not valid.
            /// </remarks>
            [LiquidTechnologies.Runtime.AttributeInfoPrimitive("RRP", "", true, LiquidTechnologies.Runtime.Conversions.ConversionType.type_r8, null, LiquidTechnologies.Runtime.WhitespaceUtils.WhitespaceRule.Collapse, "", -1, -1, "", "", "", "", -1, -1, -1, null)]
            public double? RRP
            {
                get 
                { 
                    return m_RRP;  
                }
                set 
                { 
                    if (value == null)
                    {
                        m_RRP = null;
                    }
                    else
                    {
                        m_RRP = value;
                    }
                }
            }
            protected double? m_RRP;
            #endregion
    
            #region Attribute - ProductCode
            /// <summary>
            /// Represents a mandatory Attribute in the XML document
            /// </summary>
            /// <remarks>
            /// This property is represented as an Attribute in the XML.
            /// It is mandatory and therefore must be populated within the XML.
            /// It is defaulted to "".
            /// </remarks>
            [LiquidTechnologies.Runtime.AttributeInfoPrimitive("ProductCode", "", LiquidTechnologies.Runtime.Conversions.ConversionType.type_string, null, LiquidTechnologies.Runtime.WhitespaceUtils.WhitespaceRule.Preserve, "", -1, -1, "", "", "", "", 15, -1, -1, null)]
            public string ProductCode
            {
                get
                {
                    return m_ProductCode;
                }
                set 
                {
                    // Apply whitespace rules appropriately
                    value = LiquidTechnologies.Runtime.WhitespaceUtils.Preserve(value);
                    CheckAttributeRestriction(2, value);
                    m_ProductCode = value;
                }
            }
            protected string m_ProductCode;
    
            #endregion
    
            #region Attribute - AlbumName
            /// <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 "".
            /// </remarks>
            [LiquidTechnologies.Runtime.ElementInfoSeqPrimMnd("AlbumName", "", null, LiquidTechnologies.Runtime.Conversions.ConversionType.type_string, null, LiquidTechnologies.Runtime.WhitespaceUtils.WhitespaceRule.Preserve, "", -1, -1, "", "", "", "", -1, -1, -1, null)]
            public string AlbumName
            {
                get
                {
                    return m_AlbumName;
                }
                set 
                {
                    // Apply whitespace rules appropriately
                    value = LiquidTechnologies.Runtime.WhitespaceUtils.Preserve(value);
                    m_AlbumName = value;
                }
            }
            protected string m_AlbumName;
    
            #endregion
    
            #region Attribute - ArtistName
            /// <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 "".
            /// </remarks>
            [LiquidTechnologies.Runtime.ElementInfoSeqPrimMnd("ArtistName", "", null, LiquidTechnologies.Runtime.Conversions.ConversionType.type_string, null, LiquidTechnologies.Runtime.WhitespaceUtils.WhitespaceRule.Preserve, "", -1, -1, "", "", "", "", -1, -1, -1, null)]
            public string ArtistName
            {
                get
                {
                    return m_ArtistName;
                }
                set 
                {
                    // Apply whitespace rules appropriately
                    value = LiquidTechnologies.Runtime.WhitespaceUtils.Preserve(value);
                    m_ArtistName = value;
                }
            }
            protected string m_ArtistName;
    
            #endregion
    
            #region Attribute - Track
            /// <summary>
            /// A collection of Tracks
            /// </summary>
            /// <remarks>
            /// This property is represented as an Element in the XML.
            /// This collection may contain 1 to Many objects.
            /// </remarks>
            [LiquidTechnologies.Runtime.ElementInfoSeqClsCol("Track", "", LiquidTechnologies.Runtime.XmlObjectBase.XmlElementType.Element)]
            public MusicStoreLib.XmlObjectCollection<MusicStoreLib.TrackType> Track
            {
                get { return m_Track; }
            }
            protected MusicStoreLib.XmlObjectCollection<MusicStoreLib.TrackType> m_Track;
    
            #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
        }
    }