难得糊涂125
难得糊涂125
  • 发布:2017-05-09 18:46
  • 更新:2017-05-09 18:46
  • 阅读:1328

native.js中如何导入抽象类并重写其抽象方法

分类:Native.js

import com.landicorp.android.eptapi.device.Printer;
import com.landicorp.android.eptapi.exception.RequestException;

public class Print {
/**

  • 实例化Printer的内部抽象类并重写其抽象方法,然后调用其start方法执行
  • */
    public static void printContent(){
    Printer.Progress progress = new Printer.Progress() {
    @Override
    public void doPrint(Printer printer) throws Exception {
    printer.println("--------------------------------");
    printer.feedLine(8);
    }
    @Override
    public void onCrash() {

        }  
        @Override  
        public void onFinish(int code) {  
    
        }  
    
    try {  
        progress.start();  
    } catch (RequestException e) {  
        // TODO 自动生成的 catch 块  
        e.printStackTrace();  
    }  

    }
    }

2017-05-09 18:46 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复