Back to project page ExpertAndroid.
The source code is released under:
MIT License
If you think the Android project ExpertAndroid 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 converters; // w w w . j a v a2s. c o m import com.androidbook.parse.Field; public interface IFieldTransport { public static int DIRECTION_FORWARD = 1; public static int DIRECTION_BACKWARD= 2; //Transfer from one mode to another public void transfer(ValueField f); }