Added: webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/DateDocumentImpl.java URL: http://svn.apache.org/viewcvs/webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/DateDocumentImpl.java?rev=226803&view=auto ============================================================================== --- webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/DateDocumentImpl.java (added) +++ webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/DateDocumentImpl.java Mon Aug 1 07:36:58 2005 @@ -0,0 +1,301 @@ +/*
+ * An XML document type. + * Localname: date + * Namespace: http://pda.rim + * Java type: rim.pda.DateDocument + * + * Automatically generated - do not modify. + */ +package rim.pda.impl; +/** + * A document containing one date(@http://pda.rim) element. + * + * This is a complex type. + */ +public class DateDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements rim.pda.DateDocument +{ + + public DateDocumentImpl(org.apache.xmlbeans.SchemaType sType) + { + super(sType); + } + + private static final javax.xml.namespace.QName DATE$0 = + new javax.xml.namespace.QName("http://pda.rim", "date"); + + + /** + * Gets the "date" element + */ + public rim.pda.DateDocument.Date getDate() + { + synchronized (monitor()) + { + check_orphaned(); + rim.pda.DateDocument.Date target = null; + target = (rim.pda.DateDocument.Date)get_store().find_element_user(DATE$0, 0); + if (target == null) + { + return null; + } + return target; + } + } + + /** + * Sets the "date" element + */ + public void setDate(rim.pda.DateDocument.Date date) + { + synchronized (monitor()) + { + check_orphaned(); + rim.pda.DateDocument.Date target = null; + target = (rim.pda.DateDocument.Date)get_store().find_element_user(DATE$0, 0); + if (target == null) + { + target = (rim.pda.DateDocument.Date)get_store().add_element_user(DATE$0); + } + target.set(date); + } + } + + /** + * Appends and returns a new empty "date" element + */ + public rim.pda.DateDocument.Date addNewDate() + { + synchronized (monitor()) + { + check_orphaned(); + rim.pda.DateDocument.Date target = null; + target = (rim.pda.DateDocument.Date)get_store().add_element_user(DATE$0); + return target; + } + } + /** + * An XML date(@http://pda.rim). + * + * This is a complex type. + */ + public static class DateImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements rim.pda.DateDocument.Date + { + + public DateImpl(org.apache.xmlbeans.SchemaType sType) + { + super(sType); + } + + private static final javax.xml.namespace.QName MONTH$0 = + new javax.xml.namespace.QName("", "month"); + private static final javax.xml.namespace.QName DAY$2 = + new javax.xml.namespace.QName("", "day"); + private static final javax.xml.namespace.QName YEAR$4 = + new javax.xml.namespace.QName("", "year"); + + + /** + * Gets the "month" element + */ + public int getMonth() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(MONTH$0, 0); + if (target == null) + { + return 0; + } + return target.getIntValue(); + } + } + + /** + * Gets (as xml) the "month" element + */ + public org.apache.xmlbeans.XmlInt xgetMonth() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(MONTH$0, 0); + return target; + } + } + + /** + * Sets the "month" element + */ + public void setMonth(int month) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(MONTH$0, 0); + if (target == null) + { + target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(MONTH$0); + } + target.setIntValue(month); + } + } + + /** + * Sets (as xml) the "month" element + */ + public void xsetMonth(org.apache.xmlbeans.XmlInt month) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(MONTH$0, 0); + if (target == null) + { + target = (org.apache.xmlbeans.XmlInt)get_store().add_element_user(MONTH$0); + } + target.set(month); + } + } + + /** + * Gets the "day" element + */ + public int getDay() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(DAY$2, 0); + if (target == null) + { + return 0; + } + return target.getIntValue(); + } + } + + /** + * Gets (as xml) the "day" element + */ + public org.apache.xmlbeans.XmlInt xgetDay() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(DAY$2, 0); + return target; + } + } + + /** + * Sets the "day" element + */ + public void setDay(int day) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(DAY$2, 0); + if (target == null) + { + target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(DAY$2); + } + target.setIntValue(day); + } + } + + /** + * Sets (as xml) the "day" element + */ + public void xsetDay(org.apache.xmlbeans.XmlInt day) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(DAY$2, 0); + if (target == null) + { + target = (org.apache.xmlbeans.XmlInt)get_store().add_element_user(DAY$2); + } + target.set(day); + } + } + + /** + * Gets the "year" element + */ + public int getYear() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(YEAR$4, 0); + if (target == null) + { + return 0; + } + return target.getIntValue(); + } + } + + /** + * Gets (as xml) the "year" element + */ + public org.apache.xmlbeans.XmlInt xgetYear() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(YEAR$4, 0); + return target; + } + } + + /** + * Sets the "year" element + */ + public void setYear(int year) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(YEAR$4, 0); + if (target == null) + { + target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(YEAR$4); + } + target.setIntValue(year); + } + } + + /** + * Sets (as xml) the "year" element + */ + public void xsetYear(org.apache.xmlbeans.XmlInt year) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(YEAR$4, 0); + if (target == null) + { + target = (org.apache.xmlbeans.XmlInt)get_store().add_element_user(YEAR$4); + } + target.set(year); + } + } + } +} Added: webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/FreeStorageDocumentImpl.java URL: http://svn.apache.org/viewcvs/webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/FreeStorageDocumentImpl.java?rev=226803&view=auto ============================================================================== --- webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/FreeStorageDocumentImpl.java (added) +++ webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/FreeStorageDocumentImpl.java Mon Aug 1 07:36:58 2005 @@ -0,0 +1,94 @@ +/* + * An XML document type. + * Localname: FreeStorage + * Namespace: http://pda.rim + * Java type: rim.pda.FreeStorageDocument + * + * Automatically generated - do not modify. + */ +package rim.pda.impl; +/** + * A document containing one FreeStorage(@http://pda.rim) element. + * + * This is a complex type. + */ +public class FreeStorageDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements rim.pda.FreeStorageDocument +{ + + public FreeStorageDocumentImpl(org.apache.xmlbeans.SchemaType sType) + { + super(sType); + } + + private static final javax.xml.namespace.QName FREESTORAGE$0 = + new javax.xml.namespace.QName("http://pda.rim", "FreeStorage"); + + + /** + * Gets the "FreeStorage" element + */ + public int getFreeStorage() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FREESTORAGE$0, 0); + if (target == null) + { + return 0; + } + return target.getIntValue(); + } + } + + /** + * Gets (as xml) the "FreeStorage" element + */ + public org.apache.xmlbeans.XmlInt xgetFreeStorage() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(FREESTORAGE$0, 0); + return target; + } + } + + /** + * Sets the "FreeStorage" element + */ + public void setFreeStorage(int freeStorage) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FREESTORAGE$0, 0); + if (target == null) + { + target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(FREESTORAGE$0); + } + target.setIntValue(freeStorage); + } + } + + /** + * Sets (as xml) the "FreeStorage" element + */ + public void xsetFreeStorage(org.apache.xmlbeans.XmlInt freeStorage) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(FREESTORAGE$0, 0); + if (target == null) + { + target = (org.apache.xmlbeans.XmlInt)get_store().add_element_user(FREESTORAGE$0); + } + target.set(freeStorage); + } + } +} Added: webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/TimeDocumentImpl.java URL: http://svn.apache.org/viewcvs/webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/TimeDocumentImpl.java?rev=226803&view=auto ============================================================================== --- webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/TimeDocumentImpl.java (added) +++ webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/TimeDocumentImpl.java Mon Aug 1 07:36:58 2005 @@ -0,0 +1,231 @@ +/* + * An XML document type. + * Localname: time + * Namespace: http://pda.rim + * Java type: rim.pda.TimeDocument + * + * Automatically generated - do not modify. + */ +package rim.pda.impl; +/** + * A document containing one time(@http://pda.rim) element. + * + * This is a complex type. + */ +public class TimeDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements rim.pda.TimeDocument +{ + + public TimeDocumentImpl(org.apache.xmlbeans.SchemaType sType) + { + super(sType); + } + + private static final javax.xml.namespace.QName TIME$0 = + new javax.xml.namespace.QName("http://pda.rim", "time"); + + + /** + * Gets the "time" element + */ + public rim.pda.TimeDocument.Time getTime() + { + synchronized (monitor()) + { + check_orphaned(); + rim.pda.TimeDocument.Time target = null; + target = (rim.pda.TimeDocument.Time)get_store().find_element_user(TIME$0, 0); + if (target == null) + { + return null; + } + return target; + } + } + + /** + * Sets the "time" element + */ + public void setTime(rim.pda.TimeDocument.Time time) + { + synchronized (monitor()) + { + check_orphaned(); + rim.pda.TimeDocument.Time target = null; + target = (rim.pda.TimeDocument.Time)get_store().find_element_user(TIME$0, 0); + if (target == null) + { + target = (rim.pda.TimeDocument.Time)get_store().add_element_user(TIME$0); + } + target.set(time); + } + } + + /** + * Appends and returns a new empty "time" element + */ + public rim.pda.TimeDocument.Time addNewTime() + { + synchronized (monitor()) + { + check_orphaned(); + rim.pda.TimeDocument.Time target = null; + target = (rim.pda.TimeDocument.Time)get_store().add_element_user(TIME$0); + return target; + } + } + /** + * An XML time(@http://pda.rim). + * + * This is a complex type. + */ + public static class TimeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements rim.pda.TimeDocument.Time + { + + public TimeImpl(org.apache.xmlbeans.SchemaType sType) + { + super(sType); + } + + private static final javax.xml.namespace.QName HOUR$0 = + new javax.xml.namespace.QName("", "hour"); + private static final javax.xml.namespace.QName MINUTE$2 = + new javax.xml.namespace.QName("", "minute"); + + + /** + * Gets the "hour" element + */ + public int getHour() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(HOUR$0, 0); + if (target == null) + { + return 0; + } + return target.getIntValue(); + } + } + + /** + * Gets (as xml) the "hour" element + */ + public org.apache.xmlbeans.XmlInt xgetHour() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(HOUR$0, 0); + return target; + } + } + + /** + * Sets the "hour" element + */ + public void setHour(int hour) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(HOUR$0, 0); + if (target == null) + { + target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(HOUR$0); + } + target.setIntValue(hour); + } + } + + /** + * Sets (as xml) the "hour" element + */ + public void xsetHour(org.apache.xmlbeans.XmlInt hour) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(HOUR$0, 0); + if (target == null) + { + target = (org.apache.xmlbeans.XmlInt)get_store().add_element_user(HOUR$0); + } + target.set(hour); + } + } + + /** + * Gets the "minute" element + */ + public int getMinute() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(MINUTE$2, 0); + if (target == null) + { + return 0; + } + return target.getIntValue(); + } + } + + /** + * Gets (as xml) the "minute" element + */ + public org.apache.xmlbeans.XmlInt xgetMinute() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(MINUTE$2, 0); + return target; + } + } + + /** + * Sets the "minute" element + */ + public void setMinute(int minute) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(MINUTE$2, 0); + if (target == null) + { + target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(MINUTE$2); + } + target.setIntValue(minute); + } + } + + /** + * Sets (as xml) the "minute" element + */ + public void xsetMinute(org.apache.xmlbeans.XmlInt minute) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(MINUTE$2, 0); + if (target == null) + { + target = (org.apache.xmlbeans.XmlInt)get_store().add_element_user(MINUTE$2); + } + target.set(minute); + } + } + } +} Added: webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/TotalCodeModuleSizeDocumentImpl.java URL: http://svn.apache.org/viewcvs/webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/TotalCodeModuleSizeDocumentImpl.java?rev=226803&view=auto ============================================================================== --- webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/TotalCodeModuleSizeDocumentImpl.java (added) +++ webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/TotalCodeModuleSizeDocumentImpl.java Mon Aug 1 07:36:58 2005 @@ -0,0 +1,94 @@ +/* + * An XML document type. + * Localname: TotalCodeModuleSize + * Namespace: http://pda.rim + * Java type: rim.pda.TotalCodeModuleSizeDocument + * + * Automatically generated - do not modify. + */ +package rim.pda.impl; +/** + * A document containing one TotalCodeModuleSize(@http://pda.rim) element. + * + * This is a complex type. + */ +public class TotalCodeModuleSizeDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements rim.pda.TotalCodeModuleSizeDocument +{ + + public TotalCodeModuleSizeDocumentImpl(org.apache.xmlbeans.SchemaType sType) + { + super(sType); + } + + private static final javax.xml.namespace.QName TOTALCODEMODULESIZE$0 = + new javax.xml.namespace.QName("http://pda.rim", "TotalCodeModuleSize"); + + + /** + * Gets the "TotalCodeModuleSize" element + */ + public int getTotalCodeModuleSize() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(TOTALCODEMODULESIZE$0, 0); + if (target == null) + { + return 0; + } + return target.getIntValue(); + } + } + + /** + * Gets (as xml) the "TotalCodeModuleSize" element + */ + public org.apache.xmlbeans.XmlInt xgetTotalCodeModuleSize() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(TOTALCODEMODULESIZE$0, 0); + return target; + } + } + + /** + * Sets the "TotalCodeModuleSize" element + */ + public void setTotalCodeModuleSize(int totalCodeModuleSize) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(TOTALCODEMODULESIZE$0, 0); + if (target == null) + { + target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(TOTALCODEMODULESIZE$0); + } + target.setIntValue(totalCodeModuleSize); + } + } + + /** + * Sets (as xml) the "TotalCodeModuleSize" element + */ + public void xsetTotalCodeModuleSize(org.apache.xmlbeans.XmlInt totalCodeModuleSize) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(TOTALCODEMODULESIZE$0, 0); + if (target == null) + { + target = (org.apache.xmlbeans.XmlInt)get_store().add_element_user(TOTALCODEMODULESIZE$0); + } + target.set(totalCodeModuleSize); + } + } +} Added: webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/TotalStorageDocumentImpl.java URL: http://svn.apache.org/viewcvs/webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/TotalStorageDocumentImpl.java?rev=226803&view=auto ============================================================================== --- webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/TotalStorageDocumentImpl.java (added) +++ webservices/muse/trunk/src/examples/interop/src/.xmlbeans/src/rim/pda/impl/TotalStorageDocumentImpl.java Mon Aug 1 07:36:58 2005 @@ -0,0 +1,94 @@ +/* + * An XML document type. + * Localname: TotalStorage + * Namespace: http://pda.rim + * Java type: rim.pda.TotalStorageDocument + * + * Automatically generated - do not modify. + */ +package rim.pda.impl; +/** + * A document containing one TotalStorage(@http://pda.rim) element. + * + * This is a complex type. + */ +public class TotalStorageDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements rim.pda.TotalStorageDocument +{ + + public TotalStorageDocumentImpl(org.apache.xmlbeans.SchemaType sType) + { + super(sType); + } + + private static final javax.xml.namespace.QName TOTALSTORAGE$0 = + new javax.xml.namespace.QName("http://pda.rim", "TotalStorage"); + + + /** + * Gets the "TotalStorage" element + */ + public int getTotalStorage() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(TOTALSTORAGE$0, 0); + if (target == null) + { + return 0; + } + return target.getIntValue(); + } + } + + /** + * Gets (as xml) the "TotalStorage" element + */ + public org.apache.xmlbeans.XmlInt xgetTotalStorage() + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(TOTALSTORAGE$0, 0); + return target; + } + } + + /** + * Sets the "TotalStorage" element + */ + public void setTotalStorage(int totalStorage) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.SimpleValue target = null; + target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(TOTALSTORAGE$0, 0); + if (target == null) + { + target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(TOTALSTORAGE$0); + } + target.setIntValue(totalStorage); + } + } + + /** + * Sets (as xml) the "TotalStorage" element + */ + public void xsetTotalStorage(org.apache.xmlbeans.XmlInt totalStorage) + { + synchronized (monitor()) + { + check_orphaned(); + org.apache.xmlbeans.XmlInt target = null; + target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(TOTALSTORAGE$0, 0); + if (target == null) + { + target = (org.apache.xmlbeans.XmlInt)get_store().add_element_user(TOTALSTORAGE$0); + } + target.set(totalStorage); + } + } +} --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
