In This Topic
package MusicStoreLib;
public class Result extends com.liquid_technologies.ltxmllib20.XmlGeneratedClass {
private static final long serialVersionUID = 13L;
// <summary>
// Constructor for Result
// </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 Result() {
setElementName("Result");
init();
}
public Result(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;
_searchDate = new com.liquid_technologies.ltxmllib20.DateTime(com.liquid_technologies.ltxmllib20.DateTimeType.date);
_product = new MusicStoreLib.XmlObjectCollection<MusicStoreLib.AlbumType>("Product", "", 0, -1, false, MusicStoreLib.AlbumType.class);
getClassAttributeInfo();
getClassElementInfo();
} catch (Exception ex) {
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.Result newObject = (MusicStoreLib.Result)super.clone();
newObject.init();
newObject._searchDate = (com.liquid_technologies.ltxmllib20.DateTime)_searchDate.clone();
for(int i=0; i<_product.size(); i++)
newObject._product.add((MusicStoreLib.AlbumType)_product.get(i).clone());
return newObject;
} catch (CloneNotSupportedException e) {
e.printStackTrace();
throw new InternalError();
}
}
@Override
public String getTargetNamespace() {
return "";
}
// <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 new com.liquid_technologies.ltxmllib20.DateTime(com.liquid_technologies.ltxmllib20.DateTimeType.date).
// </remarks>
public com.liquid_technologies.ltxmllib20.DateTime getSearchDate() throws com.liquid_technologies.ltxmllib20.exceptions.LtException {
return _searchDate;
}
public void setSearchDate(com.liquid_technologies.ltxmllib20.DateTime value) throws com.liquid_technologies.ltxmllib20.exceptions.LtException {
_searchDate.setDateTime(value, _searchDate.getType());
}
protected com.liquid_technologies.ltxmllib20.DateTime _searchDate;
// <summary>
// A collection of Products
// </summary>
// <remarks>
// This property is represented as an Element in the XML.
// This collection may contain 0 to Many objects.
// </remarks>
public MusicStoreLib.XmlObjectCollection<MusicStoreLib.AlbumType> getProduct() {
return _product;
}
protected MusicStoreLib.XmlObjectCollection<MusicStoreLib.AlbumType> _product;
@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.SEQUENCE,
com.liquid_technologies.ltxmllib20.XmlObjectBase.XmlElementType.ELEMENT, "Result", "", 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.ElementInfoSeqPrimMnd("SearchDate", "", findGetterMethod("MusicStoreLib.Result", "getSearchDate"), findSetterMethod("MusicStoreLib.Result", "setSearchDate", "com.liquid_technologies.ltxmllib20.DateTime"), null, null, com.liquid_technologies.ltxmllib20.Conversions.ConversionType.TYPE_DATE, null, com.liquid_technologies.ltxmllib20.WhitespaceRule.COLLAPSE, new com.liquid_technologies.ltxmllib20.PrimitiveRestrictions("", -1, -1, "", "", "", "", -1, -1, -1), null)
,new com.liquid_technologies.ltxmllib20.data.ElementInfoSeqClsCol("Product", "", findGetterMethod("MusicStoreLib.Result", "getProduct"), com.liquid_technologies.ltxmllib20.XmlObjectBase.XmlElementType.ELEMENT)
};
}
return __elementInfo;
}
protected com.liquid_technologies.ltxmllib20.AttributeInfo[] getClassAttributeInfo() throws Exception {
if (__attributeInfo==null) {
__attributeInfo = new com.liquid_technologies.ltxmllib20.AttributeInfo[] {
};
}
return __attributeInfo;
}
}