mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
Impl実装 WIP
This commit is contained in:
parent
8a851e4f11
commit
0f4ce1b9b1
|
@ -1,4 +1,47 @@
|
||||||
package one.nem.lacerta.processor.impl;
|
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