Back to project page chemistry-data.
The source code is released under:
MIT License
If you think the Android project chemistry-data 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.sparkfiregames.chemdata; // w w w. j a v a 2s .c om import org.sparkfiregames.chemdata.data.DataManager; import android.app.Application; public class ChemistryDataApplication extends Application { private DataManager data; public DataManager getData() { return data; } public void setData(DataManager data) { this.data = data; } }