📄 chaintable.java
字号:
/* * This class was automatically generated with * <a href="http://www.castor.org">Castor 0.9.7</a>, using an XML * Schema. * $Id$ */package com.queplix.core.jxb.entity; //---------------------------------/ //- Imported classes and packages -///---------------------------------/import org.exolab.castor.xml.Marshaller;import org.exolab.castor.xml.Unmarshaller;/** * Auto-generated element. Never don't use it. * * @version $Revision$ $Date$ */public class ChainTable extends com.queplix.core.utils.jxb.JXBObject implements java.io.Serializable{ //--------------------------/ //- Class/Member Variables -/ //--------------------------/ /** * Field _entity */ private java.lang.String _entity; /** * Internal choice value storage */ private java.lang.Object _choiceValue; /** * Field _dataschema */ private com.queplix.core.jxb.entity.Dataschema _dataschema; /** * Field _chainref */ private com.queplix.core.jxb.entity.Chainref _chainref; /** * Field _nods */ private com.queplix.core.jxb.entity.Nods _nods; //----------------/ //- Constructors -/ //----------------/ public ChainTable() { super(); } //-- com.queplix.core.jxb.entity.ChainTable() //-----------/ //- Methods -/ //-----------/ /** * Returns the value of field 'chainref'. * * @return Chainref * @return the value of field 'chainref'. */ public com.queplix.core.jxb.entity.Chainref getChainref() { return this._chainref; } //-- com.queplix.core.jxb.entity.Chainref getChainref() /** * Returns the value of field 'choiceValue'. The field * 'choiceValue' has the following description: Internal choice * value storage * * @return Object * @return the value of field 'choiceValue'. */ public java.lang.Object getChoiceValue() { return this._choiceValue; } //-- java.lang.Object getChoiceValue() /** * Returns the value of field 'dataschema'. * * @return Dataschema * @return the value of field 'dataschema'. */ public com.queplix.core.jxb.entity.Dataschema getDataschema() { return this._dataschema; } //-- com.queplix.core.jxb.entity.Dataschema getDataschema() /** * Returns the value of field 'entity'. * * @return String * @return the value of field 'entity'. */ public java.lang.String getEntity() { return this._entity; } //-- java.lang.String getEntity() /** * Returns the value of field 'nods'. * * @return Nods * @return the value of field 'nods'. */ public com.queplix.core.jxb.entity.Nods getNods() { return this._nods; } //-- com.queplix.core.jxb.entity.Nods getNods() /** * 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 'chainref'. * * @param chainref the value of field 'chainref'. */ public void setChainref(com.queplix.core.jxb.entity.Chainref chainref) { this._chainref = chainref; this._choiceValue = chainref; } //-- void setChainref(com.queplix.core.jxb.entity.Chainref) /** * Sets the value of field 'dataschema'. * * @param dataschema the value of field 'dataschema'. */ public void setDataschema(com.queplix.core.jxb.entity.Dataschema dataschema) { this._dataschema = dataschema; this._choiceValue = dataschema; } //-- void setDataschema(com.queplix.core.jxb.entity.Dataschema) /** * Sets the value of field 'entity'. * * @param entity the value of field 'entity'. */ public void setEntity(java.lang.String entity) { this._entity = entity; } //-- void setForm(java.lang.String) /** * Sets the value of field 'nods'. * * @param nods the value of field 'nods'. */ public void setNods(com.queplix.core.jxb.entity.Nods nods) { this._nods = nods; this._choiceValue = nods; } //-- void setNods(com.queplix.core.jxb.entity.Nods) /** * Method unmarshal * * * * @param reader * @return Object */ public static java.lang.Object unmarshal(java.io.Reader reader) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { return (com.queplix.core.jxb.entity.ChainTable) Unmarshaller.unmarshal(com.queplix.core.jxb.entity.ChainTable.class, reader); } //-- java.lang.Object 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() }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -