mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2026-02-18 01:42:32 +01:00
18 lines
357 B
Java
18 lines
357 B
Java
package com.gmail.nossr50.config;
|
|
|
|
import java.util.Collection;
|
|
|
|
/**
|
|
* Represents a class that contains a generic collection
|
|
*
|
|
* @param <T>
|
|
*/
|
|
public interface GenericCollectionContainer<T> {
|
|
/**
|
|
* Grab the collection held by this class
|
|
*
|
|
* @return the collection held by this class
|
|
*/
|
|
Collection<T> getLoadedCollection();
|
|
}
|