Updated docs
This commit is contained in:
@@ -1,52 +0,0 @@
|
||||
window.addEventListener('load', () => {
|
||||
document.querySelectorAll('span.copy-icon').forEach(element => {
|
||||
element.addEventListener('click', (el) => copyElementsContentToClipboard(element));
|
||||
})
|
||||
|
||||
document.querySelectorAll('span.anchor-icon').forEach(element => {
|
||||
element.addEventListener('click', (el) => {
|
||||
if(element.hasAttribute('pointing-to')){
|
||||
const location = hrefWithoutCurrentlyUsedAnchor() + '#' + element.getAttribute('pointing-to')
|
||||
copyTextToClipboard(element, location)
|
||||
}
|
||||
});
|
||||
})
|
||||
})
|
||||
|
||||
const copyElementsContentToClipboard = (element) => {
|
||||
const selection = window.getSelection();
|
||||
const range = document.createRange();
|
||||
range.selectNodeContents(element.parentNode.parentNode);
|
||||
selection.removeAllRanges();
|
||||
selection.addRange(range);
|
||||
|
||||
copyAndShowPopup(element, () => selection.removeAllRanges())
|
||||
}
|
||||
|
||||
const copyTextToClipboard = (element, text) => {
|
||||
var textarea = document.createElement("textarea");
|
||||
textarea.textContent = text;
|
||||
textarea.style.position = "fixed";
|
||||
document.body.appendChild(textarea);
|
||||
textarea.select();
|
||||
|
||||
copyAndShowPopup(element, () => document.body.removeChild(textarea))
|
||||
}
|
||||
|
||||
const copyAndShowPopup = (element, after) => {
|
||||
try {
|
||||
document.execCommand('copy');
|
||||
element.nextElementSibling.classList.add('active-popup');
|
||||
setTimeout(() => {
|
||||
element.nextElementSibling.classList.remove('active-popup');
|
||||
}, 1200);
|
||||
} catch (e) {
|
||||
console.error('Failed to write to clipboard:', e)
|
||||
}
|
||||
finally {
|
||||
if(after) after()
|
||||
}
|
||||
}
|
||||
|
||||
const hrefWithoutCurrentlyUsedAnchor = () => window.location.href.split('#')[0]
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,54 +0,0 @@
|
||||
window.addEventListener('load', () => {
|
||||
fetch(pathToRoot + "navigation.html")
|
||||
.then(response => response.text())
|
||||
.then(data => {
|
||||
document.getElementById("sideMenu").innerHTML = data;
|
||||
}).then(() => {
|
||||
document.querySelectorAll(".overview > a").forEach(link => {
|
||||
link.setAttribute("href", pathToRoot + link.getAttribute("href"));
|
||||
})
|
||||
}).then(() => {
|
||||
document.querySelectorAll(".sideMenuPart").forEach(nav => {
|
||||
if (!nav.classList.contains("hidden")) nav.classList.add("hidden")
|
||||
})
|
||||
}).then(() => {
|
||||
revealNavigationForCurrentPage()
|
||||
})
|
||||
|
||||
/* Smooth scrolling support for going to the top of the page */
|
||||
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||
anchor.addEventListener('click', function (e) {
|
||||
e.preventDefault();
|
||||
|
||||
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
||||
behavior: 'smooth'
|
||||
});
|
||||
});
|
||||
});
|
||||
})
|
||||
|
||||
revealNavigationForCurrentPage = () => {
|
||||
let pageId = document.getElementById("content").attributes["pageIds"].value.toString();
|
||||
let parts = document.querySelectorAll(".sideMenuPart");
|
||||
let found = 0;
|
||||
do {
|
||||
parts.forEach(part => {
|
||||
if (part.attributes['pageId'].value.indexOf(pageId) !== -1 && found === 0) {
|
||||
found = 1;
|
||||
if (part.classList.contains("hidden")){
|
||||
part.classList.remove("hidden");
|
||||
part.setAttribute('data-active',"");
|
||||
}
|
||||
revealParents(part)
|
||||
}
|
||||
});
|
||||
pageId = pageId.substring(0, pageId.lastIndexOf("/"))
|
||||
} while (pageId.indexOf("/") !== -1 && found === 0)
|
||||
};
|
||||
|
||||
revealParents = (part) => {
|
||||
if (part.classList.contains("sideMenuPart")) {
|
||||
if (part.classList.contains("hidden")) part.classList.remove("hidden");
|
||||
revealParents(part.parentNode)
|
||||
}
|
||||
};
|
@@ -1,395 +0,0 @@
|
||||
var pages = [{'name': 'annotation class NMS_1_16_1', 'description':'net.axay.kspigot.annotations.NMS_1_16_1', 'location':'-k-spigot/net.axay.kspigot.annotations/-n-m-s_1_16_1/index.html', 'searchKey':'NMS_1_16_1'},
|
||||
{'name': 'fun NMS_1_16_1()', 'description':'net.axay.kspigot.annotations.NMS_1_16_1.NMS_1_16_1', 'location':'-k-spigot/net.axay.kspigot.annotations/-n-m-s_1_16_1/-n-m-s_1_16_1.html', 'searchKey':'NMS_1_16_1'},
|
||||
{'name': 'annotation class NMS_General', 'description':'net.axay.kspigot.annotations.NMS_General', 'location':'-k-spigot/net.axay.kspigot.annotations/-n-m-s_-general/index.html', 'searchKey':'NMS_General'},
|
||||
{'name': 'fun NMS_General()', 'description':'net.axay.kspigot.annotations.NMS_General.NMS_General', 'location':'-k-spigot/net.axay.kspigot.annotations/-n-m-s_-general/-n-m-s_-general.html', 'searchKey':'NMS_General'},
|
||||
{'name': 'annotation class UnsafeImplementation', 'description':'net.axay.kspigot.annotations.UnsafeImplementation', 'location':'-k-spigot/net.axay.kspigot.annotations/-unsafe-implementation/index.html', 'searchKey':'UnsafeImplementation'},
|
||||
{'name': 'fun UnsafeImplementation()', 'description':'net.axay.kspigot.annotations.UnsafeImplementation.UnsafeImplementation', 'location':'-k-spigot/net.axay.kspigot.annotations/-unsafe-implementation/-unsafe-implementation.html', 'searchKey':'UnsafeImplementation'},
|
||||
{'name': 'class KSpigotComponentBuilder', 'description':'net.axay.kspigot.chat.KSpigotComponentBuilder', 'location':'-k-spigot/net.axay.kspigot.chat/-k-spigot-component-builder/index.html', 'searchKey':'KSpigotComponentBuilder'},
|
||||
{'name': 'fun KSpigotComponentBuilder()', 'description':'net.axay.kspigot.chat.KSpigotComponentBuilder.KSpigotComponentBuilder', 'location':'-k-spigot/net.axay.kspigot.chat/-k-spigot-component-builder/-k-spigot-component-builder.html', 'searchKey':'KSpigotComponentBuilder'},
|
||||
{'name': 'fun append(baseComponent: BaseComponent)', 'description':'net.axay.kspigot.chat.KSpigotComponentBuilder.append', 'location':'-k-spigot/net.axay.kspigot.chat/-k-spigot-component-builder/append.html', 'searchKey':'append'},
|
||||
{'name': 'fun create(): Array<BaseComponent>', 'description':'net.axay.kspigot.chat.KSpigotComponentBuilder.create', 'location':'-k-spigot/net.axay.kspigot.chat/-k-spigot-component-builder/create.html', 'searchKey':'create'},
|
||||
{'name': 'inline fun keybind(keybind: String, builder: KeybindComponent.() -> Unit)', 'description':'net.axay.kspigot.chat.KSpigotComponentBuilder.keybind', 'location':'-k-spigot/net.axay.kspigot.chat/-k-spigot-component-builder/keybind.html', 'searchKey':'keybind'},
|
||||
{'name': 'inline fun score(name: String, objective: String, value: String?, builder: ScoreComponent.() -> Unit)', 'description':'net.axay.kspigot.chat.KSpigotComponentBuilder.score', 'location':'-k-spigot/net.axay.kspigot.chat/-k-spigot-component-builder/score.html', 'searchKey':'score'},
|
||||
{'name': 'inline fun selector(selector: String, builder: SelectorComponent.() -> Unit)', 'description':'net.axay.kspigot.chat.KSpigotComponentBuilder.selector', 'location':'-k-spigot/net.axay.kspigot.chat/-k-spigot-component-builder/selector.html', 'searchKey':'selector'},
|
||||
{'name': 'inline fun text(text: String, builder: TextComponent.() -> Unit)', 'description':'net.axay.kspigot.chat.KSpigotComponentBuilder.text', 'location':'-k-spigot/net.axay.kspigot.chat/-k-spigot-component-builder/text.html', 'searchKey':'text'},
|
||||
{'name': 'inline fun translatable(translatable: String, with: Array<BaseComponent>, builder: TranslatableComponent.() -> Unit)', 'description':'net.axay.kspigot.chat.KSpigotComponentBuilder.translatable', 'location':'-k-spigot/net.axay.kspigot.chat/-k-spigot-component-builder/translatable.html', 'searchKey':'translatable'},
|
||||
{'name': 'inline fun chatComponent(builder: KSpigotComponentBuilder.() -> Unit): Array<out BaseComponent>', 'description':'net.axay.kspigot.chat.chatComponent', 'location':'-k-spigot/net.axay.kspigot.chat/chat-component.html', 'searchKey':'chatComponent'},
|
||||
{'name': 'fun BaseComponent.clickEvent(action: ClickEvent.Action, value: String)', 'description':'net.axay.kspigot.chat.clickEvent', 'location':'-k-spigot/net.axay.kspigot.chat/click-event.html', 'searchKey':'clickEvent'},
|
||||
{'name': 'fun col(hex: String): ChatColor', 'description':'net.axay.kspigot.chat.col', 'location':'-k-spigot/net.axay.kspigot.chat/col.html', 'searchKey':'col'},
|
||||
{'name': 'fun BaseComponent.hoverEventEntity(type: String, id: String, baseComponent: BaseComponent)', 'description':'net.axay.kspigot.chat.hoverEventEntity', 'location':'-k-spigot/net.axay.kspigot.chat/hover-event-entity.html', 'searchKey':'hoverEventEntity'},
|
||||
{'name': 'fun BaseComponent.hoverEventItem(id: String, count: Int, tag: ItemTag)', 'description':'net.axay.kspigot.chat.hoverEventItem', 'location':'-k-spigot/net.axay.kspigot.chat/hover-event-item.html', 'searchKey':'hoverEventItem'},
|
||||
{'name': 'inline fun BaseComponent.hoverEventText(builder: KSpigotComponentBuilder.() -> Unit)', 'description':'net.axay.kspigot.chat.hoverEventText', 'location':'-k-spigot/net.axay.kspigot.chat/hover-event-text.html', 'searchKey':'hoverEventText'},
|
||||
{'name': 'class NBTData', 'description':'net.axay.kspigot.data.NBTData', 'location':'-k-spigot/net.axay.kspigot.data/-n-b-t-data/index.html', 'searchKey':'NBTData'},
|
||||
{'name': 'object Companion', 'description':'net.axay.kspigot.data.NBTData.Companion', 'location':'-k-spigot/net.axay.kspigot.data/-n-b-t-data/-companion/index.html', 'searchKey':'Companion'},
|
||||
{'name': 'object Companion', 'description':'net.axay.kspigot.data.NBTDataType.Companion', 'location':'-k-spigot/net.axay.kspigot.data/-n-b-t-data-type/-companion/index.html', 'searchKey':'Companion'},
|
||||
{'name': 'object Companion', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChanger.Companion', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-changer/-companion/index.html', 'searchKey':'Companion'},
|
||||
{'name': 'object Companion', 'description':'net.axay.kspigot.inventory.InventorySlot.Companion', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot/-companion/index.html', 'searchKey':'Companion'},
|
||||
{'name': 'object Companion', 'description':'net.axay.kspigot.inventory.InventoryType.Companion', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-type/-companion/index.html', 'searchKey':'Companion'},
|
||||
{'name': 'object Companion', 'description':'net.axay.kspigot.utils.CardinalDirection.Companion', 'location':'-k-spigot/net.axay.kspigot.utils/-cardinal-direction/-companion/index.html', 'searchKey':'Companion'},
|
||||
{'name': 'object Companion', 'description':'net.axay.kspigot.utils.VerticalDirection.Companion', 'location':'-k-spigot/net.axay.kspigot.utils/-vertical-direction/-companion/index.html', 'searchKey':'Companion'},
|
||||
{'name': 'fun deserialize(nbtString: String): NBTData', 'description':'net.axay.kspigot.data.NBTData.Companion.deserialize', 'location':'-k-spigot/net.axay.kspigot.data/-n-b-t-data/-companion/deserialize.html', 'searchKey':'deserialize'},
|
||||
{'name': 'operator fun <T> get(key: String, dataType: NBTDataType<T>): T?', 'description':'net.axay.kspigot.data.NBTData.get', 'location':'-k-spigot/net.axay.kspigot.data/-n-b-t-data/get.html', 'searchKey':'get'},
|
||||
{'name': 'operator fun minusAssign(key: String)', 'description':'net.axay.kspigot.data.NBTData.minusAssign', 'location':'-k-spigot/net.axay.kspigot.data/-n-b-t-data/minus-assign.html', 'searchKey':'minusAssign'},
|
||||
{'name': 'fun remove(key: String)', 'description':'net.axay.kspigot.data.NBTData.remove', 'location':'-k-spigot/net.axay.kspigot.data/-n-b-t-data/remove.html', 'searchKey':'remove'},
|
||||
{'name': 'fun remove(runnable: BukkitRunnable): Pair<() -> Unit, Boolean>?', 'description':'net.axay.kspigot.runnables.KRunnableHolder.remove', 'location':'-k-spigot/net.axay.kspigot.runnables/-k-runnable-holder/remove.html', 'searchKey':'remove'},
|
||||
{'name': 'fun serialize(): String', 'description':'net.axay.kspigot.data.NBTData.serialize', 'location':'-k-spigot/net.axay.kspigot.data/-n-b-t-data/serialize.html', 'searchKey':'serialize'},
|
||||
{'name': 'operator fun <T> set(key: String, dataType: NBTDataType<T>, value: T)', 'description':'net.axay.kspigot.data.NBTData.set', 'location':'-k-spigot/net.axay.kspigot.data/-n-b-t-data/set.html', 'searchKey':'set'},
|
||||
{'name': 'abstract operator fun set(slot: InventorySlotCompound<T>, value: ItemStack)', 'description':'net.axay.kspigot.inventory.InventoryGUI.set', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i/set.html', 'searchKey':'set'},
|
||||
{'name': 'open operator override fun set(slot: InventorySlotCompound<T>, value: ItemStack)', 'description':'net.axay.kspigot.inventory.InventoryGUIShared.set', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-shared/set.html', 'searchKey':'set'},
|
||||
{'name': 'interface NBTDataType<T>', 'description':'net.axay.kspigot.data.NBTDataType', 'location':'-k-spigot/net.axay.kspigot.data/-n-b-t-data-type/index.html', 'searchKey':'NBTDataType'},
|
||||
{'name': 'abstract fun decodeNMS(nbtBase: NBTBase): T?', 'description':'net.axay.kspigot.data.NBTDataType.decodeNMS', 'location':'-k-spigot/net.axay.kspigot.data/-n-b-t-data-type/decode-n-m-s.html', 'searchKey':'decodeNMS'},
|
||||
{'name': 'abstract fun writeToCompound(key: String, data: T, compound: NBTTagCompound)', 'description':'net.axay.kspigot.data.NBTDataType.writeToCompound', 'location':'-k-spigot/net.axay.kspigot.data/-n-b-t-data-type/write-to-compound.html', 'searchKey':'writeToCompound'},
|
||||
{'name': 'interface SingleListener<T : Event> : Listener', 'description':'net.axay.kspigot.event.SingleListener', 'location':'-k-spigot/net.axay.kspigot.event/-single-listener/index.html', 'searchKey':'SingleListener'},
|
||||
{'name': 'abstract fun onEvent(event: T)', 'description':'net.axay.kspigot.event.SingleListener.onEvent', 'location':'-k-spigot/net.axay.kspigot.event/-single-listener/on-event.html', 'searchKey':'onEvent'},
|
||||
{'name': 'inline fun <T : Event> Plugin.listen(priority: EventPriority, ignoreCancelled: Boolean, crossinline onEvent: (T) -> Unit): SingleListener<T>', 'description':'net.axay.kspigot.event.listen', 'location':'-k-spigot/net.axay.kspigot.event/listen.html', 'searchKey':'listen'},
|
||||
{'name': 'fun Listener.unregister()', 'description':'net.axay.kspigot.event.unregister', 'location':'-k-spigot/net.axay.kspigot.event/unregister.html', 'searchKey':'unregister'},
|
||||
{'name': 'fun unregister()', 'description':'net.axay.kspigot.inventory.InventoryGUI.unregister', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i/unregister.html', 'searchKey':'unregister'},
|
||||
{'name': 'fun unregister(inventoryGUI: InventoryGUI<*>)', 'description':'net.axay.kspigot.inventory.InventoryGUIHolder.unregister', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-holder/unregister.html', 'searchKey':'unregister'},
|
||||
{'name': 'fun broadcast(msg: String): Int', 'description':'net.axay.kspigot.extensions.broadcast', 'location':'-k-spigot/net.axay.kspigot.extensions/broadcast.html', 'searchKey':'broadcast'},
|
||||
{'name': 'fun Player.appear(plugin: Plugin)', 'description':'net.axay.kspigot.extensions.bukkit.appear', 'location':'-k-spigot/net.axay.kspigot.extensions.bukkit/appear.html', 'searchKey':'appear'},
|
||||
{'name': 'fun Player.disappear(plugin: Plugin)', 'description':'net.axay.kspigot.extensions.bukkit.disappear', 'location':'-k-spigot/net.axay.kspigot.extensions.bukkit/disappear.html', 'searchKey':'disappear'},
|
||||
{'name': 'fun Player.feed()', 'description':'net.axay.kspigot.extensions.bukkit.feed', 'location':'-k-spigot/net.axay.kspigot.extensions.bukkit/feed.html', 'searchKey':'feed'},
|
||||
{'name': 'fun Player.feedSaturate()', 'description':'net.axay.kspigot.extensions.bukkit.feedSaturate', 'location':'-k-spigot/net.axay.kspigot.extensions.bukkit/feed-saturate.html', 'searchKey':'feedSaturate'},
|
||||
{'name': 'fun LivingEntity.heal()', 'description':'net.axay.kspigot.extensions.bukkit.heal', 'location':'-k-spigot/net.axay.kspigot.extensions.bukkit/heal.html', 'searchKey':'heal'},
|
||||
{'name': 'fun Player.kick(reason: String?)', 'description':'net.axay.kspigot.extensions.bukkit.kick', 'location':'-k-spigot/net.axay.kspigot.extensions.bukkit/kick.html', 'searchKey':'kick'},
|
||||
{'name': 'fun Damageable.kill()', 'description':'net.axay.kspigot.extensions.bukkit.kill', 'location':'-k-spigot/net.axay.kspigot.extensions.bukkit/kill.html', 'searchKey':'kill'},
|
||||
{'name': 'fun Player.saturate()', 'description':'net.axay.kspigot.extensions.bukkit.saturate', 'location':'-k-spigot/net.axay.kspigot.extensions.bukkit/saturate.html', 'searchKey':'saturate'},
|
||||
{'name': 'fun Location.spawnCleanEntity(entityType: EntityType): Entity?', 'description':'net.axay.kspigot.extensions.bukkit.spawnCleanEntity', 'location':'-k-spigot/net.axay.kspigot.extensions.bukkit/spawn-clean-entity.html', 'searchKey':'spawnCleanEntity'},
|
||||
{'name': 'fun PrepareItemCraftEvent.cancel()', 'description':'net.axay.kspigot.extensions.events.cancel', 'location':'-k-spigot/net.axay.kspigot.extensions.events/cancel.html', 'searchKey':'cancel'},
|
||||
{'name': 'class LocationArea(loc1: Location, loc2: Location)', 'description':'net.axay.kspigot.extensions.geometry.LocationArea', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-location-area/index.html', 'searchKey':'LocationArea'},
|
||||
{'name': 'fun LocationArea(loc1: Location, loc2: Location)', 'description':'net.axay.kspigot.extensions.geometry.LocationArea.LocationArea', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-location-area/-location-area.html', 'searchKey':'LocationArea'},
|
||||
{'name': 'fun isInArea(loc: Location, check3d: Boolean, tolerance: Int): Boolean', 'description':'net.axay.kspigot.extensions.geometry.LocationArea.isInArea', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-location-area/is-in-area.html', 'searchKey':'isInArea'},
|
||||
{'name': 'fun isInArea(loc: Location, check3d: Boolean, tolerance: Int): Boolean', 'description':'net.axay.kspigot.extensions.geometry.SimpleLocationPair.isInArea', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-location-pair/is-in-area.html', 'searchKey':'isInArea'},
|
||||
{'name': 'data class SimpleChunkLocation(x: Int, z: Int)', 'description':'net.axay.kspigot.extensions.geometry.SimpleChunkLocation', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-chunk-location/index.html', 'searchKey':'SimpleChunkLocation'},
|
||||
{'name': 'fun SimpleChunkLocation(x: Int, z: Int)', 'description':'net.axay.kspigot.extensions.geometry.SimpleChunkLocation.SimpleChunkLocation', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-chunk-location/-simple-chunk-location.html', 'searchKey':'SimpleChunkLocation'},
|
||||
{'name': 'operator fun component1(): Int', 'description':'net.axay.kspigot.extensions.geometry.SimpleChunkLocation.component1', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-chunk-location/component1.html', 'searchKey':'component1'},
|
||||
{'name': 'operator fun component1(): Double', 'description':'net.axay.kspigot.extensions.geometry.SimpleLocation2D.component1', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-location2-d/component1.html', 'searchKey':'component1'},
|
||||
{'name': 'operator fun component1(): Double', 'description':'net.axay.kspigot.extensions.geometry.SimpleLocation3D.component1', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-location3-d/component1.html', 'searchKey':'component1'},
|
||||
{'name': 'operator fun component1(): Int', 'description':'net.axay.kspigot.inventory.InventoryDimensions.component1', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-dimensions/component1.html', 'searchKey':'component1'},
|
||||
{'name': 'operator fun component1(): Int', 'description':'net.axay.kspigot.inventory.InventorySlot.component1', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot/component1.html', 'searchKey':'component1'},
|
||||
{'name': 'operator fun component1(): Int', 'description':'net.axay.kspigot.items.CustomItemIdentifier.component1', 'location':'-k-spigot/net.axay.kspigot.items/-custom-item-identifier/component1.html', 'searchKey':'component1'},
|
||||
{'name': 'operator fun component1(): Particle', 'description':'net.axay.kspigot.particles.KSpigotParticle.component1', 'location':'-k-spigot/net.axay.kspigot.particles/-k-spigot-particle/component1.html', 'searchKey':'component1'},
|
||||
{'name': 'operator fun component1(): Set<SingleStructureData>', 'description':'net.axay.kspigot.structures.Structure.component1', 'location':'-k-spigot/net.axay.kspigot.structures/-structure/component1.html', 'searchKey':'component1'},
|
||||
{'name': 'operator fun component1(): Material', 'description':'net.axay.kspigot.structures.StructureDataBlock.component1', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-block/component1.html', 'searchKey':'component1'},
|
||||
{'name': 'operator fun component1(): EntityType', 'description':'net.axay.kspigot.structures.StructureDataEntity.component1', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-entity/component1.html', 'searchKey':'component1'},
|
||||
{'name': 'operator fun component1(): Material', 'description':'net.axay.kspigot.structures.StructureDataMaterial.component1', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-material/component1.html', 'searchKey':'component1'},
|
||||
{'name': 'operator fun component1(): KSpigotParticle', 'description':'net.axay.kspigot.structures.StructureDataParticle.component1', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-particle/component1.html', 'searchKey':'component1'},
|
||||
{'name': 'operator fun component2(): Int', 'description':'net.axay.kspigot.extensions.geometry.SimpleChunkLocation.component2', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-chunk-location/component2.html', 'searchKey':'component2'},
|
||||
{'name': 'operator fun component2(): Double', 'description':'net.axay.kspigot.extensions.geometry.SimpleLocation2D.component2', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-location2-d/component2.html', 'searchKey':'component2'},
|
||||
{'name': 'operator fun component2(): Double', 'description':'net.axay.kspigot.extensions.geometry.SimpleLocation3D.component2', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-location3-d/component2.html', 'searchKey':'component2'},
|
||||
{'name': 'operator fun component2(): Int', 'description':'net.axay.kspigot.inventory.InventoryDimensions.component2', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-dimensions/component2.html', 'searchKey':'component2'},
|
||||
{'name': 'operator fun component2(): Int', 'description':'net.axay.kspigot.inventory.InventorySlot.component2', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot/component2.html', 'searchKey':'component2'},
|
||||
{'name': 'operator fun component2(): Material', 'description':'net.axay.kspigot.items.CustomItemIdentifier.component2', 'location':'-k-spigot/net.axay.kspigot.items/-custom-item-identifier/component2.html', 'searchKey':'component2'},
|
||||
{'name': 'operator fun component2(): Int', 'description':'net.axay.kspigot.particles.KSpigotParticle.component2', 'location':'-k-spigot/net.axay.kspigot.particles/-k-spigot-particle/component2.html', 'searchKey':'component2'},
|
||||
{'name': 'operator fun component2(): BlockData', 'description':'net.axay.kspigot.structures.StructureDataBlock.component2', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-block/component2.html', 'searchKey':'component2'},
|
||||
{'name': 'operator fun component2(): NBTData', 'description':'net.axay.kspigot.structures.StructureDataEntity.component2', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-entity/component2.html', 'searchKey':'component2'},
|
||||
{'name': 'fun copy(x: Int, z: Int): SimpleChunkLocation', 'description':'net.axay.kspigot.extensions.geometry.SimpleChunkLocation.copy', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-chunk-location/copy.html', 'searchKey':'copy'},
|
||||
{'name': 'fun copy(x: Double, y: Double): SimpleLocation2D', 'description':'net.axay.kspigot.extensions.geometry.SimpleLocation2D.copy', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-location2-d/copy.html', 'searchKey':'copy'},
|
||||
{'name': 'fun copy(x: Double, y: Double, z: Double): SimpleLocation3D', 'description':'net.axay.kspigot.extensions.geometry.SimpleLocation3D.copy', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-location3-d/copy.html', 'searchKey':'copy'},
|
||||
{'name': 'fun copy(width: Int, heigth: Int): InventoryDimensions', 'description':'net.axay.kspigot.inventory.InventoryDimensions.copy', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-dimensions/copy.html', 'searchKey':'copy'},
|
||||
{'name': 'fun copy(row: Int, slotInRow: Int): InventorySlot', 'description':'net.axay.kspigot.inventory.InventorySlot.copy', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot/copy.html', 'searchKey':'copy'},
|
||||
{'name': 'fun copy(customModelData: Int, placeHolderMaterial: Material): CustomItemIdentifier', 'description':'net.axay.kspigot.items.CustomItemIdentifier.copy', 'location':'-k-spigot/net.axay.kspigot.items/-custom-item-identifier/copy.html', 'searchKey':'copy'},
|
||||
{'name': 'fun copy(particle: Particle, amount: Int, offset: Vector?, extra: Number, data: Any?, force: Boolean): KSpigotParticle', 'description':'net.axay.kspigot.particles.KSpigotParticle.copy', 'location':'-k-spigot/net.axay.kspigot.particles/-k-spigot-particle/copy.html', 'searchKey':'copy'},
|
||||
{'name': 'fun copy(structureData: Set<SingleStructureData>): Structure', 'description':'net.axay.kspigot.structures.Structure.copy', 'location':'-k-spigot/net.axay.kspigot.structures/-structure/copy.html', 'searchKey':'copy'},
|
||||
{'name': 'fun copy(material: Material, blockData: BlockData): StructureDataBlock', 'description':'net.axay.kspigot.structures.StructureDataBlock.copy', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-block/copy.html', 'searchKey':'copy'},
|
||||
{'name': 'fun copy(entityType: EntityType, nbtData: NBTData): StructureDataEntity', 'description':'net.axay.kspigot.structures.StructureDataEntity.copy', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-entity/copy.html', 'searchKey':'copy'},
|
||||
{'name': 'fun copy(material: Material): StructureDataMaterial', 'description':'net.axay.kspigot.structures.StructureDataMaterial.copy', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-material/copy.html', 'searchKey':'copy'},
|
||||
{'name': 'fun copy(particle: KSpigotParticle): StructureDataParticle', 'description':'net.axay.kspigot.structures.StructureDataParticle.copy', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-particle/copy.html', 'searchKey':'copy'},
|
||||
{'name': 'data class SimpleLocation2D(x: Double, y: Double)', 'description':'net.axay.kspigot.extensions.geometry.SimpleLocation2D', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-location2-d/index.html', 'searchKey':'SimpleLocation2D'},
|
||||
{'name': 'data class SimpleLocation3D(x: Double, y: Double, z: Double)', 'description':'net.axay.kspigot.extensions.geometry.SimpleLocation3D', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-location3-d/index.html', 'searchKey':'SimpleLocation3D'},
|
||||
{'name': 'operator fun component3(): Double', 'description':'net.axay.kspigot.extensions.geometry.SimpleLocation3D.component3', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-location3-d/component3.html', 'searchKey':'component3'},
|
||||
{'name': 'operator fun component3(): Vector?', 'description':'net.axay.kspigot.particles.KSpigotParticle.component3', 'location':'-k-spigot/net.axay.kspigot.particles/-k-spigot-particle/component3.html', 'searchKey':'component3'},
|
||||
{'name': 'class SimpleLocationPair(loc1: Location, loc2: Location)', 'description':'net.axay.kspigot.extensions.geometry.SimpleLocationPair', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-location-pair/index.html', 'searchKey':'SimpleLocationPair'},
|
||||
{'name': 'fun SimpleLocationPair(loc1: Location, loc2: Location)', 'description':'net.axay.kspigot.extensions.geometry.SimpleLocationPair.SimpleLocationPair', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/-simple-location-pair/-simple-location-pair.html', 'searchKey':'SimpleLocationPair'},
|
||||
{'name': 'fun Location.add(x: Number, y: Number, z: Number): Location', 'description':'net.axay.kspigot.extensions.geometry.add', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/add.html', 'searchKey':'add'},
|
||||
{'name': 'fun add(offsetHorizontally: Int, offsetVertically: Int): InventorySlot', 'description':'net.axay.kspigot.inventory.InventorySlot.add', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot/add.html', 'searchKey':'add'},
|
||||
{'name': 'fun add(runnable: BukkitRunnable, callback: () -> Unit, safe: Boolean): Pair<() -> Unit, Boolean>?', 'description':'net.axay.kspigot.runnables.KRunnableHolder.add', 'location':'-k-spigot/net.axay.kspigot.runnables/-k-runnable-holder/add.html', 'searchKey':'add'},
|
||||
{'name': 'infix fun Location.increaseX(distance: Number): Location', 'description':'net.axay.kspigot.extensions.geometry.increaseX', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/increase-x.html', 'searchKey':'increaseX'},
|
||||
{'name': 'infix fun Location.increaseXY(distance: Number): Location', 'description':'net.axay.kspigot.extensions.geometry.increaseXY', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/increase-x-y.html', 'searchKey':'increaseXY'},
|
||||
{'name': 'infix fun Location.increaseXZ(distance: Number): Location', 'description':'net.axay.kspigot.extensions.geometry.increaseXZ', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/increase-x-z.html', 'searchKey':'increaseXZ'},
|
||||
{'name': 'infix fun Location.increaseY(distance: Number): Location', 'description':'net.axay.kspigot.extensions.geometry.increaseY', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/increase-y.html', 'searchKey':'increaseY'},
|
||||
{'name': 'infix fun Location.increaseYZ(distance: Number): Location', 'description':'net.axay.kspigot.extensions.geometry.increaseYZ', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/increase-y-z.html', 'searchKey':'increaseYZ'},
|
||||
{'name': 'infix fun Location.increaseZ(distance: Number): Location', 'description':'net.axay.kspigot.extensions.geometry.increaseZ', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/increase-z.html', 'searchKey':'increaseZ'},
|
||||
{'name': 'infix fun Location.reduceX(distance: Number): Location', 'description':'net.axay.kspigot.extensions.geometry.reduceX', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/reduce-x.html', 'searchKey':'reduceX'},
|
||||
{'name': 'infix fun Location.reduceXY(distance: Number): Location', 'description':'net.axay.kspigot.extensions.geometry.reduceXY', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/reduce-x-y.html', 'searchKey':'reduceXY'},
|
||||
{'name': 'infix fun Location.reduceXZ(distance: Number): Location', 'description':'net.axay.kspigot.extensions.geometry.reduceXZ', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/reduce-x-z.html', 'searchKey':'reduceXZ'},
|
||||
{'name': 'infix fun Location.reduceY(distance: Number): Location', 'description':'net.axay.kspigot.extensions.geometry.reduceY', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/reduce-y.html', 'searchKey':'reduceY'},
|
||||
{'name': 'infix fun Location.reduceYZ(distance: Number): Location', 'description':'net.axay.kspigot.extensions.geometry.reduceYZ', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/reduce-y-z.html', 'searchKey':'reduceYZ'},
|
||||
{'name': 'infix fun Location.reduceZ(distance: Number): Location', 'description':'net.axay.kspigot.extensions.geometry.reduceZ', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/reduce-z.html', 'searchKey':'reduceZ'},
|
||||
{'name': 'infix fun Location.relationTo(loc: Location): SimpleLocation3D', 'description':'net.axay.kspigot.extensions.geometry.relationTo', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/relation-to.html', 'searchKey':'relationTo'},
|
||||
{'name': 'fun Location.substract(x: Number, y: Number, z: Number): Location', 'description':'net.axay.kspigot.extensions.geometry.substract', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/substract.html', 'searchKey':'substract'},
|
||||
{'name': 'fun Vector.toSimpleLoc(): SimpleLocation3D', 'description':'net.axay.kspigot.extensions.geometry.toSimpleLoc', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/to-simple-loc.html', 'searchKey':'toSimpleLoc'},
|
||||
{'name': 'fun SimpleLocation3D.toVector(): Vector', 'description':'net.axay.kspigot.extensions.geometry.toVector', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/to-vector.html', 'searchKey':'toVector'},
|
||||
{'name': 'fun vec(x: Number, y: Number, z: Number): Vector', 'description':'net.axay.kspigot.extensions.geometry.vec', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/vec.html', 'searchKey':'vec'},
|
||||
{'name': 'fun vecX(x: Number): Vector', 'description':'net.axay.kspigot.extensions.geometry.vecX', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/vec-x.html', 'searchKey':'vecX'},
|
||||
{'name': 'fun vecXY(x: Number, y: Number): Vector', 'description':'net.axay.kspigot.extensions.geometry.vecXY', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/vec-x-y.html', 'searchKey':'vecXY'},
|
||||
{'name': 'fun vecXZ(x: Number, z: Number): Vector', 'description':'net.axay.kspigot.extensions.geometry.vecXZ', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/vec-x-z.html', 'searchKey':'vecXZ'},
|
||||
{'name': 'fun vecY(y: Number): Vector', 'description':'net.axay.kspigot.extensions.geometry.vecY', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/vec-y.html', 'searchKey':'vecY'},
|
||||
{'name': 'fun vecYZ(y: Number, z: Number): Vector', 'description':'net.axay.kspigot.extensions.geometry.vecYZ', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/vec-y-z.html', 'searchKey':'vecYZ'},
|
||||
{'name': 'fun vecZ(z: Number): Vector', 'description':'net.axay.kspigot.extensions.geometry.vecZ', 'location':'-k-spigot/net.axay.kspigot.extensions.geometry/vec-z.html', 'searchKey':'vecZ'},
|
||||
{'name': 'class GamePhase(length: Long, start: () -> Unit?, end: () -> Unit?, counterMessage: (Long) -> String?)', 'description':'net.axay.kspigot.game.GamePhase', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase/index.html', 'searchKey':'GamePhase'},
|
||||
{'name': 'fun GamePhase(length: Long, start: () -> Unit?, end: () -> Unit?, counterMessage: (Long) -> String?)', 'description':'net.axay.kspigot.game.GamePhase.GamePhase', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase/-game-phase.html', 'searchKey':'GamePhase'},
|
||||
{'name': 'fun startIt(kSpigot: KSpigot, phaseQueue: MutableList<GamePhase>)', 'description':'net.axay.kspigot.game.GamePhase.startIt', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase/start-it.html', 'searchKey':'startIt'},
|
||||
{'name': 'class GamePhaseBuilder(length: Long)', 'description':'net.axay.kspigot.game.GamePhaseBuilder', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase-builder/index.html', 'searchKey':'GamePhaseBuilder'},
|
||||
{'name': 'fun GamePhaseBuilder(length: Long)', 'description':'net.axay.kspigot.game.GamePhaseBuilder.GamePhaseBuilder', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase-builder/-game-phase-builder.html', 'searchKey':'GamePhaseBuilder'},
|
||||
{'name': 'fun build(): GamePhase', 'description':'net.axay.kspigot.game.GamePhaseBuilder.build', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase-builder/build.html', 'searchKey':'build'},
|
||||
{'name': 'fun build(): GamePhaseSystem', 'description':'net.axay.kspigot.game.GamePhaseSystemBuilder.build', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase-system-builder/build.html', 'searchKey':'build'},
|
||||
{'name': 'fun build(): InventoryGUIShared<T>', 'description':'net.axay.kspigot.inventory.InventoryGUIBuilder.build', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-builder/build.html', 'searchKey':'build'},
|
||||
{'name': 'fun build(): InventoryGUIPage', 'description':'net.axay.kspigot.inventory.InventoryGUIPageBuilder.build', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-builder/build.html', 'searchKey':'build'},
|
||||
{'name': 'fun FireworkMeta.build(builder: KSpigotFireworkBuilder.() -> Unit): FireworkMeta', 'description':'net.axay.kspigot.utils.KSpigotFirework.build', 'location':'-k-spigot/net.axay.kspigot.utils/-k-spigot-firework/build.html', 'searchKey':'build'},
|
||||
{'name': 'fun end(callback: () -> Unit)', 'description':'net.axay.kspigot.game.GamePhaseBuilder.end', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase-builder/end.html', 'searchKey':'end'},
|
||||
{'name': 'fun start(callback: () -> Unit)', 'description':'net.axay.kspigot.game.GamePhaseBuilder.start', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase-builder/start.html', 'searchKey':'start'},
|
||||
{'name': 'class GamePhaseSystem(gamePhases: Array<out GamePhase>)', 'description':'net.axay.kspigot.game.GamePhaseSystem', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase-system/index.html', 'searchKey':'GamePhaseSystem'},
|
||||
{'name': 'fun GamePhaseSystem(vararg gamePhases: Array<out GamePhase>)', 'description':'net.axay.kspigot.game.GamePhaseSystem.GamePhaseSystem', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase-system/-game-phase-system.html', 'searchKey':'GamePhaseSystem'},
|
||||
{'name': 'fun begin(kSpigot: KSpigot)', 'description':'net.axay.kspigot.game.GamePhaseSystem.begin', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase-system/begin.html', 'searchKey':'begin'},
|
||||
{'name': 'class GamePhaseSystemBuilder', 'description':'net.axay.kspigot.game.GamePhaseSystemBuilder', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase-system-builder/index.html', 'searchKey':'GamePhaseSystemBuilder'},
|
||||
{'name': 'fun GamePhaseSystemBuilder()', 'description':'net.axay.kspigot.game.GamePhaseSystemBuilder.GamePhaseSystemBuilder', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase-system-builder/-game-phase-system-builder.html', 'searchKey':'GamePhaseSystemBuilder'},
|
||||
{'name': 'fun phase(length: Long, builder: GamePhaseBuilder.() -> Unit)', 'description':'net.axay.kspigot.game.GamePhaseSystemBuilder.phase', 'location':'-k-spigot/net.axay.kspigot.game/-game-phase-system-builder/phase.html', 'searchKey':'phase'},
|
||||
{'name': 'fun buildGame(builder: GamePhaseSystemBuilder.() -> Unit): GamePhaseSystem', 'description':'net.axay.kspigot.game.buildGame', 'location':'-k-spigot/net.axay.kspigot.game/build-game.html', 'searchKey':'buildGame'},
|
||||
{'name': 'fun counterMessage(beginning: String, seconds: String, second: String, prefix: String?, suffix: String?): (Long) -> String', 'description':'net.axay.kspigot.game.counterMessage', 'location':'-k-spigot/net.axay.kspigot.game/counter-message.html', 'searchKey':'counterMessage'},
|
||||
{'name': 'interface ForColumnEight : ForInventoryWidthNine', 'description':'net.axay.kspigot.inventory.ForColumnEight', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-column-eight/index.html', 'searchKey':'ForColumnEight'},
|
||||
{'name': 'interface ForColumnFive : ForInventoryWidthFive, ForInventoryWidthNine', 'description':'net.axay.kspigot.inventory.ForColumnFive', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-column-five/index.html', 'searchKey':'ForColumnFive'},
|
||||
{'name': 'interface ForColumnFour : ForInventoryWidthFive, ForInventoryWidthNine', 'description':'net.axay.kspigot.inventory.ForColumnFour', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-column-four/index.html', 'searchKey':'ForColumnFour'},
|
||||
{'name': 'interface ForColumnNine : ForInventoryWidthNine', 'description':'net.axay.kspigot.inventory.ForColumnNine', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-column-nine/index.html', 'searchKey':'ForColumnNine'},
|
||||
{'name': 'interface ForColumnOne : ForInventoryWidthThree, ForInventoryWidthFive, ForInventoryWidthNine', 'description':'net.axay.kspigot.inventory.ForColumnOne', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-column-one/index.html', 'searchKey':'ForColumnOne'},
|
||||
{'name': 'interface ForColumnSeven : ForInventoryWidthNine', 'description':'net.axay.kspigot.inventory.ForColumnSeven', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-column-seven/index.html', 'searchKey':'ForColumnSeven'},
|
||||
{'name': 'interface ForColumnSix : ForInventoryWidthNine', 'description':'net.axay.kspigot.inventory.ForColumnSix', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-column-six/index.html', 'searchKey':'ForColumnSix'},
|
||||
{'name': 'interface ForColumnThree : ForInventoryWidthThree, ForInventoryWidthFive, ForInventoryWidthNine', 'description':'net.axay.kspigot.inventory.ForColumnThree', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-column-three/index.html', 'searchKey':'ForColumnThree'},
|
||||
{'name': 'interface ForColumnTwo : ForInventoryWidthThree, ForInventoryWidthFive, ForInventoryWidthNine', 'description':'net.axay.kspigot.inventory.ForColumnTwo', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-column-two/index.html', 'searchKey':'ForColumnTwo'},
|
||||
{'name': 'interface ForCompleteRowOne : ForRowOne, ForRowOneSlotOneToThree, ForRowOneSlotFourToFive', 'description':'net.axay.kspigot.inventory.ForCompleteRowOne', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-complete-row-one/index.html', 'searchKey':'ForCompleteRowOne'},
|
||||
{'name': 'interface ForCompleteRowThree : ForRowThree, ForRowThreeSlotOneToThree', 'description':'net.axay.kspigot.inventory.ForCompleteRowThree', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-complete-row-three/index.html', 'searchKey':'ForCompleteRowThree'},
|
||||
{'name': 'interface ForCompleteRowTwo : ForRowTwo, ForRowTwoSlotOneToThree', 'description':'net.axay.kspigot.inventory.ForCompleteRowTwo', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-complete-row-two/index.html', 'searchKey':'ForCompleteRowTwo'},
|
||||
{'name': 'interface ForEveryInventory : ForInventoryOneByNine, ForInventoryTwoByNine, ForInventoryThreeByNine, ForInventoryFourByNine, ForInventoryFiveByNine, ForInventorySixByNine, ForInventoryThreeByThree, ForInventoryOneByFive', 'description':'net.axay.kspigot.inventory.ForEveryInventory', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-every-inventory/index.html', 'searchKey':'ForEveryInventory'},
|
||||
{'name': 'interface ForInventory', 'description':'net.axay.kspigot.inventory.ForInventory', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-inventory/index.html', 'searchKey':'ForInventory'},
|
||||
{'name': 'interface ForInventoryFiveByNine : ForInventory', 'description':'net.axay.kspigot.inventory.ForInventoryFiveByNine', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-inventory-five-by-nine/index.html', 'searchKey':'ForInventoryFiveByNine'},
|
||||
{'name': 'interface ForInventoryFourByNine : ForInventory', 'description':'net.axay.kspigot.inventory.ForInventoryFourByNine', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-inventory-four-by-nine/index.html', 'searchKey':'ForInventoryFourByNine'},
|
||||
{'name': 'interface ForInventoryOneByFive : ForInventory', 'description':'net.axay.kspigot.inventory.ForInventoryOneByFive', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-inventory-one-by-five/index.html', 'searchKey':'ForInventoryOneByFive'},
|
||||
{'name': 'interface ForInventoryOneByNine : ForInventory', 'description':'net.axay.kspigot.inventory.ForInventoryOneByNine', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-inventory-one-by-nine/index.html', 'searchKey':'ForInventoryOneByNine'},
|
||||
{'name': 'interface ForInventorySixByNine : ForInventory', 'description':'net.axay.kspigot.inventory.ForInventorySixByNine', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-inventory-six-by-nine/index.html', 'searchKey':'ForInventorySixByNine'},
|
||||
{'name': 'interface ForInventoryThreeByNine : ForInventory', 'description':'net.axay.kspigot.inventory.ForInventoryThreeByNine', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-inventory-three-by-nine/index.html', 'searchKey':'ForInventoryThreeByNine'},
|
||||
{'name': 'interface ForInventoryThreeByThree : ForInventory', 'description':'net.axay.kspigot.inventory.ForInventoryThreeByThree', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-inventory-three-by-three/index.html', 'searchKey':'ForInventoryThreeByThree'},
|
||||
{'name': 'interface ForInventoryTwoByNine : ForInventory', 'description':'net.axay.kspigot.inventory.ForInventoryTwoByNine', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-inventory-two-by-nine/index.html', 'searchKey':'ForInventoryTwoByNine'},
|
||||
{'name': 'interface ForInventoryWidthFive : ForInventoryOneByFive', 'description':'net.axay.kspigot.inventory.ForInventoryWidthFive', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-inventory-width-five/index.html', 'searchKey':'ForInventoryWidthFive'},
|
||||
{'name': 'interface ForInventoryWidthNine : ForInventoryOneByNine, ForInventoryTwoByNine, ForInventoryThreeByNine, ForInventoryFourByNine, ForInventoryFiveByNine, ForInventorySixByNine', 'description':'net.axay.kspigot.inventory.ForInventoryWidthNine', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-inventory-width-nine/index.html', 'searchKey':'ForInventoryWidthNine'},
|
||||
{'name': 'interface ForInventoryWidthThree : ForInventoryThreeByThree', 'description':'net.axay.kspigot.inventory.ForInventoryWidthThree', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-inventory-width-three/index.html', 'searchKey':'ForInventoryWidthThree'},
|
||||
{'name': 'interface ForRowFive : ForInventoryFiveByNine, ForInventorySixByNine', 'description':'net.axay.kspigot.inventory.ForRowFive', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-row-five/index.html', 'searchKey':'ForRowFive'},
|
||||
{'name': 'interface ForRowFour : ForInventoryFourByNine, ForInventoryFiveByNine, ForInventorySixByNine', 'description':'net.axay.kspigot.inventory.ForRowFour', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-row-four/index.html', 'searchKey':'ForRowFour'},
|
||||
{'name': 'interface ForRowOne : ForInventoryOneByNine, ForInventoryTwoByNine, ForInventoryThreeByNine, ForInventoryFourByNine, ForInventoryFiveByNine, ForInventorySixByNine', 'description':'net.axay.kspigot.inventory.ForRowOne', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-row-one/index.html', 'searchKey':'ForRowOne'},
|
||||
{'name': 'interface ForRowOneSlotFourToFive : ForRowOne, ForInventoryOneByFive', 'description':'net.axay.kspigot.inventory.ForRowOneSlotFourToFive', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-row-one-slot-four-to-five/index.html', 'searchKey':'ForRowOneSlotFourToFive'},
|
||||
{'name': 'interface ForRowOneSlotOneToThree : ForRowOne, ForInventoryOneByFive, ForInventoryThreeByThree', 'description':'net.axay.kspigot.inventory.ForRowOneSlotOneToThree', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-row-one-slot-one-to-three/index.html', 'searchKey':'ForRowOneSlotOneToThree'},
|
||||
{'name': 'interface ForRowSix : ForInventorySixByNine', 'description':'net.axay.kspigot.inventory.ForRowSix', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-row-six/index.html', 'searchKey':'ForRowSix'},
|
||||
{'name': 'interface ForRowThree : ForInventoryThreeByNine, ForInventoryFourByNine, ForInventoryFiveByNine, ForInventorySixByNine', 'description':'net.axay.kspigot.inventory.ForRowThree', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-row-three/index.html', 'searchKey':'ForRowThree'},
|
||||
{'name': 'interface ForRowThreeSlotOneToThree : ForRowThree, ForInventoryThreeByThree', 'description':'net.axay.kspigot.inventory.ForRowThreeSlotOneToThree', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-row-three-slot-one-to-three/index.html', 'searchKey':'ForRowThreeSlotOneToThree'},
|
||||
{'name': 'interface ForRowTwo : ForInventoryTwoByNine, ForInventoryThreeByNine, ForInventoryFourByNine, ForInventoryFiveByNine, ForInventorySixByNine', 'description':'net.axay.kspigot.inventory.ForRowTwo', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-row-two/index.html', 'searchKey':'ForRowTwo'},
|
||||
{'name': 'interface ForRowTwoSlotOneToThree : ForRowTwo, ForInventoryThreeByThree', 'description':'net.axay.kspigot.inventory.ForRowTwoSlotOneToThree', 'location':'-k-spigot/net.axay.kspigot.inventory/-for-row-two-slot-one-to-three/index.html', 'searchKey':'ForRowTwoSlotOneToThree'},
|
||||
{'name': 'class InventoryBorderSlots<T : ForInventory> : InventorySlotCompound<T> ', 'description':'net.axay.kspigot.inventory.InventoryBorderSlots', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-border-slots/index.html', 'searchKey':'InventoryBorderSlots'},
|
||||
{'name': 'open override fun withInvType(invType: InventoryType<T>): HashSet<InventorySlot>', 'description':'net.axay.kspigot.inventory.InventoryBorderSlots.withInvType', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-border-slots/with-inv-type.html', 'searchKey':'withInvType'},
|
||||
{'name': 'open override fun withInvType(invType: InventoryType<T>): HashSet<InventorySlot>', 'description':'net.axay.kspigot.inventory.InventoryColumnSlots.withInvType', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-column-slots/with-inv-type.html', 'searchKey':'withInvType'},
|
||||
{'name': 'open override fun withInvType(invType: InventoryType<T>): HashSet<InventorySlot>', 'description':'net.axay.kspigot.inventory.InventoryCornerSlots.withInvType', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-corner-slots/with-inv-type.html', 'searchKey':'withInvType'},
|
||||
{'name': 'open override fun withInvType(invType: InventoryType<T>): HashSet<InventorySlot>', 'description':'net.axay.kspigot.inventory.InventoryRowSlots.withInvType', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-row-slots/with-inv-type.html', 'searchKey':'withInvType'},
|
||||
{'name': 'abstract fun withInvType(invType: InventoryType<T>): Collection<InventorySlot>', 'description':'net.axay.kspigot.inventory.InventorySlotCompound.withInvType', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot-compound/with-inv-type.html', 'searchKey':'withInvType'},
|
||||
{'name': 'open override fun withInvType(invType: InventoryType<T>): LinkedHashSet<InventorySlot>', 'description':'net.axay.kspigot.inventory.InventorySlotRange.withInvType', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot-range/with-inv-type.html', 'searchKey':'withInvType'},
|
||||
{'name': 'open override fun withInvType(invType: InventoryType<T>): List<InventorySlot>', 'description':'net.axay.kspigot.inventory.SingleInventorySlot.withInvType', 'location':'-k-spigot/net.axay.kspigot.inventory/-single-inventory-slot/with-inv-type.html', 'searchKey':'withInvType'},
|
||||
{'name': 'class InventoryColumnSlots<T : ForInventory> : InventorySlotCompound<T> ', 'description':'net.axay.kspigot.inventory.InventoryColumnSlots', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-column-slots/index.html', 'searchKey':'InventoryColumnSlots'},
|
||||
{'name': 'class InventoryCornerSlots<T : ForInventory> : InventorySlotCompound<T> ', 'description':'net.axay.kspigot.inventory.InventoryCornerSlots', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-corner-slots/index.html', 'searchKey':'InventoryCornerSlots'},
|
||||
{'name': 'data class InventoryDimensions(width: Int, heigth: Int)', 'description':'net.axay.kspigot.inventory.InventoryDimensions', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-dimensions/index.html', 'searchKey':'InventoryDimensions'},
|
||||
{'name': 'fun InventoryDimensions(width: Int, heigth: Int)', 'description':'net.axay.kspigot.inventory.InventoryDimensions.InventoryDimensions', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-dimensions/-inventory-dimensions.html', 'searchKey':'InventoryDimensions'},
|
||||
{'name': 'abstract class InventoryGUI<T : ForInventory>(data: InventoryGUIData<T>)', 'description':'net.axay.kspigot.inventory.InventoryGUI', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i/index.html', 'searchKey':'InventoryGUI'},
|
||||
{'name': 'fun <T : ForInventory> InventoryGUI(data: InventoryGUIData<T>)', 'description':'net.axay.kspigot.inventory.InventoryGUI.InventoryGUI', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i/-inventory-g-u-i.html', 'searchKey':'InventoryGUI'},
|
||||
{'name': 'abstract fun isThisInv(inventory: Inventory): Boolean', 'description':'net.axay.kspigot.inventory.InventoryGUI.isThisInv', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i/is-this-inv.html', 'searchKey':'isThisInv'},
|
||||
{'name': 'open override fun isThisInv(inventory: Inventory): Boolean', 'description':'net.axay.kspigot.inventory.InventoryGUIShared.isThisInv', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-shared/is-this-inv.html', 'searchKey':'isThisInv'},
|
||||
{'name': 'abstract fun loadPage(page: Int, offsetHorizontally: Int, offsetVertically: Int)', 'description':'net.axay.kspigot.inventory.InventoryGUI.loadPage', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i/load-page.html', 'searchKey':'loadPage'},
|
||||
{'name': 'open override fun loadPage(page: Int, offsetHorizontally: Int, offsetVertically: Int)', 'description':'net.axay.kspigot.inventory.InventoryGUIShared.loadPage', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-shared/load-page.html', 'searchKey':'loadPage'},
|
||||
{'name': 'fun register()', 'description':'net.axay.kspigot.inventory.InventoryGUI.register', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i/register.html', 'searchKey':'register'},
|
||||
{'name': 'fun register(inventoryGUI: InventoryGUI<*>)', 'description':'net.axay.kspigot.inventory.InventoryGUIHolder.register', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-holder/register.html', 'searchKey':'register'},
|
||||
{'name': 'class InventoryGUIBuilder<T : ForInventory>(kSpigot: KSpigot, type: InventoryType<T>)', 'description':'net.axay.kspigot.inventory.InventoryGUIBuilder', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-builder/index.html', 'searchKey':'InventoryGUIBuilder'},
|
||||
{'name': 'fun <T : ForInventory> InventoryGUIBuilder(kSpigot: KSpigot, type: InventoryType<T>)', 'description':'net.axay.kspigot.inventory.InventoryGUIBuilder.InventoryGUIBuilder', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-builder/-inventory-g-u-i-builder.html', 'searchKey':'InventoryGUIBuilder'},
|
||||
{'name': 'fun page(page: Int, builder: InventoryGUIPageBuilder<T>.() -> Unit)', 'description':'net.axay.kspigot.inventory.InventoryGUIBuilder.page', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-builder/page.html', 'searchKey':'page'},
|
||||
{'name': 'open class InventoryGUIButton(inventoryGUIElementData: InventoryGUIElementData, action: (<ERROR CLASS>) -> Unit) : InventoryGUIElement', 'description':'net.axay.kspigot.inventory.InventoryGUIButton', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-button/index.html', 'searchKey':'InventoryGUIButton'},
|
||||
{'name': 'fun InventoryGUIButton(inventoryGUIElementData: InventoryGUIElementData, action: (<ERROR CLASS>) -> Unit)', 'description':'net.axay.kspigot.inventory.InventoryGUIButton.InventoryGUIButton', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-button/-inventory-g-u-i-button.html', 'searchKey':'InventoryGUIButton'},
|
||||
{'name': 'open override fun onClick(clickEvent: <ERROR CLASS>)', 'description':'net.axay.kspigot.inventory.InventoryGUIButton.onClick', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-button/on-click.html', 'searchKey':'onClick'},
|
||||
{'name': 'open override fun onClick(clickEvent: <ERROR CLASS>)', 'description':'net.axay.kspigot.inventory.InventoryGUIFreeSlot.onClick', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-free-slot/on-click.html', 'searchKey':'onClick'},
|
||||
{'name': 'open override fun onClick(clickEvent: <ERROR CLASS>)', 'description':'net.axay.kspigot.inventory.InventoryGUIPlaceholder.onClick', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-placeholder/on-click.html', 'searchKey':'onClick'},
|
||||
{'name': 'abstract fun onClick(clickEvent: <ERROR CLASS>)', 'description':'net.axay.kspigot.inventory.InventoryGUISlot.onClick', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-slot/on-click.html', 'searchKey':'onClick'},
|
||||
{'name': 'class InventoryGUIButtonPageChange(inventoryGUIElementData: InventoryGUIElementData, calculator: InventoryGUIPageChangeCalculator, onChange: (<ERROR CLASS>) -> Unit?) : InventoryGUIButton', 'description':'net.axay.kspigot.inventory.InventoryGUIButtonPageChange', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-button-page-change/index.html', 'searchKey':'InventoryGUIButtonPageChange'},
|
||||
{'name': 'fun InventoryGUIButtonPageChange(inventoryGUIElementData: InventoryGUIElementData, calculator: InventoryGUIPageChangeCalculator, onChange: (<ERROR CLASS>) -> Unit?)', 'description':'net.axay.kspigot.inventory.InventoryGUIButtonPageChange.InventoryGUIButtonPageChange', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-button-page-change/-inventory-g-u-i-button-page-change.html', 'searchKey':'InventoryGUIButtonPageChange'},
|
||||
{'name': 'class InventoryGUIClickEvent<T : ForInventory>(bukkitEvent: InventoryClickEvent, gui: InventoryGUI<T>)', 'description':'net.axay.kspigot.inventory.InventoryGUIClickEvent', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-click-event/index.html', 'searchKey':'InventoryGUIClickEvent'},
|
||||
{'name': 'fun <T : ForInventory> InventoryGUIClickEvent(bukkitEvent: InventoryClickEvent, gui: InventoryGUI<T>)', 'description':'net.axay.kspigot.inventory.InventoryGUIClickEvent.InventoryGUIClickEvent', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-click-event/-inventory-g-u-i-click-event.html', 'searchKey':'InventoryGUIClickEvent'},
|
||||
{'name': 'class InventoryGUIData<T : ForInventory>(plugin: KSpigot, inventoryType: InventoryType<T>, title: String?, pages: Map<Int, InventoryGUIPage>)', 'description':'net.axay.kspigot.inventory.InventoryGUIData', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-data/index.html', 'searchKey':'InventoryGUIData'},
|
||||
{'name': 'fun <T : ForInventory> InventoryGUIData(plugin: KSpigot, inventoryType: InventoryType<T>, title: String?, pages: Map<Int, InventoryGUIPage>)', 'description':'net.axay.kspigot.inventory.InventoryGUIData.InventoryGUIData', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-data/-inventory-g-u-i-data.html', 'searchKey':'InventoryGUIData'},
|
||||
{'name': 'abstract class InventoryGUIElement(inventoryGUIElementData: InventoryGUIElementData) : InventoryGUISlot', 'description':'net.axay.kspigot.inventory.InventoryGUIElement', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-element/index.html', 'searchKey':'InventoryGUIElement'},
|
||||
{'name': 'fun InventoryGUIElement(inventoryGUIElementData: InventoryGUIElementData)', 'description':'net.axay.kspigot.inventory.InventoryGUIElement.InventoryGUIElement', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-element/-inventory-g-u-i-element.html', 'searchKey':'InventoryGUIElement'},
|
||||
{'name': 'class InventoryGUIElementData(itemStack: ItemStack)', 'description':'net.axay.kspigot.inventory.InventoryGUIElementData', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-element-data/index.html', 'searchKey':'InventoryGUIElementData'},
|
||||
{'name': 'fun InventoryGUIElementData(itemStack: ItemStack)', 'description':'net.axay.kspigot.inventory.InventoryGUIElementData.InventoryGUIElementData', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-element-data/-inventory-g-u-i-element-data.html', 'searchKey':'InventoryGUIElementData'},
|
||||
{'name': 'class InventoryGUIFreeSlot : InventoryGUISlot', 'description':'net.axay.kspigot.inventory.InventoryGUIFreeSlot', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-free-slot/index.html', 'searchKey':'InventoryGUIFreeSlot'},
|
||||
{'name': 'fun InventoryGUIFreeSlot()', 'description':'net.axay.kspigot.inventory.InventoryGUIFreeSlot.InventoryGUIFreeSlot', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-free-slot/-inventory-g-u-i-free-slot.html', 'searchKey':'InventoryGUIFreeSlot'},
|
||||
{'name': 'class InventoryGUIHolder(kSpigot: KSpigot) : AutoCloseable', 'description':'net.axay.kspigot.inventory.InventoryGUIHolder', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-holder/index.html', 'searchKey':'InventoryGUIHolder'},
|
||||
{'name': 'fun InventoryGUIHolder(kSpigot: KSpigot)', 'description':'net.axay.kspigot.inventory.InventoryGUIHolder.InventoryGUIHolder', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-holder/-inventory-g-u-i-holder.html', 'searchKey':'InventoryGUIHolder'},
|
||||
{'name': 'open override fun close()', 'description':'net.axay.kspigot.inventory.InventoryGUIHolder.close', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-holder/close.html', 'searchKey':'close'},
|
||||
{'name': 'open override fun close()', 'description':'net.axay.kspigot.runnables.KRunnableHolder.close', 'location':'-k-spigot/net.axay.kspigot.runnables/-k-runnable-holder/close.html', 'searchKey':'close'},
|
||||
{'name': 'class InventoryGUIPage(slots: Map<Int, InventoryGUISlot>, transitionTo: InventoryGUIPageChangeEffect?, transitionFrom: InventoryGUIPageChangeEffect?)', 'description':'net.axay.kspigot.inventory.InventoryGUIPage', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page/index.html', 'searchKey':'InventoryGUIPage'},
|
||||
{'name': 'fun InventoryGUIPage(slots: Map<Int, InventoryGUISlot>, transitionTo: InventoryGUIPageChangeEffect?, transitionFrom: InventoryGUIPageChangeEffect?)', 'description':'net.axay.kspigot.inventory.InventoryGUIPage.InventoryGUIPage', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page/-inventory-g-u-i-page.html', 'searchKey':'InventoryGUIPage'},
|
||||
{'name': 'class InventoryGUIPageBuilder<T : ForInventory>(type: InventoryType<T>, page: Int)', 'description':'net.axay.kspigot.inventory.InventoryGUIPageBuilder', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-builder/index.html', 'searchKey':'InventoryGUIPageBuilder'},
|
||||
{'name': 'fun <T : ForInventory> InventoryGUIPageBuilder(type: InventoryType<T>, page: Int)', 'description':'net.axay.kspigot.inventory.InventoryGUIPageBuilder.InventoryGUIPageBuilder', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-builder/-inventory-g-u-i-page-builder.html', 'searchKey':'InventoryGUIPageBuilder'},
|
||||
{'name': 'fun button(slots: InventorySlotCompound<T>, itemStack: ItemStack, onClick: (InventoryGUIClickEvent<T>) -> Unit)', 'description':'net.axay.kspigot.inventory.InventoryGUIPageBuilder.button', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-builder/button.html', 'searchKey':'button'},
|
||||
{'name': 'fun freeSlot(slots: InventorySlotCompound<T>)', 'description':'net.axay.kspigot.inventory.InventoryGUIPageBuilder.freeSlot', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-builder/free-slot.html', 'searchKey':'freeSlot'},
|
||||
{'name': 'fun nextPage(slots: InventorySlotCompound<T>, itemStack: ItemStack, onChange: (InventoryGUIClickEvent<T>) -> Unit?)', 'description':'net.axay.kspigot.inventory.InventoryGUIPageBuilder.nextPage', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-builder/next-page.html', 'searchKey':'nextPage'},
|
||||
{'name': 'fun pageChanger(slots: InventorySlotCompound<T>, itemStack: ItemStack, toPage: Int, onChange: (InventoryGUIClickEvent<T>) -> Unit?)', 'description':'net.axay.kspigot.inventory.InventoryGUIPageBuilder.pageChanger', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-builder/page-changer.html', 'searchKey':'pageChanger'},
|
||||
{'name': 'fun placeholder(slots: InventorySlotCompound<T>, itemStack: ItemStack)', 'description':'net.axay.kspigot.inventory.InventoryGUIPageBuilder.placeholder', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-builder/placeholder.html', 'searchKey':'placeholder'},
|
||||
{'name': 'fun previousPage(slots: InventorySlotCompound<T>, itemStack: ItemStack, onChange: (InventoryGUIClickEvent<T>) -> Unit?)', 'description':'net.axay.kspigot.inventory.InventoryGUIPageBuilder.previousPage', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-builder/previous-page.html', 'searchKey':'previousPage'},
|
||||
{'name': 'abstract class InventoryGUIPageChangeCalculator', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeCalculator', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-calculator/index.html', 'searchKey':'InventoryGUIPageChangeCalculator'},
|
||||
{'name': 'fun InventoryGUIPageChangeCalculator()', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeCalculator.InventoryGUIPageChangeCalculator', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-calculator/-inventory-g-u-i-page-change-calculator.html', 'searchKey':'InventoryGUIPageChangeCalculator'},
|
||||
{'name': 'class InventoryGUIConsistentPageCalculator(toPage: Int) : InventoryGUIPageChangeCalculator', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeCalculator.InventoryGUIConsistentPageCalculator', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-calculator/-inventory-g-u-i-consistent-page-calculator/index.html', 'searchKey':'InventoryGUIConsistentPageCalculator'},
|
||||
{'name': 'fun InventoryGUIConsistentPageCalculator(toPage: Int)', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeCalculator.InventoryGUIConsistentPageCalculator.InventoryGUIConsistentPageCalculator', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-calculator/-inventory-g-u-i-consistent-page-calculator/-inventory-g-u-i-consistent-page-calculator.html', 'searchKey':'InventoryGUIConsistentPageCalculator'},
|
||||
{'name': 'open override fun calculateNewPage(currentPage: Int, pages: Collection<Int>): Int', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeCalculator.InventoryGUIConsistentPageCalculator.calculateNewPage', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-calculator/-inventory-g-u-i-consistent-page-calculator/calculate-new-page.html', 'searchKey':'calculateNewPage'},
|
||||
{'name': 'open override fun calculateNewPage(currentPage: Int, pages: Collection<Int>): Int?', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeCalculator.InventoryGUINextPageCalculator.calculateNewPage', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-calculator/-inventory-g-u-i-next-page-calculator/calculate-new-page.html', 'searchKey':'calculateNewPage'},
|
||||
{'name': 'open override fun calculateNewPage(currentPage: Int, pages: Collection<Int>): Int?', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeCalculator.InventoryGUIPreviousPageCalculator.calculateNewPage', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-calculator/-inventory-g-u-i-previous-page-calculator/calculate-new-page.html', 'searchKey':'calculateNewPage'},
|
||||
{'name': 'abstract fun calculateNewPage(currentPage: Int, pages: Collection<Int>): Int?', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeCalculator.calculateNewPage', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-calculator/calculate-new-page.html', 'searchKey':'calculateNewPage'},
|
||||
{'name': 'object InventoryGUINextPageCalculator : InventoryGUIPageChangeCalculator', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeCalculator.InventoryGUINextPageCalculator', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-calculator/-inventory-g-u-i-next-page-calculator/index.html', 'searchKey':'InventoryGUINextPageCalculator'},
|
||||
{'name': 'object InventoryGUIPreviousPageCalculator : InventoryGUIPageChangeCalculator', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeCalculator.InventoryGUIPreviousPageCalculator', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-calculator/-inventory-g-u-i-previous-page-calculator/index.html', 'searchKey':'InventoryGUIPreviousPageCalculator'},
|
||||
{'name': 'enum InventoryGUIPageChangeEffect : Enum<InventoryGUIPageChangeEffect> ', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeEffect', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-effect/index.html', 'searchKey':'InventoryGUIPageChangeEffect'},
|
||||
{'name': 'INSTANT()', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeEffect.INSTANT', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-effect/-i-n-s-t-a-n-t/index.html', 'searchKey':'INSTANT'},
|
||||
{'name': 'SLIDE_HORIZONTALLY()', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeEffect.SLIDE_HORIZONTALLY', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-effect/-s-l-i-d-e_-h-o-r-i-z-o-n-t-a-l-l-y/index.html', 'searchKey':'SLIDE_HORIZONTALLY'},
|
||||
{'name': 'SLIDE_VERTICALLY()', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeEffect.SLIDE_VERTICALLY', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-effect/-s-l-i-d-e_-v-e-r-t-i-c-a-l-l-y/index.html', 'searchKey':'SLIDE_VERTICALLY'},
|
||||
{'name': 'SWIPE_HORIZONTALLY()', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeEffect.SWIPE_HORIZONTALLY', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-effect/-s-w-i-p-e_-h-o-r-i-z-o-n-t-a-l-l-y/index.html', 'searchKey':'SWIPE_HORIZONTALLY'},
|
||||
{'name': 'SWIPE_VERTICALLY()', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChangeEffect.SWIPE_VERTICALLY', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-change-effect/-s-w-i-p-e_-v-e-r-t-i-c-a-l-l-y/index.html', 'searchKey':'SWIPE_VERTICALLY'},
|
||||
{'name': 'class InventoryGUIPageChanger(effect: InventoryGUIPageChangeEffect)', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChanger', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-changer/index.html', 'searchKey':'InventoryGUIPageChanger'},
|
||||
{'name': 'fun InventoryGUIPageChanger(effect: InventoryGUIPageChangeEffect)', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChanger.InventoryGUIPageChanger', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-changer/-inventory-g-u-i-page-changer.html', 'searchKey':'InventoryGUIPageChanger'},
|
||||
{'name': 'fun changePage(gui: <ERROR CLASS>, fromPage: Int, toPage: Int)', 'description':'net.axay.kspigot.inventory.InventoryGUIPageChanger.changePage', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-page-changer/change-page.html', 'searchKey':'changePage'},
|
||||
{'name': 'class InventoryGUIPlaceholder(inventoryGUIElementData: InventoryGUIElementData) : InventoryGUIElement', 'description':'net.axay.kspigot.inventory.InventoryGUIPlaceholder', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-placeholder/index.html', 'searchKey':'InventoryGUIPlaceholder'},
|
||||
{'name': 'fun InventoryGUIPlaceholder(inventoryGUIElementData: InventoryGUIElementData)', 'description':'net.axay.kspigot.inventory.InventoryGUIPlaceholder.InventoryGUIPlaceholder', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-placeholder/-inventory-g-u-i-placeholder.html', 'searchKey':'InventoryGUIPlaceholder'},
|
||||
{'name': 'class InventoryGUIShared<T : ForInventory>(inventoryGUIData: InventoryGUIData<T>) : InventoryGUI<T> ', 'description':'net.axay.kspigot.inventory.InventoryGUIShared', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-shared/index.html', 'searchKey':'InventoryGUIShared'},
|
||||
{'name': 'fun <T : ForInventory> InventoryGUIShared(inventoryGUIData: InventoryGUIData<T>)', 'description':'net.axay.kspigot.inventory.InventoryGUIShared.InventoryGUIShared', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-shared/-inventory-g-u-i-shared.html', 'searchKey':'InventoryGUIShared'},
|
||||
{'name': 'interface InventoryGUISlot', 'description':'net.axay.kspigot.inventory.InventoryGUISlot', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-g-u-i-slot/index.html', 'searchKey':'InventoryGUISlot'},
|
||||
{'name': 'class InventoryRowSlots<T : ForInventory> : InventorySlotCompound<T> ', 'description':'net.axay.kspigot.inventory.InventoryRowSlots', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-row-slots/index.html', 'searchKey':'InventoryRowSlots'},
|
||||
{'name': 'data class InventorySlot(row: Int, slotInRow: Int) : Comparable<InventorySlot> ', 'description':'net.axay.kspigot.inventory.InventorySlot', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot/index.html', 'searchKey':'InventorySlot'},
|
||||
{'name': 'fun InventorySlot(row: Int, slotInRow: Int)', 'description':'net.axay.kspigot.inventory.InventorySlot.InventorySlot', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot/-inventory-slot.html', 'searchKey':'InventorySlot'},
|
||||
{'name': 'fun fromRealSlot(realSlot: Int, dimensions: InventoryDimensions): InventorySlot?', 'description':'net.axay.kspigot.inventory.InventorySlot.Companion.fromRealSlot', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot/-companion/from-real-slot.html', 'searchKey':'fromRealSlot'},
|
||||
{'name': 'open operator override fun compareTo(other: InventorySlot): Int', 'description':'net.axay.kspigot.inventory.InventorySlot.compareTo', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot/compare-to.html', 'searchKey':'compareTo'},
|
||||
{'name': 'fun isInDimension(inventoryDimensions: InventoryDimensions): Boolean', 'description':'net.axay.kspigot.inventory.InventorySlot.isInDimension', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot/is-in-dimension.html', 'searchKey':'isInDimension'},
|
||||
{'name': 'fun realSlotIn(inventoryDimensions: InventoryDimensions): Int?', 'description':'net.axay.kspigot.inventory.InventorySlot.realSlotIn', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot/real-slot-in.html', 'searchKey':'realSlotIn'},
|
||||
{'name': 'interface InventorySlotCompound<out T : ForInventory>', 'description':'net.axay.kspigot.inventory.InventorySlotCompound', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot-compound/index.html', 'searchKey':'InventorySlotCompound'},
|
||||
{'name': 'class InventorySlotRange<out T : ForInventory> : InventorySlotCompound<T> , ClosedRange<InventorySlot> ', 'description':'net.axay.kspigot.inventory.InventorySlotRange', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-slot-range/index.html', 'searchKey':'InventorySlotRange'},
|
||||
{'name': 'class InventoryType<in T : ForInventory>(dimensions: InventoryDimensions, bukkitType: InventoryType?)', 'description':'net.axay.kspigot.inventory.InventoryType', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-type/index.html', 'searchKey':'InventoryType'},
|
||||
{'name': 'fun InventoryType(dimensions: InventoryDimensions, bukkitType: InventoryType?)', 'description':'net.axay.kspigot.inventory.InventoryType.InventoryType', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-type/-inventory-type.html', 'searchKey':'InventoryType'},
|
||||
{'name': 'fun createBukkitInv(holder: InventoryHolder?, title: String?): Inventory', 'description':'net.axay.kspigot.inventory.InventoryType.createBukkitInv', 'location':'-k-spigot/net.axay.kspigot.inventory/-inventory-type/create-bukkit-inv.html', 'searchKey':'createBukkitInv'},
|
||||
{'name': 'open class SingleInventorySlot<T : ForInventory> : InventorySlotCompound<T> ', 'description':'net.axay.kspigot.inventory.SingleInventorySlot', 'location':'-k-spigot/net.axay.kspigot.inventory/-single-inventory-slot/index.html', 'searchKey':'SingleInventorySlot'},
|
||||
{'name': 'fun SingleInventorySlot(row: Int, slotInRow: Int)', 'description':'net.axay.kspigot.inventory.SingleInventorySlot.SingleInventorySlot', 'location':'-k-spigot/net.axay.kspigot.inventory/-single-inventory-slot/-single-inventory-slot.html', 'searchKey':'SingleInventorySlot'},
|
||||
{'name': 'object Slots', 'description':'net.axay.kspigot.inventory.Slots', 'location':'-k-spigot/net.axay.kspigot.inventory/-slots/index.html', 'searchKey':'Slots'},
|
||||
{'name': 'inline fun <T : ForInventory> KSpigot.inventoryGUI(type: InventoryType<T>, builder: InventoryGUIBuilder<T>.() -> Unit): InventoryGUIShared<T>', 'description':'net.axay.kspigot.inventory.inventoryGUI', 'location':'-k-spigot/net.axay.kspigot.inventory/inventory-g-u-i.html', 'searchKey':'inventoryGUI'},
|
||||
{'name': 'infix fun <T : ForInventory> SingleInventorySlot<out T>.linTo(slot: SingleInventorySlot<out T>): InventorySlotRange<T>', 'description':'net.axay.kspigot.inventory.linTo', 'location':'-k-spigot/net.axay.kspigot.inventory/lin-to.html', 'searchKey':'linTo'},
|
||||
{'name': 'fun HumanEntity.openGUI(gui: InventoryGUI<*>, page: Int): InventoryView?', 'description':'net.axay.kspigot.inventory.openGUI', 'location':'-k-spigot/net.axay.kspigot.inventory/open-g-u-i.html', 'searchKey':'openGUI'},
|
||||
{'name': 'infix fun <T : ForInventory> SingleInventorySlot<out T>.rectTo(slot: SingleInventorySlot<out T>): InventorySlotRange<T>', 'description':'net.axay.kspigot.inventory.rectTo', 'location':'-k-spigot/net.axay.kspigot.inventory/rect-to.html', 'searchKey':'rectTo'},
|
||||
{'name': 'class IPAddressData(json: JsonObject)', 'description':'net.axay.kspigot.ipaddress.IPAddressData', 'location':'-k-spigot/net.axay.kspigot.ipaddress/-i-p-address-data/index.html', 'searchKey':'IPAddressData'},
|
||||
{'name': 'fun IPAddressData(json: JsonObject)', 'description':'net.axay.kspigot.ipaddress.IPAddressData.IPAddressData', 'location':'-k-spigot/net.axay.kspigot.ipaddress/-i-p-address-data/-i-p-address-data.html', 'searchKey':'IPAddressData'},
|
||||
{'name': 'enum IPAddressDataLanguage : Enum<IPAddressDataLanguage> ', 'description':'net.axay.kspigot.ipaddress.IPAddressDataLanguage', 'location':'-k-spigot/net.axay.kspigot.ipaddress/-i-p-address-data-language/index.html', 'searchKey':'IPAddressDataLanguage'},
|
||||
{'name': 'CHINESE("zh-CN")', 'description':'net.axay.kspigot.ipaddress.IPAddressDataLanguage.CHINESE', 'location':'-k-spigot/net.axay.kspigot.ipaddress/-i-p-address-data-language/-c-h-i-n-e-s-e/index.html', 'searchKey':'CHINESE'},
|
||||
{'name': 'ENGLISH("en")', 'description':'net.axay.kspigot.ipaddress.IPAddressDataLanguage.ENGLISH', 'location':'-k-spigot/net.axay.kspigot.ipaddress/-i-p-address-data-language/-e-n-g-l-i-s-h/index.html', 'searchKey':'ENGLISH'},
|
||||
{'name': 'FRENCH("fr")', 'description':'net.axay.kspigot.ipaddress.IPAddressDataLanguage.FRENCH', 'location':'-k-spigot/net.axay.kspigot.ipaddress/-i-p-address-data-language/-f-r-e-n-c-h/index.html', 'searchKey':'FRENCH'},
|
||||
{'name': 'GERMAN("de")', 'description':'net.axay.kspigot.ipaddress.IPAddressDataLanguage.GERMAN', 'location':'-k-spigot/net.axay.kspigot.ipaddress/-i-p-address-data-language/-g-e-r-m-a-n/index.html', 'searchKey':'GERMAN'},
|
||||
{'name': 'JAPANESE("ja")', 'description':'net.axay.kspigot.ipaddress.IPAddressDataLanguage.JAPANESE', 'location':'-k-spigot/net.axay.kspigot.ipaddress/-i-p-address-data-language/-j-a-p-a-n-e-s-e/index.html', 'searchKey':'JAPANESE'},
|
||||
{'name': 'PORTUGUESE("pt-BR")', 'description':'net.axay.kspigot.ipaddress.IPAddressDataLanguage.PORTUGUESE', 'location':'-k-spigot/net.axay.kspigot.ipaddress/-i-p-address-data-language/-p-o-r-t-u-g-u-e-s-e/index.html', 'searchKey':'PORTUGUESE'},
|
||||
{'name': 'RUSSIAN("ru")', 'description':'net.axay.kspigot.ipaddress.IPAddressDataLanguage.RUSSIAN', 'location':'-k-spigot/net.axay.kspigot.ipaddress/-i-p-address-data-language/-r-u-s-s-i-a-n/index.html', 'searchKey':'RUSSIAN'},
|
||||
{'name': 'SPANISH("es")', 'description':'net.axay.kspigot.ipaddress.IPAddressDataLanguage.SPANISH', 'location':'-k-spigot/net.axay.kspigot.ipaddress/-i-p-address-data-language/-s-p-a-n-i-s-h/index.html', 'searchKey':'SPANISH'},
|
||||
{'name': 'fun Player.ipAddressData(language: IPAddressDataLanguage): IPAddressData?', 'description':'net.axay.kspigot.ipaddress.ipAddressData', 'location':'-k-spigot/net.axay.kspigot.ipaddress/ip-address-data.html', 'searchKey':'ipAddressData'},
|
||||
{'name': 'data class CustomItemIdentifier(customModelData: Int, placeHolderMaterial: Material)', 'description':'net.axay.kspigot.items.CustomItemIdentifier', 'location':'-k-spigot/net.axay.kspigot.items/-custom-item-identifier/index.html', 'searchKey':'CustomItemIdentifier'},
|
||||
{'name': 'class ItemMetaLoreBuilder', 'description':'net.axay.kspigot.items.ItemMetaLoreBuilder', 'location':'-k-spigot/net.axay.kspigot.items/-item-meta-lore-builder/index.html', 'searchKey':'ItemMetaLoreBuilder'},
|
||||
{'name': 'fun ItemMetaLoreBuilder()', 'description':'net.axay.kspigot.items.ItemMetaLoreBuilder.ItemMetaLoreBuilder', 'location':'-k-spigot/net.axay.kspigot.items/-item-meta-lore-builder/-item-meta-lore-builder.html', 'searchKey':'ItemMetaLoreBuilder'},
|
||||
{'name': 'operator fun String.unaryPlus()', 'description':'net.axay.kspigot.items.ItemMetaLoreBuilder.unaryPlus', 'location':'-k-spigot/net.axay.kspigot.items/-item-meta-lore-builder/unary-plus.html', 'searchKey':'unaryPlus'},
|
||||
{'name': 'inline fun ItemMeta.addLore(builder: ItemMetaLoreBuilder.() -> Unit)', 'description':'net.axay.kspigot.items.addLore', 'location':'-k-spigot/net.axay.kspigot.items/add-lore.html', 'searchKey':'addLore'},
|
||||
{'name': 'fun ItemMeta.flag(itemFlag: ItemFlag)', 'description':'net.axay.kspigot.items.flag', 'location':'-k-spigot/net.axay.kspigot.items/flag.html', 'searchKey':'flag'},
|
||||
{'name': 'fun ItemMeta.flags(vararg itemFlag: Array<out ItemFlag>)', 'description':'net.axay.kspigot.items.flags', 'location':'-k-spigot/net.axay.kspigot.items/flags.html', 'searchKey':'flags'},
|
||||
{'name': 'inline fun itemStack(material: Material, builder: ItemStack.() -> Unit): ItemStack', 'description':'net.axay.kspigot.items.itemStack', 'location':'-k-spigot/net.axay.kspigot.items/item-stack.html', 'searchKey':'itemStack'},
|
||||
{'name': 'fun ItemMeta.removeFlag(itemFlag: ItemFlag)', 'description':'net.axay.kspigot.items.removeFlag', 'location':'-k-spigot/net.axay.kspigot.items/remove-flag.html', 'searchKey':'removeFlag'},
|
||||
{'name': 'fun ItemMeta.removeFlags(vararg itemFlag: Array<out ItemFlag>)', 'description':'net.axay.kspigot.items.removeFlags', 'location':'-k-spigot/net.axay.kspigot.items/remove-flags.html', 'searchKey':'removeFlags'},
|
||||
{'name': 'inline fun ItemMeta.setLore(builder: ItemMetaLoreBuilder.() -> Unit)', 'description':'net.axay.kspigot.items.setLore', 'location':'-k-spigot/net.axay.kspigot.items/set-lore.html', 'searchKey':'setLore'},
|
||||
{'name': 'class MinMaxPair<T : Comparable<T>>(a: T, b: T)', 'description':'net.axay.kspigot.kotlinextensions.MinMaxPair', 'location':'-k-spigot/net.axay.kspigot.kotlinextensions/-min-max-pair/index.html', 'searchKey':'MinMaxPair'},
|
||||
{'name': 'fun <T : Comparable<T>> MinMaxPair(a: T, b: T)', 'description':'net.axay.kspigot.kotlinextensions.MinMaxPair.MinMaxPair', 'location':'-k-spigot/net.axay.kspigot.kotlinextensions/-min-max-pair/-min-max-pair.html', 'searchKey':'MinMaxPair'},
|
||||
{'name': 'fun Lazy<AutoCloseable>.closeIfInitialized(): Unit?', 'description':'net.axay.kspigot.kotlinextensions.closeIfInitialized', 'location':'-k-spigot/net.axay.kspigot.kotlinextensions/close-if-initialized.html', 'searchKey':'closeIfInitialized'},
|
||||
{'name': 'inline fun <T, R> Lazy<T>.ifInitialized(block: (T) -> R): R?', 'description':'net.axay.kspigot.kotlinextensions.ifInitialized', 'location':'-k-spigot/net.axay.kspigot.kotlinextensions/if-initialized.html', 'searchKey':'ifInitialized'},
|
||||
{'name': 'abstract class KSpigot : JavaPlugin', 'description':'net.axay.kspigot.main.KSpigot', 'location':'-k-spigot/net.axay.kspigot.main/-k-spigot/index.html', 'searchKey':'KSpigot'},
|
||||
{'name': 'fun KSpigot()', 'description':'net.axay.kspigot.main.KSpigot.KSpigot', 'location':'-k-spigot/net.axay.kspigot.main/-k-spigot/-k-spigot.html', 'searchKey':'KSpigot'},
|
||||
{'name': 'open fun load()', 'description':'net.axay.kspigot.main.KSpigot.load', 'location':'-k-spigot/net.axay.kspigot.main/-k-spigot/load.html', 'searchKey':'load'},
|
||||
{'name': 'override fun onDisable()', 'description':'net.axay.kspigot.main.KSpigot.onDisable', 'location':'-k-spigot/net.axay.kspigot.main/-k-spigot/on-disable.html', 'searchKey':'onDisable'},
|
||||
{'name': 'override fun onEnable()', 'description':'net.axay.kspigot.main.KSpigot.onEnable', 'location':'-k-spigot/net.axay.kspigot.main/-k-spigot/on-enable.html', 'searchKey':'onEnable'},
|
||||
{'name': 'override fun onLoad()', 'description':'net.axay.kspigot.main.KSpigot.onLoad', 'location':'-k-spigot/net.axay.kspigot.main/-k-spigot/on-load.html', 'searchKey':'onLoad'},
|
||||
{'name': 'open fun shutdown()', 'description':'net.axay.kspigot.main.KSpigot.shutdown', 'location':'-k-spigot/net.axay.kspigot.main/-k-spigot/shutdown.html', 'searchKey':'shutdown'},
|
||||
{'name': 'open fun startup()', 'description':'net.axay.kspigot.main.KSpigot.startup', 'location':'-k-spigot/net.axay.kspigot.main/-k-spigot/startup.html', 'searchKey':'startup'},
|
||||
{'name': 'object ValueHolder', 'description':'net.axay.kspigot.main.ValueHolder', 'location':'-k-spigot/net.axay.kspigot.main/-value-holder/index.html', 'searchKey':'ValueHolder'},
|
||||
{'name': 'data class KSpigotParticle(particle: Particle, amount: Int, offset: Vector?, extra: Number, data: Any?, force: Boolean)', 'description':'net.axay.kspigot.particles.KSpigotParticle', 'location':'-k-spigot/net.axay.kspigot.particles/-k-spigot-particle/index.html', 'searchKey':'KSpigotParticle'},
|
||||
{'name': 'fun KSpigotParticle(particle: Particle, amount: Int, offset: Vector?, extra: Number, data: Any?, force: Boolean)', 'description':'net.axay.kspigot.particles.KSpigotParticle.KSpigotParticle', 'location':'-k-spigot/net.axay.kspigot.particles/-k-spigot-particle/-k-spigot-particle.html', 'searchKey':'KSpigotParticle'},
|
||||
{'name': 'operator fun component4(): Number', 'description':'net.axay.kspigot.particles.KSpigotParticle.component4', 'location':'-k-spigot/net.axay.kspigot.particles/-k-spigot-particle/component4.html', 'searchKey':'component4'},
|
||||
{'name': 'operator fun component5(): Any?', 'description':'net.axay.kspigot.particles.KSpigotParticle.component5', 'location':'-k-spigot/net.axay.kspigot.particles/-k-spigot-particle/component5.html', 'searchKey':'component5'},
|
||||
{'name': 'operator fun component6(): Boolean', 'description':'net.axay.kspigot.particles.KSpigotParticle.component6', 'location':'-k-spigot/net.axay.kspigot.particles/-k-spigot-particle/component6.html', 'searchKey':'component6'},
|
||||
{'name': 'fun spawnAt(loc: Location)', 'description':'net.axay.kspigot.particles.KSpigotParticle.spawnAt', 'location':'-k-spigot/net.axay.kspigot.particles/-k-spigot-particle/spawn-at.html', 'searchKey':'spawnAt'},
|
||||
{'name': 'fun spawnFor(player: Player)', 'description':'net.axay.kspigot.particles.KSpigotParticle.spawnFor', 'location':'-k-spigot/net.axay.kspigot.particles/-k-spigot-particle/spawn-for.html', 'searchKey':'spawnFor'},
|
||||
{'name': 'class ChainedRunnablePart<T, R>(plugin: Plugin, runnable: (T?) -> R, sync: Boolean, previous: ChainedRunnablePart<*, T>?, next: ChainedRunnablePart<R, *>?)', 'description':'net.axay.kspigot.runnables.ChainedRunnablePart', 'location':'-k-spigot/net.axay.kspigot.runnables/-chained-runnable-part/index.html', 'searchKey':'ChainedRunnablePart'},
|
||||
{'name': 'fun <T, R> ChainedRunnablePart(plugin: Plugin, runnable: (T?) -> R, sync: Boolean, previous: ChainedRunnablePart<*, T>?, next: ChainedRunnablePart<R, *>?)', 'description':'net.axay.kspigot.runnables.ChainedRunnablePart.ChainedRunnablePart', 'location':'-k-spigot/net.axay.kspigot.runnables/-chained-runnable-part/-chained-runnable-part.html', 'searchKey':'ChainedRunnablePart'},
|
||||
{'name': 'fun execute()', 'description':'net.axay.kspigot.runnables.ChainedRunnablePart.execute', 'location':'-k-spigot/net.axay.kspigot.runnables/-chained-runnable-part/execute.html', 'searchKey':'execute'},
|
||||
{'name': 'class KRunnableHolder : AutoCloseable', 'description':'net.axay.kspigot.runnables.KRunnableHolder', 'location':'-k-spigot/net.axay.kspigot.runnables/-k-runnable-holder/index.html', 'searchKey':'KRunnableHolder'},
|
||||
{'name': 'fun KRunnableHolder()', 'description':'net.axay.kspigot.runnables.KRunnableHolder.KRunnableHolder', 'location':'-k-spigot/net.axay.kspigot.runnables/-k-runnable-holder/-k-runnable-holder.html', 'searchKey':'KRunnableHolder'},
|
||||
{'name': 'fun activate(runnable: BukkitRunnable): Unit?', 'description':'net.axay.kspigot.runnables.KRunnableHolder.activate', 'location':'-k-spigot/net.axay.kspigot.runnables/-k-runnable-holder/activate.html', 'searchKey':'activate'},
|
||||
{'name': 'abstract class KSpigotRunnable(counterUp: Long?, counterDownToOne: Long?, counterDownToZero: Long?) : BukkitRunnable', 'description':'net.axay.kspigot.runnables.KSpigotRunnable', 'location':'-k-spigot/net.axay.kspigot.runnables/-k-spigot-runnable/index.html', 'searchKey':'KSpigotRunnable'},
|
||||
{'name': 'fun KSpigotRunnable(counterUp: Long?, counterDownToOne: Long?, counterDownToZero: Long?)', 'description':'net.axay.kspigot.runnables.KSpigotRunnable.KSpigotRunnable', 'location':'-k-spigot/net.axay.kspigot.runnables/-k-spigot-runnable/-k-spigot-runnable.html', 'searchKey':'KSpigotRunnable'},
|
||||
{'name': 'fun Plugin.async(runnable: () -> Unit): BukkitTask', 'description':'net.axay.kspigot.runnables.async', 'location':'-k-spigot/net.axay.kspigot.runnables/async.html', 'searchKey':'async'},
|
||||
{'name': 'fun <R> Plugin.firstAsync(runnable: (Unit?) -> R): ChainedRunnablePart<Unit, R>', 'description':'net.axay.kspigot.runnables.firstAsync', 'location':'-k-spigot/net.axay.kspigot.runnables/first-async.html', 'searchKey':'firstAsync'},
|
||||
{'name': 'fun <R> Plugin.firstDo(sync: Boolean, runnable: (Unit?) -> R): ChainedRunnablePart<Unit, R>', 'description':'net.axay.kspigot.runnables.firstDo', 'location':'-k-spigot/net.axay.kspigot.runnables/first-do.html', 'searchKey':'firstDo'},
|
||||
{'name': 'fun <R> Plugin.firstSync(runnable: (Unit?) -> R): ChainedRunnablePart<Unit, R>', 'description':'net.axay.kspigot.runnables.firstSync', 'location':'-k-spigot/net.axay.kspigot.runnables/first-sync.html', 'searchKey':'firstSync'},
|
||||
{'name': 'fun Plugin.sync(runnable: () -> Unit): BukkitTask', 'description':'net.axay.kspigot.runnables.sync', 'location':'-k-spigot/net.axay.kspigot.runnables/sync.html', 'searchKey':'sync'},
|
||||
{'name': 'fun KSpigot.task(sync: Boolean, delay: Long, period: Long?, howOften: Long?, safe: Boolean, endCallback: () -> Unit?, runnable: (KSpigotRunnable) -> Unit?)', 'description':'net.axay.kspigot.runnables.task', 'location':'-k-spigot/net.axay.kspigot.runnables/task.html', 'searchKey':'task'},
|
||||
{'name': 'fun <T, R, U> ChainedRunnablePart<T, R>.thenAsync(runnable: (R?) -> U): ChainedRunnablePart<R, U>', 'description':'net.axay.kspigot.runnables.thenAsync', 'location':'-k-spigot/net.axay.kspigot.runnables/then-async.html', 'searchKey':'thenAsync'},
|
||||
{'name': 'fun <T, R, U> ChainedRunnablePart<T, R>.thenDo(sync: Boolean, runnable: (R?) -> U): ChainedRunnablePart<R, U>', 'description':'net.axay.kspigot.runnables.thenDo', 'location':'-k-spigot/net.axay.kspigot.runnables/then-do.html', 'searchKey':'thenDo'},
|
||||
{'name': 'fun <T, R, U> ChainedRunnablePart<T, R>.thenSync(runnable: (R?) -> U): ChainedRunnablePart<R, U>', 'description':'net.axay.kspigot.runnables.thenSync', 'location':'-k-spigot/net.axay.kspigot.runnables/then-sync.html', 'searchKey':'thenSync'},
|
||||
{'name': 'abstract class Circle(radius: Number)', 'description':'net.axay.kspigot.structures.Circle', 'location':'-k-spigot/net.axay.kspigot.structures/-circle/index.html', 'searchKey':'Circle'},
|
||||
{'name': 'fun Circle(radius: Number)', 'description':'net.axay.kspigot.structures.Circle.Circle', 'location':'-k-spigot/net.axay.kspigot.structures/-circle/-circle.html', 'searchKey':'Circle'},
|
||||
{'name': 'fun structure(filled: Boolean): Structure', 'description':'net.axay.kspigot.structures.Circle.structure', 'location':'-k-spigot/net.axay.kspigot.structures/-circle/structure.html', 'searchKey':'structure'},
|
||||
{'name': 'class EntityCircle(radius: Number, entityType: EntityType) : Circle', 'description':'net.axay.kspigot.structures.EntityCircle', 'location':'-k-spigot/net.axay.kspigot.structures/-entity-circle/index.html', 'searchKey':'EntityCircle'},
|
||||
{'name': 'fun EntityCircle(radius: Number, entityType: EntityType)', 'description':'net.axay.kspigot.structures.EntityCircle.EntityCircle', 'location':'-k-spigot/net.axay.kspigot.structures/-entity-circle/-entity-circle.html', 'searchKey':'EntityCircle'},
|
||||
{'name': 'class MaterialCircle(radius: Number, material: Material) : Circle', 'description':'net.axay.kspigot.structures.MaterialCircle', 'location':'-k-spigot/net.axay.kspigot.structures/-material-circle/index.html', 'searchKey':'MaterialCircle'},
|
||||
{'name': 'fun MaterialCircle(radius: Number, material: Material)', 'description':'net.axay.kspigot.structures.MaterialCircle.MaterialCircle', 'location':'-k-spigot/net.axay.kspigot.structures/-material-circle/-material-circle.html', 'searchKey':'MaterialCircle'},
|
||||
{'name': 'class ParticleCircle(radius: Number, particle: KSpigotParticle) : Circle', 'description':'net.axay.kspigot.structures.ParticleCircle', 'location':'-k-spigot/net.axay.kspigot.structures/-particle-circle/index.html', 'searchKey':'ParticleCircle'},
|
||||
{'name': 'fun ParticleCircle(radius: Number, particle: KSpigotParticle)', 'description':'net.axay.kspigot.structures.ParticleCircle.ParticleCircle', 'location':'-k-spigot/net.axay.kspigot.structures/-particle-circle/-particle-circle.html', 'searchKey':'ParticleCircle'},
|
||||
{'name': 'class SingleStructureData(location: SimpleLocation3D, structureData: StructureData)', 'description':'net.axay.kspigot.structures.SingleStructureData', 'location':'-k-spigot/net.axay.kspigot.structures/-single-structure-data/index.html', 'searchKey':'SingleStructureData'},
|
||||
{'name': 'fun SingleStructureData(location: SimpleLocation3D, structureData: StructureData)', 'description':'net.axay.kspigot.structures.SingleStructureData.SingleStructureData', 'location':'-k-spigot/net.axay.kspigot.structures/-single-structure-data/-single-structure-data.html', 'searchKey':'SingleStructureData'},
|
||||
{'name': 'data class Structure(structureData: Set<SingleStructureData>)', 'description':'net.axay.kspigot.structures.Structure', 'location':'-k-spigot/net.axay.kspigot.structures/-structure/index.html', 'searchKey':'Structure'},
|
||||
{'name': 'interface StructureData', 'description':'net.axay.kspigot.structures.StructureData', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data/index.html', 'searchKey':'StructureData'},
|
||||
{'name': 'abstract fun createAt(loc: Location)', 'description':'net.axay.kspigot.structures.StructureData.createAt', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data/create-at.html', 'searchKey':'createAt'},
|
||||
{'name': 'open override fun createAt(loc: Location)', 'description':'net.axay.kspigot.structures.StructureDataBlock.createAt', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-block/create-at.html', 'searchKey':'createAt'},
|
||||
{'name': 'open override fun createAt(loc: Location)', 'description':'net.axay.kspigot.structures.StructureDataEntity.createAt', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-entity/create-at.html', 'searchKey':'createAt'},
|
||||
{'name': 'open override fun createAt(loc: Location)', 'description':'net.axay.kspigot.structures.StructureDataMaterial.createAt', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-material/create-at.html', 'searchKey':'createAt'},
|
||||
{'name': 'open override fun createAt(loc: Location)', 'description':'net.axay.kspigot.structures.StructureDataParticle.createAt', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-particle/create-at.html', 'searchKey':'createAt'},
|
||||
{'name': 'data class StructureDataBlock(material: Material, blockData: BlockData) : StructureData', 'description':'net.axay.kspigot.structures.StructureDataBlock', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-block/index.html', 'searchKey':'StructureDataBlock'},
|
||||
{'name': 'data class StructureDataEntity(entityType: EntityType, nbtData: NBTData) : StructureData', 'description':'net.axay.kspigot.structures.StructureDataEntity', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-entity/index.html', 'searchKey':'StructureDataEntity'},
|
||||
{'name': 'data class StructureDataMaterial(material: Material) : StructureData', 'description':'net.axay.kspigot.structures.StructureDataMaterial', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-material/index.html', 'searchKey':'StructureDataMaterial'},
|
||||
{'name': 'fun StructureDataMaterial(material: Material)', 'description':'net.axay.kspigot.structures.StructureDataMaterial.StructureDataMaterial', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-material/-structure-data-material.html', 'searchKey':'StructureDataMaterial'},
|
||||
{'name': 'data class StructureDataParticle(particle: KSpigotParticle) : StructureData', 'description':'net.axay.kspigot.structures.StructureDataParticle', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-particle/index.html', 'searchKey':'StructureDataParticle'},
|
||||
{'name': 'fun StructureDataParticle(particle: KSpigotParticle)', 'description':'net.axay.kspigot.structures.StructureDataParticle.StructureDataParticle', 'location':'-k-spigot/net.axay.kspigot.structures/-structure-data-particle/-structure-data-particle.html', 'searchKey':'StructureDataParticle'},
|
||||
{'name': 'fun Structure.buildAt(loc: Location)', 'description':'net.axay.kspigot.structures.buildAt', 'location':'-k-spigot/net.axay.kspigot.structures/build-at.html', 'searchKey':'buildAt'},
|
||||
{'name': 'fun LocationArea.loadStructure(includeBlocks: Boolean, includeEntities: Boolean): Structure', 'description':'net.axay.kspigot.structures.loadStructure', 'location':'-k-spigot/net.axay.kspigot.structures/load-structure.html', 'searchKey':'loadStructure'},
|
||||
{'name': 'inline fun Structure.rotate(angle: Number, vectorRotation: (Vector, Double) -> Vector): Structure', 'description':'net.axay.kspigot.structures.rotate', 'location':'-k-spigot/net.axay.kspigot.structures/rotate.html', 'searchKey':'rotate'},
|
||||
{'name': 'fun Structure.rotateAroundX(angle: Number): Structure', 'description':'net.axay.kspigot.structures.rotateAroundX', 'location':'-k-spigot/net.axay.kspigot.structures/rotate-around-x.html', 'searchKey':'rotateAroundX'},
|
||||
{'name': 'fun Structure.rotateAroundY(angle: Number): Structure', 'description':'net.axay.kspigot.structures.rotateAroundY', 'location':'-k-spigot/net.axay.kspigot.structures/rotate-around-y.html', 'searchKey':'rotateAroundY'},
|
||||
{'name': 'fun Structure.rotateAroundZ(angle: Number): Structure', 'description':'net.axay.kspigot.structures.rotateAroundZ', 'location':'-k-spigot/net.axay.kspigot.structures/rotate-around-z.html', 'searchKey':'rotateAroundZ'},
|
||||
{'name': 'enum CardinalDirection : Enum<CardinalDirection> ', 'description':'net.axay.kspigot.utils.CardinalDirection', 'location':'-k-spigot/net.axay.kspigot.utils/-cardinal-direction/index.html', 'searchKey':'CardinalDirection'},
|
||||
{'name': 'fun fromLocation(location: Location): CardinalDirection', 'description':'net.axay.kspigot.utils.CardinalDirection.Companion.fromLocation', 'location':'-k-spigot/net.axay.kspigot.utils/-cardinal-direction/-companion/from-location.html', 'searchKey':'fromLocation'},
|
||||
{'name': 'fun fromLocation(location: Location): VerticalDirection', 'description':'net.axay.kspigot.utils.VerticalDirection.Companion.fromLocation', 'location':'-k-spigot/net.axay.kspigot.utils/-vertical-direction/-companion/from-location.html', 'searchKey':'fromLocation'},
|
||||
{'name': 'EAST()', 'description':'net.axay.kspigot.utils.CardinalDirection.EAST', 'location':'-k-spigot/net.axay.kspigot.utils/-cardinal-direction/-e-a-s-t/index.html', 'searchKey':'EAST'},
|
||||
{'name': 'NORTH()', 'description':'net.axay.kspigot.utils.CardinalDirection.NORTH', 'location':'-k-spigot/net.axay.kspigot.utils/-cardinal-direction/-n-o-r-t-h/index.html', 'searchKey':'NORTH'},
|
||||
{'name': 'SOUTH()', 'description':'net.axay.kspigot.utils.CardinalDirection.SOUTH', 'location':'-k-spigot/net.axay.kspigot.utils/-cardinal-direction/-s-o-u-t-h/index.html', 'searchKey':'SOUTH'},
|
||||
{'name': 'WEST()', 'description':'net.axay.kspigot.utils.CardinalDirection.WEST', 'location':'-k-spigot/net.axay.kspigot.utils/-cardinal-direction/-w-e-s-t/index.html', 'searchKey':'WEST'},
|
||||
{'name': 'class FireworkEffectBuilder', 'description':'net.axay.kspigot.utils.FireworkEffectBuilder', 'location':'-k-spigot/net.axay.kspigot.utils/-firework-effect-builder/index.html', 'searchKey':'FireworkEffectBuilder'},
|
||||
{'name': 'fun FireworkEffectBuilder()', 'description':'net.axay.kspigot.utils.FireworkEffectBuilder.FireworkEffectBuilder', 'location':'-k-spigot/net.axay.kspigot.utils/-firework-effect-builder/-firework-effect-builder.html', 'searchKey':'FireworkEffectBuilder'},
|
||||
{'name': 'fun color(vararg colors: Array<out Color>)', 'description':'net.axay.kspigot.utils.FireworkEffectBuilder.color', 'location':'-k-spigot/net.axay.kspigot.utils/-firework-effect-builder/color.html', 'searchKey':'color'},
|
||||
{'name': 'fun fade(vararg colors: Array<out Color>)', 'description':'net.axay.kspigot.utils.FireworkEffectBuilder.fade', 'location':'-k-spigot/net.axay.kspigot.utils/-firework-effect-builder/fade.html', 'searchKey':'fade'},
|
||||
{'name': 'object KSpigotFirework', 'description':'net.axay.kspigot.utils.KSpigotFirework', 'location':'-k-spigot/net.axay.kspigot.utils/-k-spigot-firework/index.html', 'searchKey':'KSpigotFirework'},
|
||||
{'name': 'inline fun buildFireworkMeta(fireworkMeta: FireworkMeta, builder: KSpigotFireworkBuilder.() -> Unit): FireworkMeta', 'description':'net.axay.kspigot.utils.KSpigotFirework.buildFireworkMeta', 'location':'-k-spigot/net.axay.kspigot.utils/-k-spigot-firework/build-firework-meta.html', 'searchKey':'buildFireworkMeta'},
|
||||
{'name': 'class KSpigotFireworkBuilder', 'description':'net.axay.kspigot.utils.KSpigotFireworkBuilder', 'location':'-k-spigot/net.axay.kspigot.utils/-k-spigot-firework-builder/index.html', 'searchKey':'KSpigotFireworkBuilder'},
|
||||
{'name': 'fun KSpigotFireworkBuilder()', 'description':'net.axay.kspigot.utils.KSpigotFireworkBuilder.KSpigotFireworkBuilder', 'location':'-k-spigot/net.axay.kspigot.utils/-k-spigot-firework-builder/-k-spigot-firework-builder.html', 'searchKey':'KSpigotFireworkBuilder'},
|
||||
{'name': 'fun applyTo(fireworkMeta: FireworkMeta): FireworkMeta', 'description':'net.axay.kspigot.utils.KSpigotFireworkBuilder.applyTo', 'location':'-k-spigot/net.axay.kspigot.utils/-k-spigot-firework-builder/apply-to.html', 'searchKey':'applyTo'},
|
||||
{'name': 'inline fun effect(builder: FireworkEffectBuilder.() -> Unit)', 'description':'net.axay.kspigot.utils.KSpigotFireworkBuilder.effect', 'location':'-k-spigot/net.axay.kspigot.utils/-k-spigot-firework-builder/effect.html', 'searchKey':'effect'},
|
||||
{'name': 'interface RegisterableCommand : CommandExecutor', 'description':'net.axay.kspigot.utils.RegisterableCommand', 'location':'-k-spigot/net.axay.kspigot.utils/-registerable-command/index.html', 'searchKey':'RegisterableCommand'},
|
||||
{'name': 'open fun registerCommand(commandName: String, kSpigot: KSpigot): Boolean', 'description':'net.axay.kspigot.utils.RegisterableCommand.registerCommand', 'location':'-k-spigot/net.axay.kspigot.utils/-registerable-command/register-command.html', 'searchKey':'registerCommand'},
|
||||
{'name': 'enum VerticalDirection : Enum<VerticalDirection> ', 'description':'net.axay.kspigot.utils.VerticalDirection', 'location':'-k-spigot/net.axay.kspigot.utils/-vertical-direction/index.html', 'searchKey':'VerticalDirection'},
|
||||
{'name': 'DOWN()', 'description':'net.axay.kspigot.utils.VerticalDirection.DOWN', 'location':'-k-spigot/net.axay.kspigot.utils/-vertical-direction/-d-o-w-n/index.html', 'searchKey':'DOWN'},
|
||||
{'name': 'STRAIGHT()', 'description':'net.axay.kspigot.utils.VerticalDirection.STRAIGHT', 'location':'-k-spigot/net.axay.kspigot.utils/-vertical-direction/-s-t-r-a-i-g-h-t/index.html', 'searchKey':'STRAIGHT'},
|
||||
{'name': 'UP()', 'description':'net.axay.kspigot.utils.VerticalDirection.UP', 'location':'-k-spigot/net.axay.kspigot.utils/-vertical-direction/-u-p/index.html', 'searchKey':'UP'}]
|
@@ -1,257 +0,0 @@
|
||||
filteringContext = {
|
||||
dependencies: {},
|
||||
restrictedDependencies: [],
|
||||
activeFilters: []
|
||||
}
|
||||
let highlightedAnchor;
|
||||
|
||||
window.addEventListener('load', () => {
|
||||
document.querySelectorAll("div[data-platform-hinted]")
|
||||
.forEach(elem => elem.addEventListener('click', (event) => togglePlatformDependent(event,elem)))
|
||||
document.querySelectorAll("div[tabs-section]")
|
||||
.forEach(elem => elem.addEventListener('click', (event) => toggleSectionsEventHandler(event)))
|
||||
const filterSection = document.getElementById('filter-section')
|
||||
if (filterSection) {
|
||||
filterSection.addEventListener('click', (event) => filterButtonHandler(event))
|
||||
initializeFiltering()
|
||||
}
|
||||
initTabs()
|
||||
handleAnchor()
|
||||
initHidingLeftNavigation()
|
||||
})
|
||||
|
||||
const initHidingLeftNavigation = () => {
|
||||
document.getElementById("leftToggler").onclick = function(event) {
|
||||
//Events need to be prevented from bubbling since they will trigger next handler
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
event.stopImmediatePropagation();
|
||||
document.getElementById("leftColumn").classList.toggle("open");
|
||||
}
|
||||
|
||||
document.getElementById("main").onclick = () => {
|
||||
document.getElementById("leftColumn").classList.remove("open");
|
||||
}
|
||||
}
|
||||
|
||||
// Hash change is needed in order to allow for linking inside the same page with anchors
|
||||
// If this is not present user is forced to refresh the site in order to use an anchor
|
||||
window.onhashchange = handleAnchor
|
||||
|
||||
function handleAnchor() {
|
||||
if(highlightedAnchor){
|
||||
highlightedAnchor.classList.remove('anchor-highlight')
|
||||
highlightedAnchor = null;
|
||||
}
|
||||
|
||||
let searchForTab = function(element) {
|
||||
if(element && element.hasAttribute) {
|
||||
if(element.hasAttribute("data-togglable")) return element;
|
||||
else return searchForTab(element.parentNode)
|
||||
} else return null
|
||||
}
|
||||
let anchor = window.location.hash
|
||||
if (anchor != "") {
|
||||
anchor = anchor.substring(1)
|
||||
let element = document.querySelector('a[data-name="' + anchor+'"]')
|
||||
if (element) {
|
||||
let tab = searchForTab(element)
|
||||
if (tab) {
|
||||
let found = document.querySelector('.tabs-section > .section-tab[data-togglable="' + tab.getAttribute("data-togglable") + '"]')
|
||||
toggleSections(tab)
|
||||
const content = element.nextElementSibling
|
||||
if(content){
|
||||
content.classList.add('anchor-highlight')
|
||||
highlightedAnchor = content
|
||||
}
|
||||
element.scrollIntoView({behavior: "smooth"})
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function initTabs(){
|
||||
document.querySelectorAll("div[tabs-section]")
|
||||
.forEach(element => {
|
||||
showCorrespondingTabBody(element)
|
||||
element.addEventListener('click', (event) => toggleSectionsEventHandler(event))
|
||||
})
|
||||
let cached = localStorage.getItem("active-tab")
|
||||
if (cached) {
|
||||
let parsed = JSON.parse(cached)
|
||||
let tab = document.querySelector('div[tabs-section] > button[data-togglable="' + parsed + '"]')
|
||||
if(tab) {
|
||||
toggleSections(tab)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function showCorrespondingTabBody(element){
|
||||
const key = element.querySelector("button[data-active]").getAttribute("data-togglable")
|
||||
document.querySelector(".tabs-section-body")
|
||||
.querySelector("div[data-togglable='" + key + "']")
|
||||
.setAttribute("data-active", "")
|
||||
}
|
||||
|
||||
function filterButtonHandler(event) {
|
||||
if(event.target.tagName == "BUTTON" && event.target.hasAttribute("data-filter")) {
|
||||
let sourceset = event.target.getAttribute("data-filter")
|
||||
if(filteringContext.activeFilters.indexOf(sourceset) != -1) {
|
||||
filterSourceset(sourceset)
|
||||
} else {
|
||||
unfilterSourceset(sourceset)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function initializeFiltering() {
|
||||
filteringContext.dependencies = JSON.parse(sourceset_dependencies)
|
||||
document.querySelectorAll("#filter-section > button")
|
||||
.forEach(p => filteringContext.restrictedDependencies.push(p.getAttribute("data-filter")))
|
||||
Object.keys(filteringContext.dependencies).forEach(p => {
|
||||
filteringContext.dependencies[p] = filteringContext.dependencies[p]
|
||||
.filter(q => -1 !== filteringContext.restrictedDependencies.indexOf(q))
|
||||
})
|
||||
let cached = window.localStorage.getItem('inactive-filters')
|
||||
if (cached) {
|
||||
let parsed = JSON.parse(cached)
|
||||
filteringContext.activeFilters = filteringContext.restrictedDependencies
|
||||
.filter(q => parsed.indexOf(q) == -1 )
|
||||
} else {
|
||||
filteringContext.activeFilters = filteringContext.restrictedDependencies
|
||||
}
|
||||
refreshFiltering()
|
||||
}
|
||||
|
||||
function filterSourceset(sourceset) {
|
||||
filteringContext.activeFilters = filteringContext.activeFilters.filter(p => p != sourceset)
|
||||
refreshFiltering()
|
||||
addSourcesetFilterToCache(sourceset)
|
||||
}
|
||||
|
||||
function unfilterSourceset(sourceset) {
|
||||
if(filteringContext.activeFilters.length == 0) {
|
||||
filteringContext.activeFilters = filteringContext.dependencies[sourceset].concat([sourceset])
|
||||
refreshFiltering()
|
||||
filteringContext.dependencies[sourceset].concat([sourceset]).forEach(p => removeSourcesetFilterFromCache(p))
|
||||
} else {
|
||||
filteringContext.activeFilters.push(sourceset)
|
||||
refreshFiltering()
|
||||
removeSourcesetFilterFromCache(sourceset)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function addSourcesetFilterToCache(sourceset) {
|
||||
let cached = localStorage.getItem('inactive-filters')
|
||||
if (cached) {
|
||||
let parsed = JSON.parse(cached)
|
||||
localStorage.setItem('inactive-filters', JSON.stringify(parsed.concat([sourceset])))
|
||||
} else {
|
||||
localStorage.setItem('inactive-filters', JSON.stringify([sourceset]))
|
||||
}
|
||||
}
|
||||
|
||||
function removeSourcesetFilterFromCache(sourceset) {
|
||||
let cached = localStorage.getItem('inactive-filters')
|
||||
if (cached) {
|
||||
let parsed = JSON.parse(cached)
|
||||
localStorage.setItem('inactive-filters', JSON.stringify(parsed.filter(p => p != sourceset)))
|
||||
}
|
||||
}
|
||||
|
||||
function toggleSections(target) {
|
||||
localStorage.setItem('active-tab', JSON.stringify(target.getAttribute("data-togglable")))
|
||||
const activateTabs = (containerClass) => {
|
||||
for(const element of document.getElementsByClassName(containerClass)){
|
||||
for(const child of element.children){
|
||||
if(child.getAttribute("data-togglable") === target.getAttribute("data-togglable")){
|
||||
child.setAttribute("data-active", "")
|
||||
} else {
|
||||
child.removeAttribute("data-active")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
activateTabs("tabs-section")
|
||||
activateTabs("tabs-section-body")
|
||||
}
|
||||
|
||||
function toggleSectionsEventHandler(evt){
|
||||
if(!evt.target.getAttribute("data-togglable")) return
|
||||
toggleSections(evt.target)
|
||||
}
|
||||
|
||||
function togglePlatformDependent(e, container) {
|
||||
let target = e.target
|
||||
if (target.tagName != 'BUTTON') return;
|
||||
let index = target.getAttribute('data-toggle')
|
||||
|
||||
for(let child of container.children){
|
||||
if(child.hasAttribute('data-toggle-list')){
|
||||
for(let bm of child.children){
|
||||
if(bm == target){
|
||||
bm.setAttribute('data-active',"")
|
||||
} else if(bm != target) {
|
||||
bm.removeAttribute('data-active')
|
||||
}
|
||||
}
|
||||
}
|
||||
else if(child.getAttribute('data-togglable') == index) {
|
||||
child.setAttribute('data-active',"")
|
||||
}
|
||||
else {
|
||||
child.removeAttribute('data-active')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function refreshFiltering() {
|
||||
let sourcesetList = filteringContext.activeFilters
|
||||
document.querySelectorAll("[data-filterable-set]")
|
||||
.forEach(
|
||||
elem => {
|
||||
let platformList = elem.getAttribute("data-filterable-set").split(' ').filter(v => -1 !== sourcesetList.indexOf(v))
|
||||
elem.setAttribute("data-filterable-current", platformList.join(' '))
|
||||
}
|
||||
)
|
||||
refreshFilterButtons()
|
||||
refreshPlatformTabs()
|
||||
}
|
||||
|
||||
function refreshPlatformTabs() {
|
||||
document.querySelectorAll(".platform-hinted > .platform-bookmarks-row").forEach(
|
||||
p => {
|
||||
let active = false;
|
||||
let firstAvailable = null
|
||||
p.childNodes.forEach(
|
||||
element => {
|
||||
if(element.getAttribute("data-filterable-current") != ''){
|
||||
if( firstAvailable == null) {
|
||||
firstAvailable = element
|
||||
}
|
||||
if(element.hasAttribute("data-active")) {
|
||||
active = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
)
|
||||
if( active == false && firstAvailable) {
|
||||
firstAvailable.click()
|
||||
}
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
function refreshFilterButtons() {
|
||||
document.querySelectorAll("#filter-section > button")
|
||||
.forEach(f => {
|
||||
if(filteringContext.activeFilters.indexOf(f.getAttribute("data-filter")) != -1){
|
||||
f.setAttribute("data-active","")
|
||||
} else {
|
||||
f.removeAttribute("data-active")
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@@ -1,7 +0,0 @@
|
||||
let query = new URLSearchParams(window.location.search).get("query");
|
||||
document.getElementById("searchTitle").innerHTML += '"' + query + '":';
|
||||
document.getElementById("searchTable").innerHTML = pages
|
||||
.filter(el => el.name.toLowerCase().startsWith(query.toLowerCase()))
|
||||
.reduce((acc, element) => {
|
||||
return acc + '<tr><td><a href="' + element.location + '">' + element.name + '</a></td></tr>'
|
||||
}, "");
|
@@ -1 +0,0 @@
|
||||
sourceset_dependencies = '{":dokkaHtml/main": []}'
|
Reference in New Issue
Block a user