Transaction interface
Пакет: com.hypixel.hytale.server.core.inventory.transaction
Файл: com/hypixel/hytale/server/core/inventory/transaction/Transaction.java
Методы (2)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
boolean |
succeededboolean succeeded() |
abstract |
boolean |
wasSlotModifiedboolean wasSlotModified(short var1) |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.inventory.transaction;
class="kw">import com.hypixel.hytale.server.core.inventory.container.ItemContainer;
class="kw">import javax.annotation.Nonnull;
class="kw">import javax.annotation.Nullable;
class="kw">public class="kw">interface Transaction {
boolean succeeded();
boolean wasSlotModified(short var1);
@Nonnull
Transaction toParent(ItemContainer var1, short var2, ItemContainer var3);
@Nullable
Transaction fromParent(ItemContainer var1, short var2, ItemContainer var3);
}