Add @Nullable to NbtValued methods.

This commit is contained in:
sk89q 2014-07-13 18:15:16 -07:00
parent b751cbe1ee
commit 759c6ba50d

View File

@ -20,7 +20,8 @@
package com.sk89q.worldedit.world;
import com.sk89q.jnbt.CompoundTag;
import com.sk89q.worldedit.world.DataException;
import javax.annotation.Nullable;
/**
* Indicates an object that contains extra data identified as an NBT structure. This
@ -47,6 +48,7 @@ public interface NbtValued {
*
* @return compound tag, or null
*/
@Nullable
CompoundTag getNbtData();
/**
@ -55,6 +57,6 @@ public interface NbtValued {
* @param nbtData NBT data, or null if no data
* @throws DataException if possibly the data is invalid
*/
void setNbtData(CompoundTag nbtData) throws DataException;
void setNbtData(@Nullable CompoundTag nbtData) throws DataException;
}