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

📄 selection.java

📁 编辑视频文件
💻 JAVA
字号:
/* * File:     Selection.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;import mpi.eudico.server.corpora.clom.Annotation;import java.util.Vector;/** * Administrates the current selection. */public class Selection {    private Vector listeners;    private long selectionBeginTime;    private long selectionEndTime;    private long previousSelectionBeginTime;    private long previousSelectionEndTime;    /**     * Creates an empty Selection (begin time == end time).     */    public Selection() {        listeners = new Vector();        selectionBeginTime = 0;        selectionEndTime = 0;        previousSelectionBeginTime = 0;        previousSelectionEndTime = 0;    }    /**     * AR Should be called set? it is obvious we are talking about a selection,     * refactor with eclipse Sets the beginTime and the endTime of the     * selection in milli seconds.     *     * @param beginTime the beginTime of the selection in milli seconds.     * @param endTime the endTime of the selection in milli seconds.     */    public void setSelection(long beginTime, long endTime) {        // Only update if needed. Null selection only allowed        // with beginTime = endTime = 0;        //		if (beginTime != 0 && beginTime == endTime) {        //			return;        //		}        // check if it realy is a new selection        if ((selectionBeginTime != beginTime) | (selectionEndTime != endTime)) {            previousSelectionBeginTime = selectionBeginTime;            previousSelectionEndTime = selectionEndTime;            selectionBeginTime = beginTime;            selectionEndTime = endTime;            // Tell all the interested Selectionlisteners about the change            notifyListeners();        }    }    /**     * Set the selection to the begin and end time boundaries of the     * annotation. If the annotation == null the selection is not changed     *     * @param annotation     */    public void setSelection(Annotation annotation) {        if (annotation != null) {            setSelection(annotation.getBeginTimeBoundary(),                annotation.getEndTimeBoundary());        }    }    /**     * Utility method to clear the selection     */    public void clear() {        setSelection(0, 0);    }    /**     * Tell all the listeners what the current Selection is.     */    public void notifyListeners() {        for (int i = 0; i < listeners.size(); i++) {            ((SelectionListener) listeners.elementAt(i)).updateSelection();        }    }    /**     * Returns the begin time of the selection in milli seconds.     *     * @return DOCUMENT ME!     */    public long getBeginTime() {        return selectionBeginTime;    }    /**     * Returns the end time of the selection in milli seconds.     *     * @return DOCUMENT ME!     */    public long getEndTime() {        return selectionEndTime;    }    /**     * Returns the previous begin time of the selection in milli seconds.     *     * @return DOCUMENT ME!     */    public long getPreviousBeginTime() {        return previousSelectionBeginTime;    }    /**     * Returns the previous end time of the selection in milli seconds.     *     * @return DOCUMENT ME!     */    public long getPreviousEndTime() {        return previousSelectionEndTime;    }    /**     * Add a listener for Selection events.     *     * @param listener the listener that wants to be notified for Selection     *        events.     */    public void addSelectionListener(SelectionListener listener) {        listeners.add(listener);        listener.updateSelection();    }    /**     * Remove a listener for Selection events.     *     * @param listener the listener that no longer wants to be notified for     *        Selection events.     */    public void removeSelectionListener(SelectionListener listener) {        listeners.remove(listener);    }}

⌨️ 快捷键说明

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