Back to project page HistoryCleanerPro.
The source code is released under:
Copyright (c) 2014, John Phillips All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: ...
If you think the Android project HistoryCleanerPro 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.ayros.historycleaner; /*from www . j a v a 2 s . com*/ import android.content.Context; import com.ayros.historycleaner.cleaning.CleanItem; public class Globals { // -> CleanActivity public static String saveProfileText = ""; // -> DataViewActivity public static CleanItem itemDataView = null; private static Context context = null; public static void setContext(Context c) { context = c; } public static Context getContext() { return context; } }