summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/inventory/meta/tags/ItemTagAdapterContext.java
blob: 348fa65f7ea66930d7038ec382776241e9b05d49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.bukkit.inventory.meta.tags;

/**
 * This interface represents the context in which the {@link ItemTagType} can
 * serialize and deserialize the passed values.
 */
public interface ItemTagAdapterContext {

    /**
     * Creates a new and empty tag container instance.
     *
     * @return the fresh container instance
     */
    CustomItemTagContainer newTagContainer();
}