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

📄 form.java

📁 CRM源码This file describes some issues that should be implemented in future and how it should be imple
💻 JAVA
📖 第 1 页 / 共 3 页
字号:
     * 
     * @param vExternalField
     * @return boolean
     */
    public boolean removeExternalField(com.queplix.core.modules.config.jxb.ExternalField vExternalField)
    {
        boolean removed = _externalFieldList.remove(vExternalField);
        return removed;
    } //-- boolean removeExternalField(com.queplix.core.modules.config.jxb.ExternalField) 

    /**
     * Method removeExternalForm
     * 
     * 
     * 
     * @param vExternalForm
     * @return boolean
     */
    public boolean removeExternalForm(com.queplix.core.modules.config.jxb.ExternalForm vExternalForm)
    {
        boolean removed = _externalFormList.remove(vExternalForm);
        return removed;
    } //-- boolean removeExternalForm(com.queplix.core.modules.config.jxb.ExternalForm) 

    /**
     * Method removeExternalSet
     * 
     * 
     * 
     * @param vExternalSet
     * @return boolean
     */
    public boolean removeExternalSet(com.queplix.core.modules.config.jxb.ExternalSet vExternalSet)
    {
        boolean removed = _externalSetList.remove(vExternalSet);
        return removed;
    } //-- boolean removeExternalSet(com.queplix.core.modules.config.jxb.ExternalSet) 

    /**
     * Method removeInternalField
     * 
     * 
     * 
     * @param vInternalField
     * @return boolean
     */
    public boolean removeInternalField(com.queplix.core.modules.config.jxb.InternalField vInternalField)
    {
        boolean removed = _internalFieldList.remove(vInternalField);
        return removed;
    } //-- boolean removeInternalField(com.queplix.core.modules.config.jxb.InternalField) 

    /**
     * Method removeLinkedDataset
     * 
     * 
     * 
     * @param vLinkedDataset
     * @return boolean
     */
    public boolean removeLinkedDataset(com.queplix.core.modules.config.jxb.LinkedDataset vLinkedDataset)
    {
        boolean removed = _linkedDatasetList.remove(vLinkedDataset);
        return removed;
    } //-- boolean removeLinkedDataset(com.queplix.core.modules.config.jxb.LinkedDataset) 

    /**
     * Sets the value of field 'autosearch'.
     * 
     * @param autosearch the value of field 'autosearch'.
     */
    public void setAutosearch(java.lang.Boolean autosearch)
    {
        this._autosearch = autosearch;
    } //-- void setAutosearch(java.lang.Boolean) 

    /**
     * Sets the value of field 'buttons'. The field 'buttons' has
     * the following description: Set of buttons which shall be
     * added into form
     * 
     * @param buttons the value of field 'buttons'.
     */
    public void setButtons(com.queplix.core.modules.config.jxb.Buttons buttons)
    {
        this._buttons = buttons;
    } //-- void setButtons(com.queplix.core.modules.config.jxb.Buttons) 

    /**
     * Sets the value of field 'caption'.
     * 
     * @param caption the value of field 'caption'.
     */
    public void setCaption(java.lang.String caption)
    {
        this._caption = caption;
    } //-- void setCaption(java.lang.String) 

    /**
     * Sets the value of field 'captions'. The field 'captions' has
     * the following description: The sequence of form's captions
     * 
     * @param captions the value of field 'captions'.
     */
    public void setCaptions(com.queplix.core.modules.config.jxb.Captions captions)
    {
        this._captions = captions;
    } //-- void setCaptions(com.queplix.core.modules.config.jxb.Captions) 

    /**
     * Sets the value of field 'defaultactions'.
     * 
     * @param defaultactions the value of field 'defaultactions'.
     */
    public void setDefaultactions(java.lang.Boolean defaultactions)
    {
        this._defaultactions = defaultactions;
    } //-- void setDefaultactions(java.lang.Boolean) 

    /**
     * Sets the value of field 'description'.
     * 
     * @param description the value of field 'description'.
     */
    public void setDescription(java.lang.String description)
    {
        this._description = description;
    } //-- void setDescription(java.lang.String) 

    /**
     * Sets the value of field 'descriptions'. The field
     * 'descriptions' has the following description: The sequence
     * of form's descriptions
     * 
     * @param descriptions the value of field 'descriptions'.
     */
    public void setDescriptions(com.queplix.core.modules.config.jxb.Descriptions descriptions)
    {
        this._descriptions = descriptions;
    } //-- void setDescriptions(com.queplix.core.modules.config.jxb.Descriptions) 

    /**
     * Sets the value of field 'entity'. The field 'entity' has the
     * following description: Attribute refers to entity which
     * should be used for form
     * 
     * @param entity the value of field 'entity'.
     */
    public void setEntity(java.lang.String entity)
    {
        this._entity = entity;
    } //-- void setForm(java.lang.String)

    /**
     * Method setExternalField
     * 
     * 
     * 
     * @param index
     * @param vExternalField
     */
    public void setExternalField(int index, com.queplix.core.modules.config.jxb.ExternalField vExternalField)
        throws java.lang.IndexOutOfBoundsException
    {
        //-- check bounds for index
        if ((index < 0) || (index > _externalFieldList.size())) {
            throw new IndexOutOfBoundsException();
        }
        _externalFieldList.set(index, vExternalField);
    } //-- void setExternalField(int, com.queplix.core.modules.config.jxb.ExternalField) 

    /**
     * Method setExternalField
     * 
     * 
     * 
     * @param externalFieldArray
     */
    public void setExternalField(com.queplix.core.modules.config.jxb.ExternalField[] externalFieldArray)
    {
        //-- copy array
        _externalFieldList.clear();
        for (int i = 0; i < externalFieldArray.length; i++) {
            _externalFieldList.add(externalFieldArray[i]);
        }
    } //-- void setExternalField(com.queplix.core.modules.config.jxb.ExternalField) 

    /**
     * Method setExternalForm
     * 
     * 
     * 
     * @param index
     * @param vExternalForm
     */
    public void setExternalForm(int index, com.queplix.core.modules.config.jxb.ExternalForm vExternalForm)
        throws java.lang.IndexOutOfBoundsException
    {
        //-- check bounds for index
        if ((index < 0) || (index > _externalFormList.size())) {
            throw new IndexOutOfBoundsException();
        }
        _externalFormList.set(index, vExternalForm);
    } //-- void setExternalForm(int, com.queplix.core.modules.config.jxb.ExternalForm) 

    /**
     * Method setExternalForm
     * 
     * 
     * 
     * @param externalFormArray
     */
    public void setExternalForm(com.queplix.core.modules.config.jxb.ExternalForm[] externalFormArray)
    {
        //-- copy array
        _externalFormList.clear();
        for (int i = 0; i < externalFormArray.length; i++) {
            _externalFormList.add(externalFormArray[i]);
        }
    } //-- void setExternalForm(com.queplix.core.modules.config.jxb.ExternalForm) 

    /**
     * Method setExternalSet
     * 
     * 
     * 
     * @param index
     * @param vExternalSet
     */
    public void setExternalSet(int index, com.queplix.core.modules.config.jxb.ExternalSet vExternalSet)
        throws java.lang.IndexOutOfBoundsException
    {
        //-- check bounds for index
        if ((index < 0) || (index > _externalSetList.size())) {
            throw new IndexOutOfBoundsException();
        }
        _externalSetList.set(index, vExternalSet);
    } //-- void setExternalSet(int, com.queplix.core.modules.config.jxb.ExternalSet) 

    /**
     * Method setExternalSet
     * 
     * 
     * 
     * @param externalSetArray
     */
    public void setExternalSet(com.queplix.core.modules.config.jxb.ExternalSet[] externalSetArray)
    {
        //-- copy array
        _externalSetList.clear();
        for (int i = 0; i < externalSetArray.length; i++) {
            _externalSetList.add(externalSetArray[i]);
        }
    } //-- void setExternalSet(com.queplix.core.modules.config.jxb.ExternalSet) 

    /**
     * Sets the value of field 'grid'. The field 'grid' has the
     * following description: Describes possibility of
     * represntation in the grid
     * 
     * @param grid the value of field 'grid'.
     */
    public void setGrid(java.lang.Boolean grid)
    {
        this._grid = grid;
    } //-- void setGrid(java.lang.Boolean) 

    /**
     * Sets the value of field 'htmlelements'.
     * 
     * @param htmlelements the value of field 'htmlelements'.
     */
    public void setHtmlelements(com.queplix.core.modules.config.jxb.Htmlelements htmlelements)
    {
        this._htmlelements = htmlelements;
    } //-- void setHtmlelements(com.queplix.core.modules.config.jxb.Htmlelements) 

    /**
     * Method setInternalField
     * 
     * 
     * 
     * @param index
     * @param vInternalField
     */
    public void setInternalField(int index, com.queplix.core.modules.config.jxb.InternalField vInternalField)
        throws java.lang.IndexOutOfBoundsException
    {
        //-- check bounds for index
        if ((index < 0) || (index > _internalFieldList.size())) {
            throw new IndexOutOfBoundsException();
        }
        _internalFieldList.set(index, vInternalField);
    } //-- void setInternalField(int, com.queplix.core.modules.config.jxb.InternalField) 

    /**
     * Method setInternalField
     * 
     * 
     * 
     * @param internalFieldArray
     */
    public void setInternalField(com.queplix.core.modules.config.jxb.InternalField[] internalFieldArray)
    {
        //-- copy array
        _internalFieldList.clear();
        for (int i = 0; i < internalFieldArray.length; i++) {
            _internalFieldList.add(internalFieldArray[i]);
        }
    } //-- void setInternalField(com.queplix.core.modules.config.jxb.InternalField) 

    /**
     * Sets the value of field 'labelsOrientation'. The field
     * 'labelsOrientation' has the following description: Stores
     * info about labels position - they shall be placed
     *  either at the left or above associated controls.
     *  
     * 
     * @param labelsOrientation the value of field
     * 'labelsOrientation'.
     */
    public void setLabelsOrientation(com.queplix.core.modules.config.jxb.types.FormLabelsOrientationType labelsOrientation)
    {
        this._labelsOrientation = labelsOrientation;
    } //-- void setLabelsOrientation(com.queplix.core.modules.config.jxb.types.FormLabelsOrientationType) 

    /**
     * Sets the value of field 'layout'. The field 'layout' has the
     * following description: The layout for the form controls
     * 
     * @param layout the value of field 'layout'.
     */
    public void setLayout(com.queplix.core.modules.config.jxb.Layout layout)
    {
        this._layout = layout;
    } //-- void setLayout(com.queplix.core.modules.config.jxb.Layout) 

    /**
     * Method setLinkedDataset
     * 
     * 
     * 
     * @param index
     * @param vLinkedDataset
     */
    public void setLinkedDataset(int index, com.queplix.core.modules.config.jxb.LinkedDataset vLinkedDataset)
        throws java.lang.IndexOutOfBoundsException
    {
        //-- check bounds for index
        if ((index < 0) || (index > _linkedDatasetList.size())) {
            throw new IndexOutOfBoundsException();
        }
        _linkedDatasetList.set(index, vLinkedDataset);
    } //-- void setLinkedDataset(int, com.queplix.core.modules.config.jxb.LinkedDataset) 

    /**
     * Method setLinkedDataset
     * 
     * 
     * 
     * @param linkedDatasetArray
     */
    public void setLinkedDataset(com.queplix.core.modules.config.jxb.LinkedDataset[] linkedDatasetArray)
    {
        //-- copy array
        _linkedDatasetList.clear();
        for (int i = 0; i < linkedDatasetArray.length; i++) {
            _linkedDatasetList.add(linkedDatasetArray[i]);
        }
    } //-- void setLinkedDataset(com.queplix.core.modules.config.jxb.LinkedDataset) 

    /**
     * Sets the value of field 'links'. The field 'links' has the
     * following description: Contains all links in the form
     * 
     * @param links the value of field 'links'.
     */
    public void setLinks(com.queplix.core.modules.config.jxb.Links links)
    {
        this._links = links;
    } //-- void setLinks(com.queplix.core.modules.config.jxb.Links) 

    /**
     * Sets the value of field 'myqueweb'.
     * 
     * @param myqueweb the value of field 'myqueweb'.
     */
    public void setMyqueweb(java.lang.Boolean myqueweb)
    {
        this._myqueweb = myqueweb;
    } //-- void setMyqueweb(java.lang.Boolean) 

    /**
     * Sets the value of field 'name'. The field 'name' has the
     * following description: The name of form
     * 
     * @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 'order'.
     * 
     * @param order the value of field 'order'.
     */
    public void setOrder(java.lang.Integer order)
    {
        this._order = order;
    } //-- void setOrder(java.lang.Integer) 

    /**
     * Sets the value of field 'tab'.
     * 
     * @param tab the value of field 'tab'.
     */
    public void setTab(java.lang.String tab)
    {
        this._tab = tab;
    } //-- void setTab(java.lang.String) 

    /**
     * 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.config.jxb.Form) Unmarshaller.unmarshal(com.queplix.core.modules.config.jxb.Form.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 + -