Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Pool.java « util « holoeverywhere « org « src « library « HoloEverywhere « 3rd_party « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c57138026d860879e46f56c06a7aca893ecc94d4 (plain)
1
2
3
4
5
6
7
8

package org.holoeverywhere.util;

public interface Pool<T extends Poolable<T>> {
    public abstract T acquire();

    public abstract void release(T element);
}