Back to project page allblue-all-in-one.
The source code is released under:
MIT License
If you think the Android project allblue-all-in-one 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 org.allblue.database; /*from w ww .j a v a 2 s. co m*/ import com.j256.ormlite.android.apptools.OrmLiteConfigUtil; import org.allblue.metadata.Account; import org.allblue.metadata.TweetItem; import java.io.IOException; import java.sql.SQLException; public class DatabaseConfig extends OrmLiteConfigUtil { private static Class [] classes = new Class [] { Account.class, TweetItem.class }; public static void main(String [] args) throws IOException, SQLException { writeConfigFile("ormlite_conf.txt", classes); } }