Back to project page Jello.
The source code is released under:
Apache License
If you think the Android project Jello 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.atteo.jello.schema; // w ww .j a va2 s . c o m public interface SchemaManager { public int addSchema(Schema schema); public void commit(); public void create(); public Schema getSchema(int version); public boolean load(); public void removeSchema(int version); }