Back to project page barcodescanner.
The source code is released under:
Apache License
If you think the Android project barcodescanner 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 me.dm7.barcodescanner.zbar; // w w w. j ava2 s . c o m public class Result { private String mContents; private BarcodeFormat mBarcodeFormat; public void setContents(String contents) { mContents = contents; } public void setBarcodeFormat(BarcodeFormat format) { mBarcodeFormat = format; } public BarcodeFormat getBarcodeFormat() { return mBarcodeFormat; } public String getContents() { return mContents; } }