📄 alertconfig.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.modules.alert.jxb; //---------------------------------/ //- 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;/** * Qx alert structure * * @version $Revision$ $Date$ */public class AlertConfig extends com.queplix.core.utils.jxb.JXBObject implements java.io.Serializable{ //--------------------------/ //- Class/Member Variables -/ //--------------------------/ /** * Field _dao */ private com.queplix.core.modules.alert.jxb.Dao _dao; /** * Field _selector */ private com.queplix.core.modules.alert.jxb.Selector _selector; /** * Field _cache */ private com.queplix.core.modules.alert.jxb.Cache _cache; //----------------/ //- Constructors -/ //----------------/ public AlertConfig() { super(); } //-- com.queplix.core.modules.alert.jxb.AlertConfig() //-----------/ //- Methods -/ //-----------/ /** * Returns the value of field 'cache'. * * @return Cache * @return the value of field 'cache'. */ public com.queplix.core.modules.alert.jxb.Cache getCache() { return this._cache; } //-- com.queplix.core.modules.alert.jxb.Cache getCache() /** * Returns the value of field 'dao'. * * @return Dao * @return the value of field 'dao'. */ public com.queplix.core.modules.alert.jxb.Dao getDao() { return this._dao; } //-- com.queplix.core.modules.alert.jxb.Dao getDao() /** * Returns the value of field 'selector'. * * @return Selector * @return the value of field 'selector'. */ public com.queplix.core.modules.alert.jxb.Selector getSelector() { return this._selector; } //-- com.queplix.core.modules.alert.jxb.Selector getSelector() /** * 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 'cache'. * * @param cache the value of field 'cache'. */ public void setCache(com.queplix.core.modules.alert.jxb.Cache cache) { this._cache = cache; } //-- void setCache(com.queplix.core.modules.alert.jxb.Cache) /** * Sets the value of field 'dao'. * * @param dao the value of field 'dao'. */ public void setDao(com.queplix.core.modules.alert.jxb.Dao dao) { this._dao = dao; } //-- void setDao(com.queplix.core.modules.alert.jxb.Dao) /** * Sets the value of field 'selector'. * * @param selector the value of field 'selector'. */ public void setSelector(com.queplix.core.modules.alert.jxb.Selector selector) { this._selector = selector; } //-- void setSelector(com.queplix.core.modules.alert.jxb.Selector) /** * 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.modules.alert.jxb.AlertConfig) Unmarshaller.unmarshal(com.queplix.core.modules.alert.jxb.AlertConfig.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 + -