blob: 244d5d6107b6ed217d951f8c6fdac13840d0a5a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package com.artifex.mupdf;
import android.graphics.Bitmap;
public class BitmapHolder {
private Bitmap bm;
public BitmapHolder() {
bm = null;
}
public synchronized void setBm(Bitmap abm) {
bm = abm;
}
public synchronized Bitmap getBm() {
return bm;
}
}
|