Gets the MaterialData for this stack of items @return MaterialData for this item
()
| 119 | * @return MaterialData for this item |
| 120 | */ |
| 121 | public MaterialData getData() { |
| 122 | if (Material.getMaterial(getTypeId()).getData() != null) { |
| 123 | data = Material.getMaterial(getTypeId()).getNewData((byte) this.durability); |
| 124 | } |
| 125 | |
| 126 | return data; |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Sets the MaterialData for this stack of items |
nothing calls this directly
no test coverage detected