Back to project page UniversalLoader.
The source code is released under:
Apache License
If you think the Android project UniversalLoader 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.michaelflisar.universalloader.data.main; /*w w w .j a v a 2s. c om*/ public class ULFragmentKey extends ULKey { public ULFragmentKey(Class<?> c) { super(c); } public ULFragmentKey(String key) { super(key); } public ULFragmentKey(String key, String subKey) { super(key, subKey); } @Override public ULFragmentKey getSubKey(String subKey) { return new ULFragmentKey(key, (this.subKey != null ? this.subKey + "|": "") + subKey); } }