io.nanovc.areas.ImmutableArea Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nanovc-api Show documentation
Show all versions of nanovc-api Show documentation
The Core API for the Nano Version Control Library
package io.nanovc.areas;
import io.nanovc.AreaAPI;
import io.nanovc.ContentAPI;
/**
* An immutable area.
* This means that no {@link ContentAPI} can be added or removed from the area once it has been created.
* @param The specific type of content that is stored in this area.
*/
public interface ImmutableArea
extends AreaAPI
{
}