Back to project page android-webview-example.
The source code is released under:
Apache License
If you think the Android project android-webview-example 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.significantfiles.mrcounter.db.result; //from ww w . j av a2 s .com import com.significantfiles.android.sqlite.types.INTEGER; public class DefautInteger2IntConverter implements Converter<INTEGER, Integer> { @Override public Integer from(final INTEGER input) { // TODO Auto-generated method stub return null; } @Override public Integer getDefault() { return 0; } }