summaryrefslogtreecommitdiff
path: root/platform/java/src/com/artifex/mupdf/fitz/DisplayListDevice.java
blob: c7f7c9359cd1056a6f5303852c3ac365bcab97bf (plain)
1
2
3
4
5
6
7
8
9
10
package com.artifex.mupdf.fitz;

public final class DisplayListDevice extends NativeDevice
{
	private static native long newNative(DisplayList list);

	public DisplayListDevice(DisplayList list) {
		super(newNative(list));
	}
}