Examples of IItemTyped


Examples of forestry.core.IItemTyped

  @Override
  @SuppressWarnings("rawtypes")
  public String getUnlocalizedName(ItemStack itemstack) {
    Block block = getBlock();
    if (block instanceof IItemTyped) {
      IItemTyped blockTyped = (IItemTyped)block;
      Enum type = blockTyped.getTypeFromMeta(itemstack.getItemDamage());
      if (type != null)
        return getBlock().getUnlocalizedName() + "." + type.ordinal();
      else
        return null;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.