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

📄 sampleposition.java

📁 编辑视频文件
💻 JAVA
字号:
/* * File:     SamplePosition.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;/** * A class that stores the position(s) in a complex sample from which the data * of a track are read and, if multiple, calculated. The description field can * also be used for a description of the kind of calculation that has been * performed.(?) * * @author Han Sloetjes */public class SamplePosition {    private int[] rows;    private int[] columns;    private String description;    /**     * Creates a new SamplePosition instance     * By default the row is 0 and the column is 0.     */    public SamplePosition() {        rows = new int[] { 0 };        columns = new int[] { 0 };    }    /**     * Creates a new SamplePosition instance     *     * @param description a description     */    public SamplePosition(String description) {        this();        this.description = description;    }    /**     * Creates a new SamplePosition instance     *     * @param rows the row index of indices, zero based     * @param columns the column index or indices, zero based     */    public SamplePosition(int[] rows, int[] columns) {        if ((rows == null) || (columns == null)) {            throw new NullPointerException();        }        if (rows.length != columns.length) {            throw new IllegalArgumentException(                "The rows and columns arrays should have the same length.");        }        this.rows = rows;        this.columns = columns;    }    /**     * Creates a new SamplePosition instance     *     * @param rows the row index of indices, zero based     * @param columns the column index or indices, zero based     * @param description a description     */    public SamplePosition(int[] rows, int[] columns, String description) {        this(rows, columns);        this.description = description;    }    /**     * Returns the row indices.     *     * @return the row indices     */    public int[] getRows() {        return rows;    }    /**     * Returns the column indices.     *     * @return the column indices     */    public int[] getColumns() {        return columns;    }    /**     * Returns the description.     *     * @return the description     */    public String getDescription() {        return description;    }    /**     * Sets the description.     *     * @param string the description     */    public void setDescription(String string) {        description = string;    }}

⌨️ 快捷键说明

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