Back to project page qrcode-android.
The source code is released under:
MIT License
If you think the Android project qrcode-android 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 tw.soleil.to; //ww w . ja v a 2 s .c om import java.util.List; public class Invoice { private List<InvoiceDtl> details; public List<InvoiceDtl> getDetails() { return details; } public void setDetails(List<InvoiceDtl> details) { this.details = details; } }