亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? swfactionsimpl.java

?? java版本的flash文件(swf)播放器
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/****************************************************************
 * Copyright (c) 2001, David N. Main, All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or
 * without modification, are permitted provided that the 
 * following conditions are met:
 *
 * 1. Redistributions of source code must retain the above 
 * copyright notice, this list of conditions and the following 
 * disclaimer. 
 * 
 * 2. Redistributions in binary form must reproduce the above 
 * copyright notice, this list of conditions and the following 
 * disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * 3. The name of the author may not be used to endorse or 
 * promote products derived from this software without specific 
 * prior written permission. 
 * 
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 
 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 
 * AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 ****************************************************************/
package com.anotherbigidea.flash.writers;

import java.io.IOException;

import com.anotherbigidea.flash.interfaces.SWFActions;

/**
 * A pass-through implementation of the SWFActions interface
 */
public class SWFActionsImpl implements SWFActions
{
    protected SWFActions acts;

    /**
     * @param acts may be null
     */
    public SWFActionsImpl( SWFActions acts )
    {
        this.acts = acts;
    }

    public SWFActionsImpl()
    {
        this( null );
    }
    
    /**
     * Set the pass-through target
     * @param acts may be null
     */
    public void setSWFActions( SWFActions acts )
    {
        this.acts = acts;
    }
    
    public void start( int conditions ) throws IOException
    {
        if( acts != null ) acts.start( conditions );
    }
    
    public void end() throws IOException
    {
        if( acts != null ) acts.end();
    }
 
    public void done() throws IOException
    {
        if( acts != null ) acts.done();
    }
        
    public void blob( byte[] blob ) throws IOException
    {
        if( acts != null ) acts.blob( blob );
    }    
    
    public void unknown( int code, byte[] data ) throws IOException
    {
        if( acts != null ) acts.unknown( code, data );
    }
    
    public void initArray() throws IOException 
    {
        if( acts != null ) acts.initArray();
    }    
        
    public void jumpLabel( String label ) throws IOException
    {
        if( acts != null ) acts.jumpLabel( label );
    }    
  
    public void gotoFrame( int frameNumber ) throws IOException
    {
        if( acts != null ) acts.gotoFrame( frameNumber );
    }
    
    public void gotoFrame( String label ) throws IOException
    {
        if( acts != null ) acts.gotoFrame( label );
    }
    
    public void getURL( String url, String target ) throws IOException
    {
        if( acts != null ) acts.getURL( url, target );
    }
    
    public void nextFrame() throws IOException
    {
        if( acts != null ) acts.nextFrame();
    }
    
    public void prevFrame() throws IOException
    {
        if( acts != null ) acts.prevFrame();
    }
    
    public void play() throws IOException
    {
        if( acts != null ) acts.play();
    }
    
    public void stop() throws IOException
    {
        if( acts != null ) acts.stop();
    }
    
    public void toggleQuality() throws IOException
    {
        if( acts != null ) acts.toggleQuality();
    }
    
    public void stopSounds() throws IOException
    {
        if( acts != null ) acts.stopSounds();
    }
    
    public void setTarget( String target ) throws IOException
    {
        if( acts != null ) acts.setTarget( target );
    }
    
    public void jump( String jumpLabel ) throws IOException
    {
        if( acts != null ) acts.jump( jumpLabel );
    }
    
    public void ifJump( String jumpLabel ) throws IOException
    {
        if( acts != null ) acts.ifJump( jumpLabel );
    }
    
    public void waitForFrame( int frameNumber, String jumpLabel ) throws IOException
    {
        if( acts != null ) acts.waitForFrame( frameNumber, jumpLabel );
    }
    
    public void waitForFrame( String jumpLabel ) throws IOException
    {
        if( acts != null ) acts.waitForFrame( jumpLabel );
    }
    
    public void pop() throws IOException
    {
        if( acts != null ) acts.pop();
    }
    
    public void push( String value ) throws IOException
    {
        if( acts != null ) acts.push( value );
    }
    
    public void push( float  value ) throws IOException
    {
        if( acts != null ) acts.push( value );
    }
    
    public void push( double value ) throws IOException
    {
        if( acts != null ) acts.push( value );
    }
    
    public void pushNull() throws IOException
    {
        if( acts != null ) acts.pushNull();
    }
    
    public void pushRegister( int registerNumber ) throws IOException
    {
        if( acts != null ) acts.pushRegister( registerNumber );
    }
    
    public void push( boolean value ) throws IOException
    {
        if( acts != null ) acts.push( value );
    }
    
    public void push( int value ) throws IOException
    {
        if( acts != null ) acts.push( value );
    }
    
    public void lookup( int dictionaryIndex ) throws IOException
    {
        if( acts != null ) acts.lookup( dictionaryIndex );
    }
    
    public void add() throws IOException
    {
        if( acts != null ) acts.add();
    }
    
    public void substract() throws IOException
    {
        if( acts != null ) acts.substract();
    }
    
    public void multiply() throws IOException
    {
        if( acts != null ) acts.multiply();
    }
    
    public void divide() throws IOException
    {
        if( acts != null ) acts.divide();
    }
    
    public void equals() throws IOException
    {
        if( acts != null ) acts.equals();
    }
    
    public void lessThan() throws IOException
    {
        if( acts != null ) acts.lessThan();
    }
    
    public void and() throws IOException
    {
        if( acts != null ) acts.and();
    }
    
    public void or() throws IOException
    {
        if( acts != null ) acts.or();
    }
    
    public void not() throws IOException
    {
        if( acts != null ) acts.not();
    }
    
    public void stringEquals() throws IOException
    {
        if( acts != null ) acts.stringEquals();
    }
    
    public void stringLength() throws IOException
    {
        if( acts != null ) acts.stringLength();
    }
    
    public void concat() throws IOException
    {
        if( acts != null ) acts.concat();
    }
    
    public void substring() throws IOException
    {
        if( acts != null ) acts.substring();
    }
    
    public void stringLessThan() throws IOException
    {
        if( acts != null ) acts.stringLessThan();
    }
    
    public void stringLengthMB() throws IOException
    {
        if( acts != null ) acts.stringLengthMB();
    }
    
    public void substringMB() throws IOException
    {
        if( acts != null ) acts.substringMB();
    }
        
    public void toInteger() throws IOException
    {
        if( acts != null ) acts.toInteger();
    }
        

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
a级高清视频欧美日韩| 亚洲欧美日韩国产综合在线| 亚洲h动漫在线| 欧美日韩一区中文字幕| 亚洲国产中文字幕| 欧美二区乱c少妇| 免费观看久久久4p| 26uuu另类欧美| 成人动漫精品一区二区| 亚洲色图清纯唯美| 欧美日韩久久久久久| 日韩不卡免费视频| 精品国产髙清在线看国产毛片| 精品一区二区三区免费播放| 久久精品人人做| 97久久人人超碰| 亚洲一区国产视频| 欧美一区二区三区在线电影| 国产一区久久久| 中文字幕一区在线| 欧美日韩一区在线| 国产高清精品在线| 亚洲精选免费视频| 日韩欧美一区在线观看| 国产高清精品网站| 亚洲国产综合91精品麻豆| 欧美精品一区二区三| 91在线丨porny丨国产| 秋霞电影网一区二区| 中文在线免费一区三区高中清不卡| 日本久久一区二区三区| 国产在线视频不卡二| 亚洲靠逼com| 久久精品欧美日韩精品| 欧美无乱码久久久免费午夜一区| 国产一区二区美女诱惑| 亚洲国产视频一区二区| 亚洲国产成人在线| 91精品国产一区二区三区| bt欧美亚洲午夜电影天堂| 日日噜噜夜夜狠狠视频欧美人| 欧美国产日韩精品免费观看| 欧美精品日韩综合在线| 成人ar影院免费观看视频| 欧美aⅴ一区二区三区视频| 亚洲色大成网站www久久九九| 日韩视频在线你懂得| 一本色道综合亚洲| 国产精品66部| 男女视频一区二区| 亚洲二区在线视频| 国产精品国产三级国产三级人妇| 亚洲天堂福利av| 久久综合一区二区| 欧美精品久久99久久在免费线| 成人av集中营| 国产一区不卡视频| 日韩成人一区二区三区在线观看| 亚洲欧美综合网| 国产日韩欧美高清| 精品国产乱码久久久久久免费| 欧美一a一片一级一片| 99热99精品| 国产·精品毛片| 国产福利一区在线观看| 毛片av中文字幕一区二区| 丝袜美腿成人在线| 亚洲成人精品影院| 亚洲网友自拍偷拍| 亚洲成人黄色小说| 亚洲在线观看免费视频| 亚洲另类在线一区| 亚洲美女屁股眼交| 亚洲男女一区二区三区| 中文字幕va一区二区三区| 国产日韩视频一区二区三区| 久久久亚洲精品一区二区三区 | 成人高清免费观看| 国产乱码精品一区二区三区av| 精品伊人久久久久7777人| 美女性感视频久久| 久久激五月天综合精品| 捆绑变态av一区二区三区| 日韩和的一区二区| 免费视频一区二区| 久久精品二区亚洲w码| 蜜臀av性久久久久蜜臀aⅴ流畅 | 国产色产综合色产在线视频| 久久久久久久久久久黄色| 91精品国产乱码| 日韩一区二区在线观看视频| 欧美三级日韩三级国产三级| 欧美精品九九99久久| 欧美成人video| 国产香蕉久久精品综合网| 国产精品青草综合久久久久99| 亚洲国产高清aⅴ视频| 亚洲天堂免费看| 亚洲成人综合视频| 激情国产一区二区| 岛国一区二区三区| 色婷婷综合久久久中文字幕| 欧美在线一区二区三区| 在线播放中文字幕一区| 久久久精品免费观看| 国产精品第一页第二页第三页| 亚洲乱码国产乱码精品精的特点 | 欧美人与性动xxxx| 精品国产免费人成在线观看| 国产精品免费观看视频| 亚洲成av人在线观看| 老司机免费视频一区二区三区| 国产成人一级电影| 在线观看欧美精品| 日韩欧美一级精品久久| 中文字幕一区在线| 日本免费新一区视频| 国产xxx精品视频大全| 欧美性猛交xxxx黑人交| 久久久蜜桃精品| 一区二区三区丝袜| 韩国一区二区三区| 欧美视频完全免费看| 欧美国产精品久久| 日日夜夜精品视频天天综合网| 成人av网站在线观看免费| 欧美日韩精品欧美日韩精品一| 久久久国产精品麻豆| 亚洲最新在线观看| 国产精品亚洲а∨天堂免在线| 在线观看免费亚洲| 国产欧美日韩精品在线| 视频一区二区中文字幕| 成人黄动漫网站免费app| 欧美一级免费大片| 亚洲精品一二三| 国产成人av影院| 91精品国产综合久久久久久久久久| 国产精品视频一二| 精品一区二区免费| 欧美丰满少妇xxxxx高潮对白| 亚洲欧洲日韩一区二区三区| 激情偷乱视频一区二区三区| 欧美另类高清zo欧美| 亚洲综合一二区| 色综合中文字幕国产| 精品动漫一区二区三区在线观看| 亚洲成人自拍偷拍| 欧美自拍偷拍一区| 最新日韩在线视频| 国产黑丝在线一区二区三区| 精品国产一区二区三区久久久蜜月 | 视频一区欧美日韩| 色婷婷综合久久久中文字幕| 中文字幕在线免费不卡| 国产精品中文字幕一区二区三区| 日韩亚洲欧美综合| 视频一区在线播放| 欧美高清视频一二三区| 亚洲成人综合视频| 欧美男人的天堂一二区| 夜夜嗨av一区二区三区网页 | 在线精品视频小说1| 综合网在线视频| av电影一区二区| 国产精品不卡在线观看| 国产精品一二三四| 国产亚洲欧美日韩俺去了| 国内精品自线一区二区三区视频| 日韩情涩欧美日韩视频| 看电视剧不卡顿的网站| 精品三级av在线| 国产综合久久久久久久久久久久| 欧美xxxx老人做受| 国产伦理精品不卡| 国产精品黄色在线观看| 91原创在线视频| 一区二区三区在线免费| 欧美中文字幕不卡| 日韩精品免费专区| 久久色.com| a4yy欧美一区二区三区| 亚洲天堂成人网| 欧美日韩一级大片网址| 蜜桃视频免费观看一区| 精品久久久久香蕉网| 粉嫩av亚洲一区二区图片| 亚洲欧美在线另类| 欧美日产在线观看| 国产综合久久久久久鬼色| 国产精品家庭影院| 欧美日韩色一区| 国产主播一区二区| 亚洲图片你懂的| 欧美一区二区视频网站| 国产成人在线观看| 亚洲午夜精品网| 精品国产自在久精品国产| 成人永久免费视频| 五月天网站亚洲|