Java binding for new document schema (from 1st hinxton vamsas Meeting)
[vamsas.git] / src / org / vamsas / objects / core / Attachment.java
index a906c00..198f046 100644 (file)
-/*
- * This class was automatically generated with 
- * <a href="http://www.castor.org">Castor 0.9.9M2</a>, using an XML
- * Schema.
- * $Id$
- */
-
-package org.vamsas.objects.core;
-
-  //---------------------------------/
- //- Imported classes and packages -/
-//---------------------------------/
-
-import java.io.IOException;
-import java.io.Reader;
-import java.io.Serializable;
-import java.io.Writer;
-import org.exolab.castor.xml.MarshalException;
-import org.exolab.castor.xml.Marshaller;
-import org.exolab.castor.xml.Unmarshaller;
-import org.exolab.castor.xml.ValidationException;
-import org.xml.sax.ContentHandler;
-
-/**
- * Class Attachment.
- * 
- * @version $Revision$ $Date$
- */
-public class Attachment extends org.vamsas.objects.core.AppData 
-implements java.io.Serializable
-{
-
-
-      //--------------------------/
-     //- Class/Member Variables -/
-    //--------------------------/
-
-    /**
-     * true implies data will be decompresses
-     *  with Zip before presenting to
-     *  application
-     *  
-     */
-    private boolean _compressed = false;
-
-    /**
-     * keeps track of state for field: _compressed
-     */
-    private boolean _has_compressed;
-
-    /**
-     * Type of arbitrary data - TODO: decide
-     *  format - use (extended) MIME types ?
-     *  
-     */
-    private java.lang.String _type;
-
-    /**
-     * Object the arbitrary data is associated
-     *  with
-     *  
-     */
-    private java.lang.Object _objectref;
-
-    /**
-     * Primary Key for vamsas object
-     *  referencing
-     *  
-     */
-    private java.lang.String _id;
-
-
-      //----------------/
-     //- Constructors -/
-    //----------------/
-
-    public Attachment() 
-     {
-        super();
-    } //-- org.vamsas.objects.core.Attachment()
-
-
-      //-----------/
-     //- Methods -/
-    //-----------/
-
-    /**
-     * Method deleteCompressed
-     * 
-     */
-    public void deleteCompressed()
-    {
-        this._has_compressed= false;
-    } //-- void deleteCompressed() 
-
-    /**
-     * Note: hashCode() has not been overriden
-     * 
-     * @param obj
-     * @return boolean
-     */
-    public boolean equals(java.lang.Object obj)
-    {
-        if ( this == obj )
-            return true;
-        
-        if (super.equals(obj)==false)
-            return false;
-        
-        if (obj instanceof Attachment) {
-        
-            Attachment temp = (Attachment)obj;
-            if (this._compressed != temp._compressed)
-                return false;
-            if (this._has_compressed != temp._has_compressed)
-                return false;
-            if (this._type != null) {
-                if (temp._type == null) return false;
-                else if (!(this._type.equals(temp._type))) 
-                    return false;
-            }
-            else if (temp._type != null)
-                return false;
-            if (this._objectref != null) {
-                if (temp._objectref == null) return false;
-                else if (!(this._objectref.equals(temp._objectref))) 
-                    return false;
-            }
-            else if (temp._objectref != null)
-                return false;
-            if (this._id != null) {
-                if (temp._id == null) return false;
-                else if (!(this._id.equals(temp._id))) 
-                    return false;
-            }
-            else if (temp._id != null)
-                return false;
-            return true;
-        }
-        return false;
-    } //-- boolean equals(java.lang.Object) 
-
-    /**
-     * Returns the value of field 'compressed'. The field
-     * 'compressed' has the following description: true implies
-     * data will be decompresses
-     *  with Zip before presenting to
-     *  application
-     *  
-     * 
-     * @return boolean
-     * @return the value of field 'compressed'.
-     */
-    public boolean getCompressed()
-    {
-        return this._compressed;
-    } //-- boolean getCompressed() 
-
-    /**
-     * Returns the value of field 'id'. The field 'id' has the
-     * following description: Primary Key for vamsas object
-     *  referencing
-     *  
-     * 
-     * @return String
-     * @return the value of field 'id'.
-     */
-    public java.lang.String getId()
-    {
-        return this._id;
-    } //-- java.lang.String getId() 
-
-    /**
-     * Returns the value of field 'objectref'. The field
-     * 'objectref' has the following description: Object the
-     * arbitrary data is associated
-     *  with
-     *  
-     * 
-     * @return Object
-     * @return the value of field 'objectref'.
-     */
-    public java.lang.Object getObjectref()
-    {
-        return this._objectref;
-    } //-- java.lang.Object getObjectref() 
-
-    /**
-     * Returns the value of field 'type'. The field 'type' has the
-     * following description: Type of arbitrary data - TODO: decide
-     *  format - use (extended) MIME types ?
-     *  
-     * 
-     * @return String
-     * @return the value of field 'type'.
-     */
-    public java.lang.String getType()
-    {
-        return this._type;
-    } //-- java.lang.String getType() 
-
-    /**
-     * Method hasCompressed
-     * 
-     * 
-     * 
-     * @return boolean
-     */
-    public boolean hasCompressed()
-    {
-        return this._has_compressed;
-    } //-- boolean hasCompressed() 
-
-    /**
-     * Method isValid
-     * 
-     * 
-     * 
-     * @return boolean
-     */
-    public boolean isValid()
-    {
-        try {
-            validate();
-        }
-        catch (org.exolab.castor.xml.ValidationException vex) {
-            return false;
-        }
-        return true;
-    } //-- boolean isValid() 
-
-    /**
-     * Method marshal
-     * 
-     * 
-     * 
-     * @param out
-     */
-    public void marshal(java.io.Writer out)
-        throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
-    {
-        
-        Marshaller.marshal(this, out);
-    } //-- void marshal(java.io.Writer) 
-
-    /**
-     * Method marshal
-     * 
-     * 
-     * 
-     * @param handler
-     */
-    public void marshal(org.xml.sax.ContentHandler handler)
-        throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
-    {
-        
-        Marshaller.marshal(this, handler);
-    } //-- void marshal(org.xml.sax.ContentHandler) 
-
-    /**
-     * Sets the value of field 'compressed'. The field 'compressed'
-     * has the following description: true implies data will be
-     * decompresses
-     *  with Zip before presenting to
-     *  application
-     *  
-     * 
-     * @param compressed the value of field 'compressed'.
-     */
-    public void setCompressed(boolean compressed)
-    {
-        this._compressed = compressed;
-        this._has_compressed = true;
-    } //-- void setCompressed(boolean) 
-
-    /**
-     * Sets the value of field 'id'. The field 'id' has the
-     * following description: Primary Key for vamsas object
-     *  referencing
-     *  
-     * 
-     * @param id the value of field 'id'.
-     */
-    public void setId(java.lang.String id)
-    {
-        this._id = id;
-    } //-- void setId(java.lang.String) 
-
-    /**
-     * Sets the value of field 'objectref'. The field 'objectref'
-     * has the following description: Object the arbitrary data is
-     * associated
-     *  with
-     *  
-     * 
-     * @param objectref the value of field 'objectref'.
-     */
-    public void setObjectref(java.lang.Object objectref)
-    {
-        this._objectref = objectref;
-    } //-- void setObjectref(java.lang.Object) 
-
-    /**
-     * Sets the value of field 'type'. The field 'type' has the
-     * following description: Type of arbitrary data - TODO: decide
-     *  format - use (extended) MIME types ?
-     *  
-     * 
-     * @param type the value of field 'type'.
-     */
-    public void setType(java.lang.String type)
-    {
-        this._type = type;
-    } //-- void setType(java.lang.String) 
-
-    /**
-     * Method unmarshal
-     * 
-     * 
-     * 
-     * @param reader
-     * @return AppData
-     */
-    public static org.vamsas.objects.core.AppData unmarshal(java.io.Reader reader)
-        throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
-    {
-        return (org.vamsas.objects.core.Attachment) Unmarshaller.unmarshal(org.vamsas.objects.core.Attachment.class, reader);
-    } //-- org.vamsas.objects.core.AppData unmarshal(java.io.Reader) 
-
-    /**
-     * Method validate
-     * 
-     */
-    public void validate()
-        throws org.exolab.castor.xml.ValidationException
-    {
-        org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator();
-        validator.validate(this);
-    } //-- void validate() 
-
-}
+/*\r
+ * This class was automatically generated with \r
+ * <a href="http://www.castor.org">Castor 0.9.9M2</a>, using an XML\r
+ * Schema.\r
+ * $Id$\r
+ */\r
+\r
+package org.vamsas.objects.core;\r
+\r
+  //---------------------------------/\r
+ //- Imported classes and packages -/\r
+//---------------------------------/\r
+\r
+import java.io.IOException;\r
+import java.io.Reader;\r
+import java.io.Serializable;\r
+import java.io.Writer;\r
+import org.exolab.castor.xml.MarshalException;\r
+import org.exolab.castor.xml.Marshaller;\r
+import org.exolab.castor.xml.Unmarshaller;\r
+import org.exolab.castor.xml.ValidationException;\r
+import org.xml.sax.ContentHandler;\r
+\r
+/**\r
+ * Class Attachment.\r
+ * \r
+ * @version $Revision$ $Date$\r
+ */\r
+public class Attachment extends org.vamsas.objects.core.AppData \r
+implements java.io.Serializable\r
+{\r
+\r
+\r
+      //--------------------------/\r
+     //- Class/Member Variables -/\r
+    //--------------------------/\r
+\r
+    /**\r
+     * true implies data will be decompresses\r
+     *  with Zip before presenting to\r
+     *  application\r
+     *  \r
+     */\r
+    private boolean _compressed = false;\r
+\r
+    /**\r
+     * keeps track of state for field: _compressed\r
+     */\r
+    private boolean _has_compressed;\r
+\r
+    /**\r
+     * Type of arbitrary data - TODO: decide\r
+     *  format - use (extended) MIME types ?\r
+     *  \r
+     */\r
+    private java.lang.String _type;\r
+\r
+    /**\r
+     * Object the arbitrary data is associated\r
+     *  with\r
+     *  \r
+     */\r
+    private java.lang.Object _objectref;\r
+\r
+    /**\r
+     * Primary Key for vamsas object\r
+     *  referencing\r
+     *  \r
+     */\r
+    private java.lang.String _id;\r
+\r
+\r
+      //----------------/\r
+     //- Constructors -/\r
+    //----------------/\r
+\r
+    public Attachment() \r
+     {\r
+        super();\r
+    } //-- org.vamsas.objects.core.Attachment()\r
+\r
+\r
+      //-----------/\r
+     //- Methods -/\r
+    //-----------/\r
+\r
+    /**\r
+     * Method deleteCompressed\r
+     * \r
+     */\r
+    public void deleteCompressed()\r
+    {\r
+        this._has_compressed= false;\r
+    } //-- void deleteCompressed() \r
+\r
+    /**\r
+     * Note: hashCode() has not been overriden\r
+     * \r
+     * @param obj\r
+     * @return boolean\r
+     */\r
+    public boolean equals(java.lang.Object obj)\r
+    {\r
+        if ( this == obj )\r
+            return true;\r
+        \r
+        if (super.equals(obj)==false)\r
+            return false;\r
+        \r
+        if (obj instanceof Attachment) {\r
+        \r
+            Attachment temp = (Attachment)obj;\r
+            if (this._compressed != temp._compressed)\r
+                return false;\r
+            if (this._has_compressed != temp._has_compressed)\r
+                return false;\r
+            if (this._type != null) {\r
+                if (temp._type == null) return false;\r
+                else if (!(this._type.equals(temp._type))) \r
+                    return false;\r
+            }\r
+            else if (temp._type != null)\r
+                return false;\r
+            if (this._objectref != null) {\r
+                if (temp._objectref == null) return false;\r
+                else if (!(this._objectref.equals(temp._objectref))) \r
+                    return false;\r
+            }\r
+            else if (temp._objectref != null)\r
+                return false;\r
+            if (this._id != null) {\r
+                if (temp._id == null) return false;\r
+                else if (!(this._id.equals(temp._id))) \r
+                    return false;\r
+            }\r
+            else if (temp._id != null)\r
+                return false;\r
+            return true;\r
+        }\r
+        return false;\r
+    } //-- boolean equals(java.lang.Object) \r
+\r
+    /**\r
+     * Returns the value of field 'compressed'. The field\r
+     * 'compressed' has the following description: true implies\r
+     * data will be decompresses\r
+     *  with Zip before presenting to\r
+     *  application\r
+     *  \r
+     * \r
+     * @return boolean\r
+     * @return the value of field 'compressed'.\r
+     */\r
+    public boolean getCompressed()\r
+    {\r
+        return this._compressed;\r
+    } //-- boolean getCompressed() \r
+\r
+    /**\r
+     * Returns the value of field 'id'. The field 'id' has the\r
+     * following description: Primary Key for vamsas object\r
+     *  referencing\r
+     *  \r
+     * \r
+     * @return String\r
+     * @return the value of field 'id'.\r
+     */\r
+    public java.lang.String getId()\r
+    {\r
+        return this._id;\r
+    } //-- java.lang.String getId() \r
+\r
+    /**\r
+     * Returns the value of field 'objectref'. The field\r
+     * 'objectref' has the following description: Object the\r
+     * arbitrary data is associated\r
+     *  with\r
+     *  \r
+     * \r
+     * @return Object\r
+     * @return the value of field 'objectref'.\r
+     */\r
+    public java.lang.Object getObjectref()\r
+    {\r
+        return this._objectref;\r
+    } //-- java.lang.Object getObjectref() \r
+\r
+    /**\r
+     * Returns the value of field 'type'. The field 'type' has the\r
+     * following description: Type of arbitrary data - TODO: decide\r
+     *  format - use (extended) MIME types ?\r
+     *  \r
+     * \r
+     * @return String\r
+     * @return the value of field 'type'.\r
+     */\r
+    public java.lang.String getType()\r
+    {\r
+        return this._type;\r
+    } //-- java.lang.String getType() \r
+\r
+    /**\r
+     * Method hasCompressed\r
+     * \r
+     * \r
+     * \r
+     * @return boolean\r
+     */\r
+    public boolean hasCompressed()\r
+    {\r
+        return this._has_compressed;\r
+    } //-- boolean hasCompressed() \r
+\r
+    /**\r
+     * Method isValid\r
+     * \r
+     * \r
+     * \r
+     * @return boolean\r
+     */\r
+    public boolean isValid()\r
+    {\r
+        try {\r
+            validate();\r
+        }\r
+        catch (org.exolab.castor.xml.ValidationException vex) {\r
+            return false;\r
+        }\r
+        return true;\r
+    } //-- boolean isValid() \r
+\r
+    /**\r
+     * Method marshal\r
+     * \r
+     * \r
+     * \r
+     * @param out\r
+     */\r
+    public void marshal(java.io.Writer out)\r
+        throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException\r
+    {\r
+        \r
+        Marshaller.marshal(this, out);\r
+    } //-- void marshal(java.io.Writer) \r
+\r
+    /**\r
+     * Method marshal\r
+     * \r
+     * \r
+     * \r
+     * @param handler\r
+     */\r
+    public void marshal(org.xml.sax.ContentHandler handler)\r
+        throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException\r
+    {\r
+        \r
+        Marshaller.marshal(this, handler);\r
+    } //-- void marshal(org.xml.sax.ContentHandler) \r
+\r
+    /**\r
+     * Sets the value of field 'compressed'. The field 'compressed'\r
+     * has the following description: true implies data will be\r
+     * decompresses\r
+     *  with Zip before presenting to\r
+     *  application\r
+     *  \r
+     * \r
+     * @param compressed the value of field 'compressed'.\r
+     */\r
+    public void setCompressed(boolean compressed)\r
+    {\r
+        this._compressed = compressed;\r
+        this._has_compressed = true;\r
+    } //-- void setCompressed(boolean) \r
+\r
+    /**\r
+     * Sets the value of field 'id'. The field 'id' has the\r
+     * following description: Primary Key for vamsas object\r
+     *  referencing\r
+     *  \r
+     * \r
+     * @param id the value of field 'id'.\r
+     */\r
+    public void setId(java.lang.String id)\r
+    {\r
+        this._id = id;\r
+    } //-- void setId(java.lang.String) \r
+\r
+    /**\r
+     * Sets the value of field 'objectref'. The field 'objectref'\r
+     * has the following description: Object the arbitrary data is\r
+     * associated\r
+     *  with\r
+     *  \r
+     * \r
+     * @param objectref the value of field 'objectref'.\r
+     */\r
+    public void setObjectref(java.lang.Object objectref)\r
+    {\r
+        this._objectref = objectref;\r
+    } //-- void setObjectref(java.lang.Object) \r
+\r
+    /**\r
+     * Sets the value of field 'type'. The field 'type' has the\r
+     * following description: Type of arbitrary data - TODO: decide\r
+     *  format - use (extended) MIME types ?\r
+     *  \r
+     * \r
+     * @param type the value of field 'type'.\r
+     */\r
+    public void setType(java.lang.String type)\r
+    {\r
+        this._type = type;\r
+    } //-- void setType(java.lang.String) \r
+\r
+    /**\r
+     * Method unmarshal\r
+     * \r
+     * \r
+     * \r
+     * @param reader\r
+     * @return AppData\r
+     */\r
+    public static org.vamsas.objects.core.AppData unmarshal(java.io.Reader reader)\r
+        throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException\r
+    {\r
+        return (org.vamsas.objects.core.Attachment) Unmarshaller.unmarshal(org.vamsas.objects.core.Attachment.class, reader);\r
+    } //-- org.vamsas.objects.core.AppData unmarshal(java.io.Reader) \r
+\r
+    /**\r
+     * Method validate\r
+     * \r
+     */\r
+    public void validate()\r
+        throws org.exolab.castor.xml.ValidationException\r
+    {\r
+        org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator();\r
+        validator.validate(this);\r
+    } //-- void validate() \r
+\r
+}\r