summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/Keyed.java
blob: f1a7913b9b52d161f50294fe11d4dd7b50dc4bd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.bukkit;

/**
 * Represents an object which has a {@link NamespacedKey} attached to it.
 */
public interface Keyed {

    /**
     * Return the namespaced identifier for this object.
     *
     * @return this object's key
     */
    NamespacedKey getKey();
}