streameventsi.java

来自「用于multivariate时间序列分类」· Java 代码 · 共 54 行

JAVA
54
字号
/**  * A store of all the events associated with a stream. For each channel,   * an EventVecI can be requested. Note!! Stream events are defined by   * an EventDescVecI, which contains all the information about the various   * types of events. At this stage, the channel-based representation has   * disappeared to be replaced by this event-based representation. This   * is useful for future expansion, since it is likely that at some  * point, we are going to want to switch to multi-channel events.   *  *   * @author Waleed Kadous  * @version $Id: StreamEventsI.java,v 1.1.1.1 2002/06/28 07:36:16 waleed Exp $  */package tclass;   public interface StreamEventsI {       /**     * Gets the comment associated with this object      *      * @return the comment of this label      */    public abstract String getComment();     /**     * Set the label of this stream.      *     * @param comment the comment associated with this stream     */    public abstract void setComment(String comment);         /**      *  Returns true if the real class of this stream is known.      *       *  @return <code>true</code> if the class of this stream is known.      *     */     public EventVecI getEvents(int index);     public String prettyPrint(EventDescVecI edvi);     /**     * Get the classification for this stream      */     /**     * Set the classification of this stream      */ }

⌨️ 快捷键说明

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