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 www .j a v a2 s .co m*/ /** * Created by yeang-shing.then on 9/26/13. */ public class Customer { private String code; public String getCode() { return this.code; } private String name; public String getName() { return this.name; } public Customer(String code, String name) { this.code = code; this.name = name; } }