📄 tagimpl.java
字号:
/* * File: TagImpl.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.Tag;import mpi.eudico.server.corpora.clom.Tier;import mpi.eudico.server.corpora.util.ACMEditableObject;import java.io.Serializable;import java.util.Vector;/** * Tag is an implementation of the Tag interface. A Tag has begin and * end times, and a list of * associated text values as specified by the CodeGroup of the Tier * that contains the Tag. Since many Tags are used and regularly * accessed on the client, Tags are not implemented as server based * objects but they are Serializable instead. The accessibility of * Tags is determined by the accessibility of the (server based) Tier * that contains the Tags. * * @author Hennie Brugman * @author Albert Russel * @version 4-May-1999 */public abstract class TagImpl implements Tag, Serializable { /** * The Tag's begin time in milliseconds. */ protected long beginTime; /** * The Tag's end time in milliseconds. */ protected long endTime; /** * The list of text values as specified by a CodeGroup. */ protected Vector valueList; /** * The Tag's Tier. */ private Tier tier; /** * Index of Tag in Transcription. Administered by MetaTime. */ protected int index; /** * Creates a new TagImpl instance * * @param theBeginTime DOCUMENT ME! * @param theEndTime DOCUMENT ME! * @param theTier DOCUMENT ME! */ public TagImpl(long theBeginTime, long theEndTime, Tier theTier) { beginTime = theBeginTime; endTime = theEndTime; tier = theTier; valueList = new Vector(); } /** * DOCUMENT ME! * * @param operation DOCUMENT ME! * @param modification DOCUMENT ME! */ public void modified(int operation, Object modification) { handleModification(this, operation, modification); } /** * DOCUMENT ME! * * @param source DOCUMENT ME! * @param operation DOCUMENT ME! * @param modification DOCUMENT ME! */ public void handleModification(ACMEditableObject source, int operation, Object modification) { if (tier != null) { tier.handleModification(source, operation, modification); } } /** * DOCUMENT ME! * * @return DOCUMENT ME! */ public long getBeginTime() { return beginTime; } /** * DOCUMENT ME! * * @return DOCUMENT ME! */ public long getEndTime() { return endTime; } /** * Adds a value at the end of a Tag's value list. * * @param theValue text value to be added */ public void addValue(String theValue) { // sometimes tab and/or newline characters are part of the value's string. // in painted views (e.g. time line viewer) these characters appear as little // squares. For the moment we chose to replace tabs by the substring "\t" // and newlines by the substring "\n". int lastIndex = theValue.lastIndexOf('\n'); while (lastIndex > 0) { theValue = theValue.substring(0, lastIndex - 1) + "\n" + theValue.substring(lastIndex + 1); lastIndex = theValue.lastIndexOf('\n'); } lastIndex = theValue.lastIndexOf('\t'); while (lastIndex > 0) { theValue = theValue.substring(0, lastIndex) + "\\t" + theValue.substring(lastIndex + 1); lastIndex = theValue.lastIndexOf('\t'); } // alternative implentation, replacing these characters by spaces. // theValue = theValue.replace('\n', ' '); // theValue = theValue.replace('\t', ' '); valueList.add(theValue.trim()); } /** * Adds a value at the end of a Tag's value list. * * @param theValue text value to be added */ public void addValue(Object value) { valueList.add(value); } /** * Returns the Tag's text values in the order specified by * the CodeGroup of the Tag's containing Tier. * * @return the list of text values */ public Vector getValues() { return valueList; } /** * Returns the Tier of which this Tag is a component. * * @return the Tag's Tier */ public Tier getTier() { return tier; } /** * DOCUMENT ME! * * @return DOCUMENT ME! */ public int getIndex() { return index; } /** * DOCUMENT ME! * * @param theIndex DOCUMENT ME! */ public void setIndex(int theIndex) { index = theIndex; } /** * Returns true if the Tag is aligned with the time axis of Transcription's * MediaObject. An unaligned Tag has zero begin and end times. */ public boolean isTimeAligned() { if ((beginTime == 0) && (endTime == 0)) { return false; } else { return true; } } /** * Returns true if this Tag comes after theTag. Implementation specific Tag ordering * is handled here (used when adding to MetaTime). Comparable.compareTo orders Tags on index. */ public abstract boolean isAfter(Tag theTag); // Comparable interface method /** * Specifies sort relation between Tags: Tags are sorted * in order specified by the Transcription's MetaTime. */ /* public int compareTo(Object obj) { int ret = 1; MetaTime metaTime = ((Transcription)tier.getParent()).getMetaTime(); if (metaTime.startsBefore(((Tag) obj), this)) { ret = 1; } else { ret = -1; } return ret; } */ // here compareTo uses Tag.getIndex, which is not a remote // method invocation, in contrast with metaTime.startsBefore. // This works substantially faster. public int compareTo(Object obj) { int ret = 1; if (this.getIndex() > ((Tag) obj).getIndex()) { ret = 1; } else { ret = -1; } return ret; } /** * Default comparison for equality of Tags is done on basis of index values * as assigned by the Transcription's MetaTime. For specific implementations * of TagImpl this may be overridden. For example, in case of Tags initialized * from a relational database equality checking may be done on basis of * unique database key values. */ public boolean equals(Object o) { // if ((((Tag) o).getBeginTime() == beginTime) && // (((Tag) o).getEndTime() == endTime) && // (((Tag) o).getValues().equals(valueList))) { if ((!(o instanceof Tag)) || (((Tag) o).getIndex() != index)) { return false; } else { return true; } } /** * Default hashCode is overriden the same way as the equals method. * This is necessary for getting consistent results in a Hashtable. */ //AK 21.06.2002 public int hashCode() { return index; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -