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 w w . jav a 2s . c o m import java.util.Date; /** * Represent shipment code and date. * Created by yeang-shing.then on 10/5/13. */ public class ShipCode { private String code; public String getCode() { return this.code; } private Date date; public Date getDate() { return this.date; } public ShipCode(String code, Date date) { this.code = code; this.date = date; } }