⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eqlagent.java

📁 CRM源码This file describes some issues that should be implemented in future and how it should be imple
💻 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.eql.jxb.eqlagent;  //---------------------------------/ //- Imported classes and packages -///---------------------------------/import java.io.IOException;import java.io.Reader;import java.io.Serializable;import java.io.Writer;import java.util.ArrayList;import java.util.Enumeration;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 Eqlagent. *  * @version $Revision$ $Date$ */public class Eqlagent extends com.queplix.core.utils.jxb.JXBObject implements java.io.Serializable{      //--------------------------/     //- Class/Member Variables -/    //--------------------------/    /**     * Field _name     */    private java.lang.String _name;    /**     * Field _eqlagentclass     */    private java.lang.String _eqlagentclass;    /**     * Field _propertyList     */    private java.util.ArrayList _propertyList;    /**     * Field _bindingList     */    private java.util.ArrayList _bindingList;      //----------------/     //- Constructors -/    //----------------/    public Eqlagent()      {        super();        _propertyList = new ArrayList();        _bindingList = new ArrayList();    } //-- com.queplix.core.modules.eql.jxb.eqlagent.Eqlagent()      //-----------/     //- Methods -/    //-----------/    /**     * Method addBinding     *      *      *      * @param vBinding     */    public void addBinding(com.queplix.core.modules.eql.jxb.eqlagent.Binding vBinding)        throws java.lang.IndexOutOfBoundsException    {        _bindingList.add(vBinding);    } //-- void addBinding(com.queplix.core.modules.eql.jxb.eqlagent.Binding)     /**     * Method addBinding     *      *      *      * @param index     * @param vBinding     */    public void addBinding(int index, com.queplix.core.modules.eql.jxb.eqlagent.Binding vBinding)        throws java.lang.IndexOutOfBoundsException    {        _bindingList.add(index, vBinding);    } //-- void addBinding(int, com.queplix.core.modules.eql.jxb.eqlagent.Binding)     /**     * Method addProperty     *      *      *      * @param vProperty     */    public void addProperty(com.queplix.core.modules.eql.jxb.eqlagent.Property vProperty)        throws java.lang.IndexOutOfBoundsException    {        _propertyList.add(vProperty);    } //-- void addProperty(com.queplix.core.modules.eql.jxb.eqlagent.Property)     /**     * Method addProperty     *      *      *      * @param index     * @param vProperty     */    public void addProperty(int index, com.queplix.core.modules.eql.jxb.eqlagent.Property vProperty)        throws java.lang.IndexOutOfBoundsException    {        _propertyList.add(index, vProperty);    } //-- void addProperty(int, com.queplix.core.modules.eql.jxb.eqlagent.Property)     /**     * Method clearBinding     *      */    public void clearBinding()    {        _bindingList.clear();    } //-- void clearBinding()     /**     * Method clearProperty     *      */    public void clearProperty()    {        _propertyList.clear();    } //-- void clearProperty()     /**     * Method enumerateBinding     *      *      *      * @return Enumeration     */    public java.util.Enumeration enumerateBinding()    {        return new org.exolab.castor.util.IteratorEnumeration(_bindingList.iterator());    } //-- java.util.Enumeration enumerateBinding()     /**     * Method enumerateProperty     *      *      *      * @return Enumeration     */    public java.util.Enumeration enumerateProperty()    {        return new org.exolab.castor.util.IteratorEnumeration(_propertyList.iterator());    } //-- java.util.Enumeration enumerateProperty()     /**     * Method getBinding     *      *      *      * @param index     * @return Binding     */    public com.queplix.core.modules.eql.jxb.eqlagent.Binding getBinding(int index)        throws java.lang.IndexOutOfBoundsException    {        //-- check bounds for index        if ((index < 0) || (index > _bindingList.size())) {            throw new IndexOutOfBoundsException();        }                return (com.queplix.core.modules.eql.jxb.eqlagent.Binding) _bindingList.get(index);    } //-- com.queplix.core.modules.eql.jxb.eqlagent.Binding getBinding(int)     /**     * Method getBinding     *      *      *      * @return Binding     */    public com.queplix.core.modules.eql.jxb.eqlagent.Binding[] getBinding()    {        int size = _bindingList.size();        com.queplix.core.modules.eql.jxb.eqlagent.Binding[] mArray = new com.queplix.core.modules.eql.jxb.eqlagent.Binding[size];        for (int index = 0; index < size; index++) {            mArray[index] = (com.queplix.core.modules.eql.jxb.eqlagent.Binding) _bindingList.get(index);        }        return mArray;    } //-- com.queplix.core.modules.eql.jxb.eqlagent.Binding[] getBinding()     /**     * Method getBindingCount     *      *      *      * @return int     */    public int getBindingCount()    {        return _bindingList.size();    } //-- int getBindingCount()     /**     * Returns the value of field 'eqlagentclass'.     *      * @return String     * @return the value of field 'eqlagentclass'.     */    public java.lang.String getEqlagentclass()    {        return this._eqlagentclass;    } //-- java.lang.String getEqlagentclass()     /**     * Returns the value of field 'name'.     *      * @return String     * @return the value of field 'name'.     */    public java.lang.String getName()    {        return this._name;    } //-- java.lang.String getName()     /**     * Method getProperty     *      *      *      * @param index     * @return Property     */    public com.queplix.core.modules.eql.jxb.eqlagent.Property getProperty(int index)        throws java.lang.IndexOutOfBoundsException    {        //-- check bounds for index        if ((index < 0) || (index > _propertyList.size())) {            throw new IndexOutOfBoundsException();        }                return (com.queplix.core.modules.eql.jxb.eqlagent.Property) _propertyList.get(index);    } //-- com.queplix.core.modules.eql.jxb.eqlagent.Property getProperty(int)     /**     * Method getProperty     *      *      *      * @return Property     */    public com.queplix.core.modules.eql.jxb.eqlagent.Property[] getProperty()    {        int size = _propertyList.size();        com.queplix.core.modules.eql.jxb.eqlagent.Property[] mArray = new com.queplix.core.modules.eql.jxb.eqlagent.Property[size];        for (int index = 0; index < size; index++) {            mArray[index] = (com.queplix.core.modules.eql.jxb.eqlagent.Property) _propertyList.get(index);        }        return mArray;    } //-- com.queplix.core.modules.eql.jxb.eqlagent.Property[] getProperty()     /**     * Method getPropertyCount     *      *      *      * @return int     */    public int getPropertyCount()    {        return _propertyList.size();    } //-- int getPropertyCount()     /**     * 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)     /**     * Method removeBinding     *      *      *      * @param vBinding     * @return boolean     */    public boolean removeBinding(com.queplix.core.modules.eql.jxb.eqlagent.Binding vBinding)    {        boolean removed = _bindingList.remove(vBinding);        return removed;    } //-- boolean removeBinding(com.queplix.core.modules.eql.jxb.eqlagent.Binding)     /**     * Method removeProperty     *      *      *      * @param vProperty     * @return boolean     */    public boolean removeProperty(com.queplix.core.modules.eql.jxb.eqlagent.Property vProperty)    {        boolean removed = _propertyList.remove(vProperty);        return removed;    } //-- boolean removeProperty(com.queplix.core.modules.eql.jxb.eqlagent.Property)     /**     * Method setBinding     *      *      *      * @param index     * @param vBinding     */    public void setBinding(int index, com.queplix.core.modules.eql.jxb.eqlagent.Binding vBinding)        throws java.lang.IndexOutOfBoundsException    {        //-- check bounds for index        if ((index < 0) || (index > _bindingList.size())) {            throw new IndexOutOfBoundsException();        }        _bindingList.set(index, vBinding);    } //-- void setBinding(int, com.queplix.core.modules.eql.jxb.eqlagent.Binding)     /**     * Method setBinding     *      *      *      * @param bindingArray     */    public void setBinding(com.queplix.core.modules.eql.jxb.eqlagent.Binding[] bindingArray)    {        //-- copy array        _bindingList.clear();        for (int i = 0; i < bindingArray.length; i++) {            _bindingList.add(bindingArray[i]);        }    } //-- void setBinding(com.queplix.core.modules.eql.jxb.eqlagent.Binding)     /**     * Sets the value of field 'eqlagentclass'.     *      * @param eqlagentclass the value of field 'eqlagentclass'.     */    public void setEqlagentclass(java.lang.String eqlagentclass)    {        this._eqlagentclass = eqlagentclass;    } //-- void setEqlagentclass(java.lang.String)     /**     * 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)     /**     * Method setProperty     *      *      *      * @param index     * @param vProperty     */    public void setProperty(int index, com.queplix.core.modules.eql.jxb.eqlagent.Property vProperty)        throws java.lang.IndexOutOfBoundsException    {        //-- check bounds for index        if ((index < 0) || (index > _propertyList.size())) {            throw new IndexOutOfBoundsException();        }        _propertyList.set(index, vProperty);    } //-- void setProperty(int, com.queplix.core.modules.eql.jxb.eqlagent.Property)     /**     * Method setProperty     *      *      *      * @param propertyArray     */    public void setProperty(com.queplix.core.modules.eql.jxb.eqlagent.Property[] propertyArray)    {        //-- copy array        _propertyList.clear();        for (int i = 0; i < propertyArray.length; i++) {            _propertyList.add(propertyArray[i]);        }    } //-- void setProperty(com.queplix.core.modules.eql.jxb.eqlagent.Property)     /**     * 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.eql.jxb.eqlagent.Eqlagent) Unmarshaller.unmarshal(com.queplix.core.modules.eql.jxb.eqlagent.Eqlagent.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 + -