imediaposition.java

来自「编辑视频文件」· Java 代码 · 共 151 行

JAVA
151
字号
/* * File:     IMediaPosition.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.nativemedia.quartztypelib;import com.jniwrapper.*;import com.jniwrapper.win32.*;import com.jniwrapper.win32.automation.*;import com.jniwrapper.win32.automation.impl.*;import com.jniwrapper.win32.automation.types.*;import com.jniwrapper.win32.com.*;import com.jniwrapper.win32.com.impl.*;import com.jniwrapper.win32.com.types.*;import mpi.eudico.client.annotator.nativemedia.quartztypelib.impl.*;/** * Represents Java interface for COM interface IMediaPosition */public interface IMediaPosition extends IDispatch {    /** Holds value of property DOCUMENT ME! */    public static final String INTERFACE_IDENTIFIER = "{56A868B2-0AD4-11CE-B03A-0020AF0BA770}";    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    DoubleFloat getDuration() throws ComException;    /**     * DOCUMENT ME!     *     * @param pllTime DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    void setCurrentPosition(DoubleFloat /*[in]*/ pllTime)        throws ComException;    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    DoubleFloat getCurrentPosition() throws ComException;    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    DoubleFloat getStopTime() throws ComException;    /**     * DOCUMENT ME!     *     * @param pllTime DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    void setStopTime(DoubleFloat /*[in]*/ pllTime) throws ComException;    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    DoubleFloat getPrerollTime() throws ComException;    /**     * DOCUMENT ME!     *     * @param pllTime DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    void setPrerollTime(DoubleFloat /*[in]*/ pllTime) throws ComException;    /**     * DOCUMENT ME!     *     * @param pdRate DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    void setRate(DoubleFloat /*[in]*/ pdRate) throws ComException;    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    DoubleFloat getRate() throws ComException;    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    Int32 canSeekForward() throws ComException;    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    Int32 canSeekBackward() throws ComException;}

⌨️ 快捷键说明

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