mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
Impl実装 WIP
This commit is contained in:
parent
7eca8e9528
commit
413c42fdc1
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user