In This Topic
    SearchResponse.java
    In This Topic
    package MusicStoreLib;
     
    /**********************************************************************************************
     * 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
     **********************************************************************************************/
        
    // <summary>
    // This class represents the Element SearchResponse
    // </summary>
    public class SearchResponse extends com.liquid_technologies.ltxmllib20.XmlGeneratedClass {
        private static final long serialVersionUID = 13L;
    
        // <summary>
        //  Constructor for SearchResponse
        // </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 SearchResponse() {
            setElementName("SearchResponse");
            init();
        }
        public SearchResponse(String elementName) {
            setElementName(elementName);
            init();
        }       
    
        // <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>
        @Override
        protected void init() {
            try {
                MusicStoreLib.Registration.iRegistrationIndicator = 0; // causes registration to take place
                _result = null;
                _error = 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
    
                getClassAttributeInfo();
                getClassElementInfo();
            } catch (Exception ex) {
                // should never happen
                ex.printStackTrace();
                throw new InternalError();
            }
        }
    
        protected void ClearChoice(String selectedElement) {
            try {
                _result = null;
                _error = null;
        
                _validElement = selectedElement;
            } catch (Exception ex) {
                // should never happen
                ex.printStackTrace();
                throw new InternalError();
            }
        }
    
    
        // <summary>
        // Allows the class to be copied
        // </summary>
        // <remarks>
        // Performs a 'deep copy' of all the data in the class (and its children)
        // </remarks>
        @Override
        public Object clone() throws CloneNotSupportedException {
            try {
                MusicStoreLib.SearchResponse newObject = (MusicStoreLib.SearchResponse)super.clone();
    
                // clone, creates a bitwise copy of the class, so all the collections are the
                // same as the parents. Init will re-create our own collections, and classes, 
                // preventing objects being shared between the new an original objects
                newObject.init();
                newObject._result = null;
                if (_result != null)
                    newObject._result = (MusicStoreLib.Result)_result.clone();
                newObject._error = null;
                if (_error != null)
                    newObject._error = (MusicStoreLib.Error)_error.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;
            } catch (CloneNotSupportedException e) {
                // should never happen
                e.printStackTrace();
                throw new InternalError();
            }
        }
    
        @Override
        public String getTargetNamespace() {
            return "";
        }
    
        // <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>
        public MusicStoreLib.Result getResult() {
            return _result;  
        }
        public void setResult(MusicStoreLib.Result value) throws com.liquid_technologies.ltxmllib20.exceptions.LtException { 
            // The class represents a choice, so prevent more than one element from being selected
            ClearChoice((value == null)?"":"Result"); // remove selection
            if (value == null)
                _result = null;
            else {
                setElementName(value.getBase(), "Result");
                _result = value; 
            }
        }
        protected MusicStoreLib.Result _result;
    
        // <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>
        public MusicStoreLib.Error getError() {
            return _error;  
        }
        public void setError(MusicStoreLib.Error value) throws com.liquid_technologies.ltxmllib20.exceptions.LtException { 
            // The class represents a choice, so prevent more than one element from being selected
            ClearChoice((value == null)?"":"Error"); // remove selection
            if (value == null)
                _error = null;
            else {
                setElementName(value.getBase(), "Error");
                _error = value; 
            }
        }
        protected MusicStoreLib.Error _error;
    
        public String getChoiceSelectedElement() {
            return _validElement;
        }
        protected String _validElement;
    
        @Override
        public String getNamespace() {
            return "";
        }   
    
        @Override
        public com.liquid_technologies.ltxmllib20.XmlObjectBase getBase() {
            return this;
        }
        protected void onEvent(com.liquid_technologies.ltxmllib20.XmlObjectBase msgSource, int msgType, Object data) {
            if (msgType == CollectionChangeEvent) {
            }
        }
    
        private static com.liquid_technologies.ltxmllib20.ParentElementInfo __parentElementInfo = null;
        private static com.liquid_technologies.ltxmllib20.ElementInfo[] __elementInfo = null;
        private static com.liquid_technologies.ltxmllib20.AttributeInfo[] __attributeInfo = null;
            
        protected com.liquid_technologies.ltxmllib20.ParentElementInfo getClassInfo() throws Exception {
            if (__parentElementInfo == null) {
                __parentElementInfo = new com.liquid_technologies.ltxmllib20.ParentElementInfo( 
                                                                        com.liquid_technologies.ltxmllib20.XmlObjectBase.XmlElementGroupType.CHOICE,
                                                                        com.liquid_technologies.ltxmllib20.XmlObjectBase.XmlElementType.ELEMENT, "SearchResponse", "", true, false,
                                                                        null, null, com.liquid_technologies.ltxmllib20.Conversions.ConversionType.TYPE_NONE, com.liquid_technologies.ltxmllib20.WhitespaceRule.NONE, null, false);
            }
            return __parentElementInfo;
        }
    
        protected com.liquid_technologies.ltxmllib20.ElementInfo[] getClassElementInfo() throws Exception {
            if (__elementInfo == null) {
                __elementInfo = new com.liquid_technologies.ltxmllib20.ElementInfo[] {
                     new com.liquid_technologies.ltxmllib20.data.ElementInfoChoiceClsOpt("Result", "", findGetterMethod("MusicStoreLib.SearchResponse", "getResult"), findSetterMethod("MusicStoreLib.SearchResponse", "setResult", "MusicStoreLib.Result"), com.liquid_technologies.ltxmllib20.XmlObjectBase.XmlElementType.ELEMENT, MusicStoreLib.Result.class)
                    ,new com.liquid_technologies.ltxmllib20.data.ElementInfoChoiceClsOpt("Error", "", findGetterMethod("MusicStoreLib.SearchResponse", "getError"), findSetterMethod("MusicStoreLib.SearchResponse", "setError", "MusicStoreLib.Error"), com.liquid_technologies.ltxmllib20.XmlObjectBase.XmlElementType.ELEMENT, MusicStoreLib.Error.class)
                };
            }
            return __elementInfo;
        }
    
        protected com.liquid_technologies.ltxmllib20.AttributeInfo[] getClassAttributeInfo() throws Exception {
            if (__attributeInfo==null) {
                __attributeInfo = new com.liquid_technologies.ltxmllib20.AttributeInfo[] {
                };
            }
            return __attributeInfo;
        }
    
    // ##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
    }