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

📄 tstrackconfiguration.java

📁 编辑视频文件
💻 JAVA
字号:
/* * File:     TSTrackConfiguration.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.client.annotator.timeseries.config;import mpi.eudico.client.annotator.timeseries.TimeSeriesConstants;/** * A configuration object that serves as a wrapper for one TimeSeriesTrack object * and that adds some fields/properties necessary for storage and retrieval of * settings (and that don't belong in a track object). * Above that any property can be added and any object that might be neede or useful. * The track object is stored in the object map with the track name as key. * * @author Han Sloetjes */public class TSTrackConfiguration extends TSConfigurationImpl {    private String trackName;    /**     * Creates a new TSTrackConfiguration instance     *     * @param name the name of the track     */    public TSTrackConfiguration(String name) {        trackName = name;    }    /**     * Creates a new TSTrackConfiguration instance     *     * @param name the name of the track     * @param track the track object; it is added to the object map     */    public TSTrackConfiguration(String name, Object track) {        this(name);        putObject(name, track);    }    /**     * Get the sample position(s) the data of this track is based upon.     *     * @return the sample position(s) or null     */    public SamplePosition getSamplePos() {        return (SamplePosition) getObject(TimeSeriesConstants.SAMPLE_POS);    }    /**     * Returns the name of the track     *     * @return the name of the track     */    public String getTrackName() {        return trackName;    }    /**     * Sets the sample position(s) this track is based upon.     *     * @param position the sample position(s)     */    public void setSamplePos(SamplePosition position) {        if (position != null) {            putObject(TimeSeriesConstants.SAMPLE_POS, position);        }    }    /**     * Sets the name of the track. If a track object already had been     * registered  with an old name, it will be removed from the map and     * registered again with the new name.     *     * @param string the name of the track     */    public void setTrackName(String string) {        Object track = getObject(trackName);        trackName = string;        if (track != null) {            putObject(trackName, track);        }    }}

⌨️ 快捷键说明

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