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; /* w w w. jav a 2 s . c o m*/ /** * Warehouse object. * Created by yeang-shing.then on 10/5/13. */ public class Warehouse { private String code; public String getCode() { return this.code; } private String name; public String getName() { return this.name; } public Warehouse(String code, String name) { this.code = code; this.name = name; } }