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

📄 item.java

📁 实现了SyncML无线同步协议
💻 JAVA
字号:
/** * Copyright (C) 2003-2004 Funambol * *  This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  */package sync4j.framework.core;/** * This class represents the &ltItem&gt tag ias defined by the SyncML * representation specifications * * @author Stefano Fornari @ Funambol * * @version $Id: Item.java,v 1.2 2004/06/03 13:00:56 luigiafassina Exp $ */public class Itemimplements java.io.Serializable {    // ------------------------------------------------------------ Private data    private Target target;    private Source source;    private Meta meta;    private ComplexData data;    private Boolean moreData;    // ------------------------------------------------------------ Constructors    protected Item() {}        /**     * Creates a new Item object.     *     * @param target item target - NULL ALLOWED     * @param source item source - NULL ALLOWED     * @param meta item meta data - NULL ALLOWED     * @param data item data - NULL ALLOWED     *     */    public Item(final Target target,                final Source source,                final Meta   meta  ,                final ComplexData data,                final boolean moreData) {        this.target = target;        this.source = source;        this.meta   = meta  ;        this.data   = data  ;        this.moreData  = (moreData) ? new Boolean(moreData) : null;    }    // ---------------------------------------------------------- Public methods        /**     * Returns the item target     *     * @return the item target     */    public Target getTarget() {        return target;    }        /**     * Sets the item target     *     * @param target the target     *     */    public void setTarget(Target target) {        this.target = target;    }        /**     * Returns the item source     *     * @return the item source     */    public Source getSource() {        return source;    }        /**     * Sets the item source     *     * @param source the source     *     */    public void setSource(Source source) {        this.source = source;    }        /**     * Returns the item meta element     *     * @return the item meta element     */    public Meta getMeta() {        return meta;    }        /**     * Sets the meta item     *     * @param meta the item meta element     *     */    public void setMeta(Meta meta) {        this.meta = meta;    }    /**     * Returns the item data     *     * @return the item data     *     */    public ComplexData getData() {        return data;    }        /**     * Sets the item data     *     * @param data the item data     *     */    public void setData(ComplexData data) {        this.data = data;    }        /**     * Gets moreData property     *     * @return true if the data item is incomplete and has further chunks      *         to come, false otherwise     */    public boolean isMoreData() {        return (moreData != null);    }    /**     * Gets the Boolean value of moreData     *     * @return true if the data item is incomplete and has further chunks      *         to come, false otherwise     */    public Boolean getMoreData() {        if (!moreData.booleanValue()) {            return null;        }        return moreData;    }    /**     * Sets the moreData property     *     * @param moreData the moreData property     */    public void setMoreData(Boolean moreData) {        this.moreData = moreData;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -