Back to project page WarehouseBarcode.
The source code is released under:
MIT License
If you think the Android project WarehouseBarcode listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.hlgranite.warehousescanner; //from w ww . j a v a 2s . c o m import java.util.Date; /** * Created by yeang-shing.then on 9/24/13. */ public class Shipment { private Barcode barcode; public Barcode getBarcode() { return this.barcode; } private Date date; public Date getDate() { return this.date; } private int quantity; public int getQuantity() { return this.quantity; } public Shipment(Barcode barcode, int quantity) { //Log.i("INFO", "new Shipment: " + barcode.toString() + " with "+quantity+"pcs"); this.barcode = barcode; // todo: this.date = date; this.quantity = quantity; } }