/******************************************************************************* * Copyright 2011-2014 SirSengir * * This work (the API) is licensed under the "MIT" License, see LICENSE.txt for details. ******************************************************************************/ package forestry.api.mail; import net.minecraft.inventory.IInventory; public interface ITradeStation extends ILetterHandler, IInventory { IMailAddress getAddress(); boolean isValid(); void invalidate(); void setVirtual(boolean isVirtual); boolean isVirtual(); TradeStationInfo getTradeInfo(); }