Author: scamp
Date: Tue Mar 22 13:28:27 2005
New Revision: 158672
URL: http://svn.apache.org/viewcvs?view=rev&rev=158672
Log: (empty)
Added:
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/org/apache/ws/resource/
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/org/everestWeather/wsdm/samples/
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/AllocatedStorageDocumentImpl.java
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/BatteryLevelDocumentImpl.java
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/BatteryStatusDocumentImpl.java
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/CurrentTimeDocumentImpl.java
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/DateDocumentImpl.java
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/FreeStorageDocumentImpl.java
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TimeDocumentImpl.java
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TotalCodeModuleSizeDocumentImpl.java
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TotalStorageDocumentImpl.java
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/s799CAB8DB15B23282E5D08EBD2D1B102/TypeSystemHolder.java
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sCC33F0FF6200523A94F502B0D0DAEDC1/TypeSystemHolder.java
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sD31DC0590796F8DBD740CDEA580F803F/TypeSystemHolder.java
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sF9342926773FC44BDFC859695952C08E/TypeSystemHolder.java
Added:
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/AllocatedStorageDocumentImpl.java
URL:
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/AllocatedStorageDocumentImpl.java?view=auto&rev=158672
==============================================================================
---
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/AllocatedStorageDocumentImpl.java
(added)
+++
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/AllocatedStorageDocumentImpl.java
Tue Mar 22 13:28:27 2005
@@ -0,0 +1,94 @@
+/*
+ * An XML document type.
+ * Localname: AllocatedStorage
+ * Namespace: http://pda.rim
+ * Java type: rim.pda.AllocatedStorageDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package rim.pda.impl;
+/**
+ * A document containing one AllocatedStorage(@http://pda.rim) element.
+ *
+ * This is a complex type.
+ */
+public class AllocatedStorageDocumentImpl extends
org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements
rim.pda.AllocatedStorageDocument
+{
+
+ public AllocatedStorageDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+ {
+ super(sType);
+ }
+
+ private static final javax.xml.namespace.QName ALLOCATEDSTORAGE$0 =
+ new javax.xml.namespace.QName("http://pda.rim", "AllocatedStorage");
+
+
+ /**
+ * Gets the "AllocatedStorage" element
+ */
+ public int getAllocatedStorage()
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.SimpleValue target = null;
+ target =
(org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ALLOCATEDSTORAGE$0,
0);
+ if (target == null)
+ {
+ return 0;
+ }
+ return target.getIntValue();
+ }
+ }
+
+ /**
+ * Gets (as xml) the "AllocatedStorage" element
+ */
+ public org.apache.xmlbeans.XmlInt xgetAllocatedStorage()
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.XmlInt target = null;
+ target =
(org.apache.xmlbeans.XmlInt)get_store().find_element_user(ALLOCATEDSTORAGE$0,
0);
+ return target;
+ }
+ }
+
+ /**
+ * Sets the "AllocatedStorage" element
+ */
+ public void setAllocatedStorage(int allocatedStorage)
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.SimpleValue target = null;
+ target =
(org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ALLOCATEDSTORAGE$0,
0);
+ if (target == null)
+ {
+ target =
(org.apache.xmlbeans.SimpleValue)get_store().add_element_user(ALLOCATEDSTORAGE$0);
+ }
+ target.setIntValue(allocatedStorage);
+ }
+ }
+
+ /**
+ * Sets (as xml) the "AllocatedStorage" element
+ */
+ public void xsetAllocatedStorage(org.apache.xmlbeans.XmlInt
allocatedStorage)
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.XmlInt target = null;
+ target =
(org.apache.xmlbeans.XmlInt)get_store().find_element_user(ALLOCATEDSTORAGE$0,
0);
+ if (target == null)
+ {
+ target =
(org.apache.xmlbeans.XmlInt)get_store().add_element_user(ALLOCATEDSTORAGE$0);
+ }
+ target.set(allocatedStorage);
+ }
+ }
+}
Added:
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/BatteryLevelDocumentImpl.java
URL:
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/BatteryLevelDocumentImpl.java?view=auto&rev=158672
==============================================================================
---
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/BatteryLevelDocumentImpl.java
(added)
+++
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/BatteryLevelDocumentImpl.java
Tue Mar 22 13:28:27 2005
@@ -0,0 +1,94 @@
+/*
+ * An XML document type.
+ * Localname: BatteryLevel
+ * Namespace: http://pda.rim
+ * Java type: rim.pda.BatteryLevelDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package rim.pda.impl;
+/**
+ * A document containing one BatteryLevel(@http://pda.rim) element.
+ *
+ * This is a complex type.
+ */
+public class BatteryLevelDocumentImpl extends
org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements
rim.pda.BatteryLevelDocument
+{
+
+ public BatteryLevelDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+ {
+ super(sType);
+ }
+
+ private static final javax.xml.namespace.QName BATTERYLEVEL$0 =
+ new javax.xml.namespace.QName("http://pda.rim", "BatteryLevel");
+
+
+ /**
+ * Gets the "BatteryLevel" element
+ */
+ public java.lang.String getBatteryLevel()
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.SimpleValue target = null;
+ target =
(org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BATTERYLEVEL$0,
0);
+ if (target == null)
+ {
+ return null;
+ }
+ return target.getStringValue();
+ }
+ }
+
+ /**
+ * Gets (as xml) the "BatteryLevel" element
+ */
+ public org.apache.xmlbeans.XmlString xgetBatteryLevel()
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.XmlString target = null;
+ target =
(org.apache.xmlbeans.XmlString)get_store().find_element_user(BATTERYLEVEL$0, 0);
+ return target;
+ }
+ }
+
+ /**
+ * Sets the "BatteryLevel" element
+ */
+ public void setBatteryLevel(java.lang.String batteryLevel)
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.SimpleValue target = null;
+ target =
(org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BATTERYLEVEL$0,
0);
+ if (target == null)
+ {
+ target =
(org.apache.xmlbeans.SimpleValue)get_store().add_element_user(BATTERYLEVEL$0);
+ }
+ target.setStringValue(batteryLevel);
+ }
+ }
+
+ /**
+ * Sets (as xml) the "BatteryLevel" element
+ */
+ public void xsetBatteryLevel(org.apache.xmlbeans.XmlString batteryLevel)
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.XmlString target = null;
+ target =
(org.apache.xmlbeans.XmlString)get_store().find_element_user(BATTERYLEVEL$0, 0);
+ if (target == null)
+ {
+ target =
(org.apache.xmlbeans.XmlString)get_store().add_element_user(BATTERYLEVEL$0);
+ }
+ target.set(batteryLevel);
+ }
+ }
+}
Added:
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/BatteryStatusDocumentImpl.java
URL:
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/BatteryStatusDocumentImpl.java?view=auto&rev=158672
==============================================================================
---
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/BatteryStatusDocumentImpl.java
(added)
+++
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/BatteryStatusDocumentImpl.java
Tue Mar 22 13:28:27 2005
@@ -0,0 +1,94 @@
+/*
+ * An XML document type.
+ * Localname: BatteryStatus
+ * Namespace: http://pda.rim
+ * Java type: rim.pda.BatteryStatusDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package rim.pda.impl;
+/**
+ * A document containing one BatteryStatus(@http://pda.rim) element.
+ *
+ * This is a complex type.
+ */
+public class BatteryStatusDocumentImpl extends
org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements
rim.pda.BatteryStatusDocument
+{
+
+ public BatteryStatusDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+ {
+ super(sType);
+ }
+
+ private static final javax.xml.namespace.QName BATTERYSTATUS$0 =
+ new javax.xml.namespace.QName("http://pda.rim", "BatteryStatus");
+
+
+ /**
+ * Gets the "BatteryStatus" element
+ */
+ public java.lang.String getBatteryStatus()
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.SimpleValue target = null;
+ target =
(org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BATTERYSTATUS$0,
0);
+ if (target == null)
+ {
+ return null;
+ }
+ return target.getStringValue();
+ }
+ }
+
+ /**
+ * Gets (as xml) the "BatteryStatus" element
+ */
+ public org.apache.xmlbeans.XmlString xgetBatteryStatus()
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.XmlString target = null;
+ target =
(org.apache.xmlbeans.XmlString)get_store().find_element_user(BATTERYSTATUS$0,
0);
+ return target;
+ }
+ }
+
+ /**
+ * Sets the "BatteryStatus" element
+ */
+ public void setBatteryStatus(java.lang.String batteryStatus)
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.SimpleValue target = null;
+ target =
(org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BATTERYSTATUS$0,
0);
+ if (target == null)
+ {
+ target =
(org.apache.xmlbeans.SimpleValue)get_store().add_element_user(BATTERYSTATUS$0);
+ }
+ target.setStringValue(batteryStatus);
+ }
+ }
+
+ /**
+ * Sets (as xml) the "BatteryStatus" element
+ */
+ public void xsetBatteryStatus(org.apache.xmlbeans.XmlString batteryStatus)
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.XmlString target = null;
+ target =
(org.apache.xmlbeans.XmlString)get_store().find_element_user(BATTERYSTATUS$0,
0);
+ if (target == null)
+ {
+ target =
(org.apache.xmlbeans.XmlString)get_store().add_element_user(BATTERYSTATUS$0);
+ }
+ target.set(batteryStatus);
+ }
+ }
+}
Added:
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/CurrentTimeDocumentImpl.java
URL:
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/CurrentTimeDocumentImpl.java?view=auto&rev=158672
==============================================================================
---
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/CurrentTimeDocumentImpl.java
(added)
+++
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/CurrentTimeDocumentImpl.java
Tue Mar 22 13:28:27 2005
@@ -0,0 +1,94 @@
+/*
+ * An XML document type.
+ * Localname: CurrentTime
+ * Namespace: http://pda.rim
+ * Java type: rim.pda.CurrentTimeDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package rim.pda.impl;
+/**
+ * A document containing one CurrentTime(@http://pda.rim) element.
+ *
+ * This is a complex type.
+ */
+public class CurrentTimeDocumentImpl extends
org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements
rim.pda.CurrentTimeDocument
+{
+
+ public CurrentTimeDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+ {
+ super(sType);
+ }
+
+ private static final javax.xml.namespace.QName CURRENTTIME$0 =
+ new javax.xml.namespace.QName("http://pda.rim", "CurrentTime");
+
+
+ /**
+ * Gets the "CurrentTime" element
+ */
+ public java.lang.String getCurrentTime()
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.SimpleValue target = null;
+ target =
(org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CURRENTTIME$0,
0);
+ if (target == null)
+ {
+ return null;
+ }
+ return target.getStringValue();
+ }
+ }
+
+ /**
+ * Gets (as xml) the "CurrentTime" element
+ */
+ public org.apache.xmlbeans.XmlString xgetCurrentTime()
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.XmlString target = null;
+ target =
(org.apache.xmlbeans.XmlString)get_store().find_element_user(CURRENTTIME$0, 0);
+ return target;
+ }
+ }
+
+ /**
+ * Sets the "CurrentTime" element
+ */
+ public void setCurrentTime(java.lang.String currentTime)
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.SimpleValue target = null;
+ target =
(org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CURRENTTIME$0,
0);
+ if (target == null)
+ {
+ target =
(org.apache.xmlbeans.SimpleValue)get_store().add_element_user(CURRENTTIME$0);
+ }
+ target.setStringValue(currentTime);
+ }
+ }
+
+ /**
+ * Sets (as xml) the "CurrentTime" element
+ */
+ public void xsetCurrentTime(org.apache.xmlbeans.XmlString currentTime)
+ {
+ synchronized (monitor())
+ {
+ check_orphaned();
+ org.apache.xmlbeans.XmlString target = null;
+ target =
(org.apache.xmlbeans.XmlString)get_store().find_element_user(CURRENTTIME$0, 0);
+ if (target == null)
+ {
+ target =
(org.apache.xmlbeans.XmlString)get_store().add_element_user(CURRENTTIME$0);
+ }
+ target.set(currentTime);
+ }
+ }
+}
Added:
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/DateDocumentImpl.java
URL:
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/DateDocumentImpl.java?view=auto&rev=158672
==============================================================================
---
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/DateDocumentImpl.java
(added)
+++
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/DateDocumentImpl.java
Tue Mar 22 13:28:27 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:
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/FreeStorageDocumentImpl.java
URL:
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/FreeStorageDocumentImpl.java?view=auto&rev=158672
==============================================================================
---
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/FreeStorageDocumentImpl.java
(added)
+++
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/FreeStorageDocumentImpl.java
Tue Mar 22 13:28:27 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:
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TimeDocumentImpl.java
URL:
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TimeDocumentImpl.java?view=auto&rev=158672
==============================================================================
---
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TimeDocumentImpl.java
(added)
+++
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TimeDocumentImpl.java
Tue Mar 22 13:28:27 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:
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TotalCodeModuleSizeDocumentImpl.java
URL:
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TotalCodeModuleSizeDocumentImpl.java?view=auto&rev=158672
==============================================================================
---
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TotalCodeModuleSizeDocumentImpl.java
(added)
+++
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TotalCodeModuleSizeDocumentImpl.java
Tue Mar 22 13:28:27 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:
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TotalStorageDocumentImpl.java
URL:
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TotalStorageDocumentImpl.java?view=auto&rev=158672
==============================================================================
---
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TotalStorageDocumentImpl.java
(added)
+++
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/rim/pda/impl/TotalStorageDocumentImpl.java
Tue Mar 22 13:28:27 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);
+ }
+ }
+}
Added:
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/s799CAB8DB15B23282E5D08EBD2D1B102/TypeSystemHolder.java
URL:
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/s799CAB8DB15B23282E5D08EBD2D1B102/TypeSystemHolder.java?view=auto&rev=158672
==============================================================================
---
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/s799CAB8DB15B23282E5D08EBD2D1B102/TypeSystemHolder.java
(added)
+++
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/s799CAB8DB15B23282E5D08EBD2D1B102/TypeSystemHolder.java
Tue Mar 22 13:28:27 2005
@@ -0,0 +1,14 @@
+package schema.system.s799CAB8DB15B23282E5D08EBD2D1B102;
+
+public final class TypeSystemHolder
+{
+ private TypeSystemHolder() { }
+ public static final org.apache.xmlbeans.SchemaTypeSystem typeSystem =
loadTypeSystem();
+ static { typeSystem.resolve(); }
+ private static final org.apache.xmlbeans.SchemaTypeSystem loadTypeSystem()
+ {
+ try { return
(org.apache.xmlbeans.SchemaTypeSystem)Class.forName("org.apache.xmlbeans.impl.schema.SchemaTypeSystemImpl",
true, TypeSystemHolder.class.getClassLoader()).getConstructor(new Class[] {
Class.class }).newInstance(new java.lang.Object[] { TypeSystemHolder.class }); }
+ catch (ClassNotFoundException e) { throw new RuntimeException("Cannot
load org.apache.xmlbeans.impl.SchemaTypeSystemImpl: make sure xbean.jar is on
the classpath.", e); }
+ catch (Exception e) { throw new RuntimeException("Could not
instantiate SchemaTypeSystemImpl (" + e.toString() + "): is the version of
xbean.jar correct?", e); }
+ }
+}
Added:
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sCC33F0FF6200523A94F502B0D0DAEDC1/TypeSystemHolder.java
URL:
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sCC33F0FF6200523A94F502B0D0DAEDC1/TypeSystemHolder.java?view=auto&rev=158672
==============================================================================
---
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sCC33F0FF6200523A94F502B0D0DAEDC1/TypeSystemHolder.java
(added)
+++
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sCC33F0FF6200523A94F502B0D0DAEDC1/TypeSystemHolder.java
Tue Mar 22 13:28:27 2005
@@ -0,0 +1,14 @@
+package schema.system.sCC33F0FF6200523A94F502B0D0DAEDC1;
+
+public final class TypeSystemHolder
+{
+ private TypeSystemHolder() { }
+ public static final org.apache.xmlbeans.SchemaTypeSystem typeSystem =
loadTypeSystem();
+ static { typeSystem.resolve(); }
+ private static final org.apache.xmlbeans.SchemaTypeSystem loadTypeSystem()
+ {
+ try { return
(org.apache.xmlbeans.SchemaTypeSystem)Class.forName("org.apache.xmlbeans.impl.schema.SchemaTypeSystemImpl",
true, TypeSystemHolder.class.getClassLoader()).getConstructor(new Class[] {
Class.class }).newInstance(new java.lang.Object[] { TypeSystemHolder.class }); }
+ catch (ClassNotFoundException e) { throw new RuntimeException("Cannot
load org.apache.xmlbeans.impl.SchemaTypeSystemImpl: make sure xbean.jar is on
the classpath.", e); }
+ catch (Exception e) { throw new RuntimeException("Could not
instantiate SchemaTypeSystemImpl (" + e.toString() + "): is the version of
xbean.jar correct?", e); }
+ }
+}
Added:
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sD31DC0590796F8DBD740CDEA580F803F/TypeSystemHolder.java
URL:
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sD31DC0590796F8DBD740CDEA580F803F/TypeSystemHolder.java?view=auto&rev=158672
==============================================================================
---
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sD31DC0590796F8DBD740CDEA580F803F/TypeSystemHolder.java
(added)
+++
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sD31DC0590796F8DBD740CDEA580F803F/TypeSystemHolder.java
Tue Mar 22 13:28:27 2005
@@ -0,0 +1,14 @@
+package schema.system.sD31DC0590796F8DBD740CDEA580F803F;
+
+public final class TypeSystemHolder
+{
+ private TypeSystemHolder() { }
+ public static final org.apache.xmlbeans.SchemaTypeSystem typeSystem =
loadTypeSystem();
+ static { typeSystem.resolve(); }
+ private static final org.apache.xmlbeans.SchemaTypeSystem loadTypeSystem()
+ {
+ try { return
(org.apache.xmlbeans.SchemaTypeSystem)Class.forName("org.apache.xmlbeans.impl.schema.SchemaTypeSystemImpl",
true, TypeSystemHolder.class.getClassLoader()).getConstructor(new Class[] {
Class.class }).newInstance(new java.lang.Object[] { TypeSystemHolder.class }); }
+ catch (ClassNotFoundException e) { throw new RuntimeException("Cannot
load org.apache.xmlbeans.impl.SchemaTypeSystemImpl: make sure xbean.jar is on
the classpath.", e); }
+ catch (Exception e) { throw new RuntimeException("Could not
instantiate SchemaTypeSystemImpl (" + e.toString() + "): is the version of
xbean.jar correct?", e); }
+ }
+}
Added:
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sF9342926773FC44BDFC859695952C08E/TypeSystemHolder.java
URL:
http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sF9342926773FC44BDFC859695952C08E/TypeSystemHolder.java?view=auto&rev=158672
==============================================================================
---
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sF9342926773FC44BDFC859695952C08E/TypeSystemHolder.java
(added)
+++
incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/schema/system/sF9342926773FC44BDFC859695952C08E/TypeSystemHolder.java
Tue Mar 22 13:28:27 2005
@@ -0,0 +1,14 @@
+package schema.system.sF9342926773FC44BDFC859695952C08E;
+
+public final class TypeSystemHolder
+{
+ private TypeSystemHolder() { }
+ public static final org.apache.xmlbeans.SchemaTypeSystem typeSystem =
loadTypeSystem();
+ static { typeSystem.resolve(); }
+ private static final org.apache.xmlbeans.SchemaTypeSystem loadTypeSystem()
+ {
+ try { return
(org.apache.xmlbeans.SchemaTypeSystem)Class.forName("org.apache.xmlbeans.impl.schema.SchemaTypeSystemImpl",
true, TypeSystemHolder.class.getClassLoader()).getConstructor(new Class[] {
Class.class }).newInstance(new java.lang.Object[] { TypeSystemHolder.class }); }
+ catch (ClassNotFoundException e) { throw new RuntimeException("Cannot
load org.apache.xmlbeans.impl.SchemaTypeSystemImpl: make sure xbean.jar is on
the classpath.", e); }
+ catch (Exception e) { throw new RuntimeException("Could not
instantiate SchemaTypeSystemImpl (" + e.toString() + "): is the version of
xbean.jar correct?", e); }
+ }
+}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]