mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-03-15 06:19:44 +01:00
16 lines
347 B
Java
16 lines
347 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();
|
|
}
|