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

📄 propertyimpl.java

📁 编辑视频文件
💻 JAVA
字号:
/* * File:     PropertyImpl.java * Project:  MPI Linguistic Application * Date:     02 May 2007 * * Copyright (C) 2001-2007  Max Planck Institute for Psycholinguistics * * 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 mpi.eudico.server.corpora.clomimpl.abstr;import mpi.eudico.server.corpora.clom.Property;/** * Simple implementation of a property class. * This class stores a property that <strong>can</strong> have a name * and <strong>can</strong> have a value,. * * @author Han Sloetjes, MPI */public class PropertyImpl implements Property {    private String name;    private Object value;    /**     * @see mpi.eudico.server.corpora.clom.Property#getName()     */    public String getName() {        return name;    }    /**     * @see mpi.eudico.server.corpora.clom.Property#setName(java.lang.String)     */    public void setName(String name) {        this.name = name;    }    /**     * @see mpi.eudico.server.corpora.clom.Property#getValue()     */    public Object getValue() {        return value;    }    /**     * @see mpi.eudico.server.corpora.clom.Property#setValue(java.lang.Object)     */    public void setValue(Object value) {        this.value = value;    }    /**     * Returns the name and value separated by a colon if both are not null. If     * name is null value.toString is returned, if value is null the name is     * returned. If both are null an empty String is returned.     *     * @return a string representation of the property     */    public String toString() {        if (name == null) {            if (value == null) {                return "";            } else {                return value.toString();            }        } else if (value == null) {            return name;        }        return name + ": " + value.toString();    }}

⌨️ 快捷键说明

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