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

📄 preferencetype.java

📁 GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。GridSphere 是在欧盟提供基金的 GridLab 项目下开发的
💻 JAVA
字号:
/* * This class was automatically generated with * <a href="http://www.castor.org">Castor 0.9.5.2</a>, using an XML * Schema. * $Id: PreferenceType.java 4496 2006-02-08 20:27:04Z wehrens $ */package org.gridsphere.portletcontainer.impl.descriptor;//---------------------------------///- Imported classes and packages -///---------------------------------/import org.exolab.castor.xml.Marshaller;import org.exolab.castor.xml.Unmarshaller;import org.gridsphere.portletcontainer.impl.descriptor.types.ReadOnlyType;import java.util.ArrayList;/** * Persistent preference values that may be used for customization * and personalization by the portlet. * Used in: portlet-preferences * * @version $Revision: 3298 $ $Date: 2004-06-29 07:19:44 -0700 (Tue, 29 Jun 2004) $ */public class PreferenceType implements java.io.Serializable {    //--------------------------/    //- Class/Member Variables -/    //--------------------------/    /**     * Field _id     */    private java.lang.String _id;    /**     * Field _name     */    private org.gridsphere.portletcontainer.impl.descriptor.Name _name;    /**     * Field _valueList     */    private java.util.ArrayList _valueList;    /**     * Field _readOnly     */    private org.gridsphere.portletcontainer.impl.descriptor.types.ReadOnlyType _readOnly;    //----------------/    //- Constructors -/    //----------------/    public PreferenceType() {        super();        _readOnly = new ReadOnlyType();        _valueList = new ArrayList();    } //-- org.gridsphere.portletcontainer.jsr.descriptor.PreferenceType()    //-----------/    //- Methods -/    //-----------/    /**     * Method addValue     *     * @param vValue     */    public void addValue(org.gridsphere.portletcontainer.impl.descriptor.Value vValue)            throws java.lang.IndexOutOfBoundsException {        _valueList.add(vValue);    } //-- void addValue(org.gridsphere.portletcontainer.jsr.descriptor.Value)    /**     * Method addValue     *     * @param index     * @param vValue     */    public void addValue(int index, org.gridsphere.portletcontainer.impl.descriptor.Value vValue)            throws java.lang.IndexOutOfBoundsException {        _valueList.add(index, vValue);    } //-- void addValue(int, org.gridsphere.portletcontainer.jsr.descriptor.Value)    /**     * Method clearValue     */    public void clearValue() {        _valueList.clear();    } //-- void clearValue()    /**     * Method enumerateValue     */    public java.util.Enumeration enumerateValue() {        return new org.exolab.castor.util.IteratorEnumeration(_valueList.iterator());    } //-- java.util.Enumeration enumerateValue()    /**     * Returns the value of field 'id'.     *     * @return the value of field 'id'.     */    public java.lang.String getId() {        return this._id;    } //-- java.lang.String getId()    /**     * Returns the value of field 'name'.     *     * @return the value of field 'name'.     */    public org.gridsphere.portletcontainer.impl.descriptor.Name getName() {        return this._name;    } //-- org.gridsphere.portletcontainer.jsr.descriptor.Name getName()    /**     * Returns the value of field 'readOnly'.     *     * @return the value of field 'readOnly'.     */    public org.gridsphere.portletcontainer.impl.descriptor.types.ReadOnlyType getReadOnly() {        return this._readOnly;    } //-- org.gridsphere.portletcontainer.jsr.descriptor.types.ReadOnlyType getReadOnly()    /**     * Method getValue     *     * @param index     */    public org.gridsphere.portletcontainer.impl.descriptor.Value getValue(int index)            throws java.lang.IndexOutOfBoundsException {        //-- check bounds for index        if ((index < 0) || (index > _valueList.size())) {            throw new IndexOutOfBoundsException();        }        return (org.gridsphere.portletcontainer.impl.descriptor.Value) _valueList.get(index);    } //-- org.gridsphere.portletcontainer.jsr.descriptor.Value getValue(int)    /**     * Method getValue     */    public org.gridsphere.portletcontainer.impl.descriptor.Value[] getValue() {        int size = _valueList.size();        org.gridsphere.portletcontainer.impl.descriptor.Value[] mArray = new org.gridsphere.portletcontainer.impl.descriptor.Value[size];        for (int index = 0; index < size; index++) {            mArray[index] = (org.gridsphere.portletcontainer.impl.descriptor.Value) _valueList.get(index);        }        return mArray;    } //-- org.gridsphere.portletcontainer.jsr.descriptor.Value[] getValue()    /**     * Method getValueCount     */    public int getValueCount() {        return _valueList.size();    } //-- int getValueCount()    /**     * Method isValid     */    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 removeValue     *     * @param vValue     */    public boolean removeValue(org.gridsphere.portletcontainer.impl.descriptor.Value vValue) {        boolean removed = _valueList.remove(vValue);        return removed;    } //-- boolean removeValue(org.gridsphere.portletcontainer.jsr.descriptor.Value)    /**     * Sets the value of field 'id'.     *     * @param id the value of field 'id'.     */    public void setId(java.lang.String id) {        this._id = id;    } //-- void setId(java.lang.String)    /**     * Sets the value of field 'name'.     *     * @param name the value of field 'name'.     */    public void setName(org.gridsphere.portletcontainer.impl.descriptor.Name name) {        this._name = name;    } //-- void setName(org.gridsphere.portletcontainer.jsr.descriptor.Name)    /**     * Sets the value of field 'readOnly'.     *     * @param readOnly the value of field 'readOnly'.     */    public void setReadOnly(org.gridsphere.portletcontainer.impl.descriptor.types.ReadOnlyType readOnly) {        this._readOnly = readOnly;    } //-- void setReadOnly(org.gridsphere.portletcontainer.jsr.descriptor.types.ReadOnlyType)    /**     * Method setValue     *     * @param index     * @param vValue     */    public void setValue(int index, org.gridsphere.portletcontainer.impl.descriptor.Value vValue)            throws java.lang.IndexOutOfBoundsException {        //-- check bounds for index        if ((index < 0) || (index > _valueList.size())) {            throw new IndexOutOfBoundsException();        }        _valueList.set(index, vValue);    } //-- void setValue(int, org.gridsphere.portletcontainer.jsr.descriptor.Value)    /**     * Method setValue     *     * @param valueArray     */    public void setValue(org.gridsphere.portletcontainer.impl.descriptor.Value[] valueArray) {        //-- copy array        _valueList.clear();        for (int i = 0; i < valueArray.length; i++) {            _valueList.add(valueArray[i]);        }    } //-- void setValue(org.gridsphere.portletcontainer.jsr.descriptor.Value)    /**     * Method unmarshal     *     * @param reader     */    public static java.lang.Object unmarshal(java.io.Reader reader)            throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {        return (org.gridsphere.portletcontainer.impl.descriptor.PreferenceType) Unmarshaller.unmarshal(org.gridsphere.portletcontainer.impl.descriptor.PreferenceType.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 + -