/* * This class was automatically generated with * <a href="http://castor.exolab.org">Castor 0.9.2</a>, using an * XML Schema. * $Id$ */ package org.apache.jetspeed.xml.api.jcm; //---------------------------------/ //- Imported classes and packages -/ //---------------------------------/ import java.io.Reader; import java.io.Serializable; import java.io.Writer; import org.exolab.castor.xml.*; import org.exolab.castor.xml.MarshalException; import org.exolab.castor.xml.ValidationException; import org.xml.sax.DocumentHandler; /** * * @version $Revision$ $Date$ **/ public class Entry implements java.io.Serializable { //--------------------------/ //- Class/Member Variables -/ //--------------------------/ private java.lang.String _name; private Image _image; //----------------/ //- Constructors -/ //----------------/ public Entry() { super(); } //-- org.apache.jetspeed.xml.api.jcm.Entry() //-----------/ //- Methods -/ //-----------/ /** **/ public Image getImage() { return this._image; } //-- Image getImage() /** **/ public java.lang.String getName() { return this._name; } //-- java.lang.String getName() /** **/ public boolean isValid() { try { validate(); } catch (org.exolab.castor.xml.ValidationException vex) { return false; } return true; } //-- boolean isValid() /** * * @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) /** * * @param handler **/ public void marshal(org.xml.sax.DocumentHandler handler) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { Marshaller.marshal(this, handler); } //-- void marshal(org.xml.sax.DocumentHandler) /** * * @param image **/ public void setImage(Image image) { this._image = image; } //-- void setImage(Image) /** * * @param name **/ public void setName(java.lang.String name) { this._name = name; } //-- void setName(java.lang.String) /** * * @param reader **/ public static org.apache.jetspeed.xml.api.jcm.Entry unmarshal(java.io.Reader reader) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { return (org.apache.jetspeed.xml.api.jcm.Entry) Unmarshaller.unmarshal(org.apache.jetspeed.xml.api.jcm.Entry.class, reader); } //-- org.apache.jetspeed.xml.api.jcm.Entry unmarshal(java.io.Reader) /** **/ 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() }