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 . j av a2 s . c o m*/ import java.util.Date; /** * Created by yeang-shing.then on 9/24/13. */ public class WorkOrder { private long id; public long getId() { return this.id; } private Barcode barcode; public Barcode getBarcode() { return this.barcode; } private Date date; public Date getDate() { return this.date; } private String customer; public String getCustomer() { return this.customer; } private String reference; public String getReference() { return this.reference; } public WorkOrder(long id, Barcode barcode, Date date, String customer, String reference) { this.id = id; this.barcode = barcode; this.date = date; this.customer = customer; this.reference = reference; } public WorkOrder(long id, String barcode, Date date, String customer, String reference) { this.id = id; this.barcode = new Barcode(barcode); this.date = date; this.customer = customer; this.reference = reference; } }