Commit 5d0501be by Drew Hill

less interfacy.. more classy

parent 8277999b
...@@ -4,12 +4,30 @@ import android.graphics.Bitmap; ...@@ -4,12 +4,30 @@ import android.graphics.Bitmap;
public class ImageCue extends Cue { public class ImageCue extends Cue {
public ImageCue() { super(""); } final private long start_display_time;
final private int x;
public Bitmap getBitmap() { return null; } final private int y;
public int getX() { return 0; } final private int height;
public int getY() { return 0; } final private int width;
public int getWidth() { return 0; } final private Bitmap bitmap;
public int getHeight() { return 0; } final private boolean isForced;
public boolean isForcedSubtitle() { return false; }
public ImageCue(Bitmap bitmap, long start_display_time, int x, int y, int width, int height, boolean isForced) {
super("");
this.bitmap = bitmap;
this.start_display_time = start_display_time;
this.x = x;
this.y = y;
this.width = width;
this.height = height;
this.isForced = isForced;
}
public long getStartDisplayTime() { return start_display_time; }
public Bitmap getBitmap() { return bitmap; }
public int getX() { return x; }
public int getY() { return y; }
public int getWidth() { return width; }
public int getHeight() { return height; }
public boolean isForcedSubtitle() { return isForced; }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment