mirror of
				https://github.com/lacerta-doc/Lacerta.git
				synced 2025-11-04 08:50:47 +00:00 
			
		
		
		
	WIP
This commit is contained in:
		
							parent
							
								
									59e32fe696
								
							
						
					
					
						commit
						a298247824
					
				@ -1,4 +1,20 @@
 | 
			
		||||
package one.nem.lacerta.processor;
 | 
			
		||||
 | 
			
		||||
import android.graphics.Bitmap;
 | 
			
		||||
 | 
			
		||||
public interface DocumentProcessor {
 | 
			
		||||
 | 
			
		||||
    // ページ操作
 | 
			
		||||
    void addNewPageToLast(Bitmap bitmap);
 | 
			
		||||
    void addNewPageAfterIndex(Bitmap bitmap, int index);
 | 
			
		||||
    void addNewPageBeforeIndex(Bitmap bitmap, int index);
 | 
			
		||||
    void removePageAtIndex(int index);
 | 
			
		||||
 | 
			
		||||
    // 更新
 | 
			
		||||
    void updatePageAtIndex(Bitmap bitmap, int index);
 | 
			
		||||
 | 
			
		||||
    // ページ取得
 | 
			
		||||
    Bitmap getPageAtIndex(int index);
 | 
			
		||||
    int getPageCount();
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user