imagescroller.java

来自「一个非常绚丽的j2em徒刑库」· Java 代码 · 共 93 行

JAVA
93
字号
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) 
// Source File Name:   ImageScroller.java

package com.tricastmedia.twuik.components;

import com.tricastmedia.twuik.tue.Component;
import javax.microedition.lcdui.Graphics;
import javax.microedition.lcdui.Image;

public class ImageScroller extends Component
{
    public static class ScrollBar extends Component
    {

        protected void animationRestarted(boolean flag)
        {
        }

        protected boolean animate()
        {
            return false;
        }

        protected void drawCurrentFrame(Graphics p0)
            throws IllegalArgumentException
        {
            IllegalArgumentException exc0 = null;
        }

        public final void setCurrentValue(int i)
        {
        }

        public final synchronized void setMaxValue(int i)
        {
        }

        public static final int SCROLLBARTYPE_HORIZONTAL = 0;
        public static final int SCROLLBARTYPE_VERTICAL = 1;

        public ScrollBar(int p0, int p1, int p2, int p3, int p4, int p5, int p6)
        {
            super(0, false, 0, 0, 0, 0);
        }
    }


    public ImageScroller(int p0, int p1, int p2, int p3, int p4, Image p5, int p6)
    {
        super(0, false, 0, 0, 0, 0);
    }

    protected void animationRestarted(boolean flag)
    {
    }

    protected boolean animate()
    {
        return false;
    }

    protected void drawCurrentFrame(Graphics p0)
        throws IllegalArgumentException
    {
        IllegalArgumentException exc0 = null;
    }

    public final synchronized void scrollPrev()
    {
    }

    public final synchronized void scrollNext()
    {
    }

    public final void associateScrollBar(ScrollBar scrollbar)
    {
    }

    public final void stopScrolling()
    {
    }

    public final void setImage(Image image)
    {
    }

    public static final int SCROLLERTYPE_HORIZONTAL = 0;
    public static final int SCROLLERTYPE_VERTICAL = 1;
}

⌨️ 快捷键说明

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