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; /*from w w w . ja v a 2 s. c o m*/ import android.util.PoolableManager; import com.google.inject.Singleton; @Singleton public class RecordPoolableManager implements PoolableManager<Record> { public RecordPoolableManager() { } public Record newInstance() { return new Record(); } public void onAcquired(final Record element) { } public void onReleased(final Record element) { element.clearUsage(); } }