In This Topic
package MusicStoreLib;
public class PriceFilter extends com.liquid_technologies.ltxmllib20.XmlGeneratedClass {
private static final long serialVersionUID = 13L;
// <summary>
// Constructor for PriceFilter
// </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 PriceFilter() {
setElementName("PriceFilter");
init();
}
public PriceFilter(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;
_minPrice = 0;
_isValidMinPrice = false;
_maxPrice = 0;
_isValidMaxPrice = false;
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.PriceFilter newObject = (MusicStoreLib.PriceFilter)super.clone();
newObject.init();
if (_isValidMinPrice)
newObject._minPrice = _minPrice;
newObject._isValidMinPrice = _isValidMinPrice;
if (_isValidMaxPrice)
newObject._maxPrice = _maxPrice;
newObject._isValidMaxPrice = _isValidMaxPrice;
return newObject;
} catch (CloneNotSupportedException e) {
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 not valid.
// </remarks>
public double getMinPrice() throws com.liquid_technologies.ltxmllib20.exceptions.LtException {
if (_isValidMinPrice == false)
throw new com.liquid_technologies.ltxmllib20.exceptions.LtInvalidStateException("The Property MinPrice is not valid. Set MinPriceValid = true");
return _minPrice;
}
public void setMinPrice(double value) throws com.liquid_technologies.ltxmllib20.exceptions.LtException {
_isValidMinPrice = true;
_minPrice = value;
}
// <summary>
// Indicates if MinPrice contains a valid value.
// </summary>
// <remarks>
// true if the value for MinPrice is valid, false if not.
// If this is set to true then the property is considered valid, and assigned its
// default value (0).
// If its set to false then its made invalid, and subsequent calls to get MinPrice
// will raise an exception.
// </remarks>
public boolean isValidMinPrice() {
return _isValidMinPrice;
}
public void setValidMinPrice(boolean value) throws com.liquid_technologies.ltxmllib20.exceptions.LtException {
if (value != _isValidMinPrice) {
_minPrice = 0;
_isValidMinPrice = value;
}
}
protected boolean _isValidMinPrice;
protected double _minPrice;
// <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 not valid.
// </remarks>
public double getMaxPrice() throws com.liquid_technologies.ltxmllib20.exceptions.LtException {
if (_isValidMaxPrice == false)
throw new com.liquid_technologies.ltxmllib20.exceptions.LtInvalidStateException("The Property MaxPrice is not valid. Set MaxPriceValid = true");
return _maxPrice;
}
public void setMaxPrice(double value) throws com.liquid_technologies.ltxmllib20.exceptions.LtException {
_isValidMaxPrice = true;
_maxPrice = value;
}
// <summary>
// Indicates if MaxPrice contains a valid value.
// </summary>
// <remarks>
// true if the value for MaxPrice is valid, false if not.
// If this is set to true then the property is considered valid, and assigned its
// default value (0).
// If its set to false then its made invalid, and subsequent calls to get MaxPrice
// will raise an exception.
// </remarks>
public boolean isValidMaxPrice() {
return _isValidMaxPrice;
}
public void setValidMaxPrice(boolean value) throws com.liquid_technologies.ltxmllib20.exceptions.LtException {
if (value != _isValidMaxPrice) {
_maxPrice = 0;
_isValidMaxPrice = value;
}
}
protected boolean _isValidMaxPrice;
protected double _maxPrice;
@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, "PriceFilter", "", 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.ElementInfoSeqPrimOpt("MinPrice", "", findGetterMethod("MusicStoreLib.PriceFilter", "getMinPrice"), findSetterMethod("MusicStoreLib.PriceFilter", "setMinPrice", "double"), findGetterMethod("MusicStoreLib.PriceFilter", "isValidMinPrice"), null, null, com.liquid_technologies.ltxmllib20.Conversions.ConversionType.TYPE_R8, 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.ElementInfoSeqPrimOpt("MaxPrice", "", findGetterMethod("MusicStoreLib.PriceFilter", "getMaxPrice"), findSetterMethod("MusicStoreLib.PriceFilter", "setMaxPrice", "double"), findGetterMethod("MusicStoreLib.PriceFilter", "isValidMaxPrice"), null, null, com.liquid_technologies.ltxmllib20.Conversions.ConversionType.TYPE_R8, null, com.liquid_technologies.ltxmllib20.WhitespaceRule.COLLAPSE, new com.liquid_technologies.ltxmllib20.PrimitiveRestrictions("", -1, -1, "", "", "", "", -1, -1, -1), null)
};
}
return __elementInfo;
}
protected com.liquid_technologies.ltxmllib20.AttributeInfo[] getClassAttributeInfo() throws Exception {
if (__attributeInfo==null) {
__attributeInfo = new com.liquid_technologies.ltxmllib20.AttributeInfo[] {
};
}
return __attributeInfo;
}
}