/* * This class was automatically generated with * <a href="http://castor.exolab.org">Castor 0.9.4</a>, using an * XML Schema. * $Id$ */ package com.hackerdude.apps.sqlide.xml.hostconfig; //---------------------------------/ //- Imported classes and packages -/ //---------------------------------/ /** * * A single name/value pair. * * * @version $Revision$ $Date$ **/ public abstract class PROPERTYType implements java.io.Serializable { //--------------------------/ //- Class/Member Variables -/ //--------------------------/ private java.lang.String _name; private java.lang.String _value; //----------------/ //- Constructors -/ //----------------/ public PROPERTYType() { super(); } //-- com.hackerdude.apps.sqlide.xml.hostconfig.PROPERTYType() //-----------/ //- Methods -/ //-----------/ /** * Returns the value of field 'name'. * * @return the value of field 'name'. **/ public java.lang.String getName() { return this._name; } //-- java.lang.String getName() /** * Returns the value of field 'value'. * * @return the value of field 'value'. **/ public java.lang.String getValue() { return this._value; } //-- java.lang.String getValue() /** **/ public boolean isValid() { try { validate(); } catch (org.exolab.castor.xml.ValidationException vex) { return false; } return true; } //-- boolean isValid() /** * * * @param out **/ public abstract void marshal(java.io.Writer out) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException; /** * * * @param handler **/ public abstract void marshal(org.xml.sax.ContentHandler handler) throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException; /** * Sets the value of field 'name'. * * @param name the value of field 'name'. **/ public void setName(java.lang.String name) { this._name = name; } //-- void setName(java.lang.String) /** * Sets the value of field 'value'. * * @param value the value of field 'value'. **/ public void setValue(java.lang.String value) { this._value = value; } //-- void setValue(java.lang.String) /** **/ 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() }