Impl実装 WIP

This commit is contained in:
ろむねこ 2023-12-21 14:27:28 +09:00 committed by r-ca
parent 7eca8e9528
commit 413c42fdc1
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -1,4 +1,47 @@
package one.nem.lacerta.processor.impl;
public class DocumentProcessorImpl {
import android.graphics.Bitmap;
import one.nem.lacerta.processor.DocumentProcessor;
public class DocumentProcessorImpl implements DocumentProcessor{
@Override
public void addNewPageToLast(Bitmap bitmap) {
}
@Override
public void addNewPagesToLast(Bitmap[] bitmaps) {
}
@Override
public void addNewPageAfterIndex(Bitmap bitmap, int index) {
}
@Override
public void addNewPageBeforeIndex(Bitmap bitmap, int index) {
}
@Override
public void removePageAtIndex(int index) {
}
@Override
public void updatePageAtIndex(Bitmap bitmap, int index) {
}
@Override
public Bitmap getPageAtIndex(int index) {
return null;
}
@Override
public int getPageCount() {
return 0;
}
}