Back to project page bitmapfun.
The source code is released under:
Apache License
If you think the Android project bitmapfun 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.example.android.bitmapfun.util; // w w w.j a v a 2 s . c o m import java.util.HashMap; import java.util.Map; public class ImageSetFactory { private static Map<String, ImageSet> sImageSetMap=new HashMap<String, ImageSet>(); public static ImageSet getImageSet(String name){ return sImageSetMap.get(name); } public static void addImageSet(ImageSet set, String name){ sImageSetMap.put(name, set); } }