1 25 package org.ofbiz.pos.device.impl; 26 27 import jpos.JposConst; 28 import jpos.JposException; 29 30 import org.ofbiz.pos.device.GenericDevice; 31 32 38 public class LineDisplay extends GenericDevice { 39 40 public static final String module = LineDisplay.class.getName(); 41 42 public LineDisplay(String deviceName, int timeout) { 43 super(deviceName, timeout); 44 this.control = new jpos.LineDisplay(); 45 } 46 47 protected void initialize() throws JposException { 48 throw new JposException(JposConst.JPOS_E_NOEXIST, "Device not yet implemented"); 49 } 50 } 51 | Popular Tags |