Updated Javadoc

This commit is contained in:
Eric 2017-06-08 15:23:01 +02:00
parent 45d2bba2f1
commit f1782e5a22
213 changed files with 18884 additions and 3101 deletions

335
dependency-reduced-pom.xml Normal file
View File

@ -0,0 +1,335 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.epiceric</groupId>
<artifactId>ShopChest</artifactId>
<name>ShopChest</name>
<version>${version.final}</version>
<description>Let your players create their own nice-looking shops to sell their stuff to other players!</description>
<url>https://www.spigotmc.org/resources/shopchest.11431/</url>
<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
<configuration>
<resources>
<resource>
<directory>src/main/resources</directory>
<targetPath>.</targetPath>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<artifactSet>
<includes>
<include>org.bstats:*</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>de.epiceric.shopchest.utils</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
<configuration>
<altDeploymentRepository>internal-maven-repo::default::file://${project.build.directory}/gh-pages/maven</altDeploymentRepository>
<javadoc>${project.build.directory}/${project.build.finalName}-javadoc.jar</javadoc>
</configuration>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.12</version>
<executions>
<execution>
<phase>deploy</phase>
<goals>
<goal>site</goal>
</goals>
</execution>
</executions>
<configuration>
<message>Updated Maven Artifact
Artifact: ${project.artifactId}
Version: ${project.version}
Timestamp: ${maven.build.timestamp}</message>
<outputDirectory>${project.build.directory}/gh-pages</outputDirectory>
<branch>refs/heads/gh-pages</branch>
<merge>true</merge>
<repositoryName>ShopChest</repositoryName>
<repositoryOwner>EpicEricEE</repositoryOwner>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<build>
<plugins>
<plugin>
<groupId>net.md-5</groupId>
<artifactId>scriptus</artifactId>
<version>0.2</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>describe</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptionProperty>version.git</descriptionProperty>
<format>%s</format>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>doclint-java8</id>
<properties>
<javadoc.opts>-Xdoclint:none</javadoc.opts>
</properties>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam />
</configuration>
</execution>
</executions>
<configuration>
<additionalparam />
</configuration>
</plugin>
</plugins>
</build>
<properties>
<version.final>${version.number}</version.final>
</properties>
</profile>
</profiles>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>vault-repo</id>
<url>http://nexus.hc.to/content/repositories/pub_releases/</url>
</repository>
<repository>
<id>bstats-repo</id>
<url>http://repo.bstats.org/content/repositories/releases/</url>
</repository>
<repository>
<id>xephi-repo</id>
<url>http://ci.xephi.fr/plugin/repository/everything/</url>
</repository>
<repository>
<id>sk89q-repo</id>
<url>http://maven.sk89q.com/artifactory/repo/</url>
</repository>
<repository>
<id>athion-repo</id>
<url>http://ci.athion.net/job/PlotSquared/ws/mvn/</url>
</repository>
<repository>
<id>uskyblock-repo</id>
<url>https://raw.github.com/rlf/uSkyBlock/mvn-repo/</url>
</repository>
<repository>
<id>tastybento-repo</id>
<url>http://dl.bintray.com/tastybento/maven-repo</url>
</repository>
<repository>
<id>jitpack-repo</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.12-pre5-SNAPSHOT</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>commons-lang</artifactId>
<groupId>commons-lang</groupId>
</exclusion>
<exclusion>
<artifactId>json-simple</artifactId>
<groupId>com.googlecode.json-simple</groupId>
</exclusion>
<exclusion>
<artifactId>guava</artifactId>
<groupId>com.google.guava</groupId>
</exclusion>
<exclusion>
<artifactId>gson</artifactId>
<groupId>com.google.code.gson</groupId>
</exclusion>
<exclusion>
<artifactId>snakeyaml</artifactId>
<groupId>org.yaml</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>fr.xephi</groupId>
<artifactId>authme</artifactId>
<version>5.2</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>PBKDF2</artifactId>
<groupId>de.rtner</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.plotsquared</groupId>
<artifactId>plotsquared-api</artifactId>
<version>latest</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>worldedit-core</artifactId>
<groupId>com.sk89q.worldedit</groupId>
</exclusion>
<exclusion>
<artifactId>guava</artifactId>
<groupId>com.google.guava</groupId>
</exclusion>
<exclusion>
<artifactId>snakeyaml</artifactId>
<groupId>org.yaml</groupId>
</exclusion>
<exclusion>
<artifactId>gson</artifactId>
<groupId>com.google.code.gson</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.github.rlf</groupId>
<artifactId>uSkyBlock-API</artifactId>
<version>2.6.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.wasteofplastic</groupId>
<artifactId>askyblock</artifactId>
<version>3.0.6.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.TechFortress</groupId>
<artifactId>GriefPrevention</artifactId>
<version>16.6</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>worldedit-bukkit</artifactId>
<groupId>com.sk89q.worldedit</groupId>
</exclusion>
<exclusion>
<artifactId>json-simple</artifactId>
<groupId>com.googlecode.json-simple</groupId>
</exclusion>
<exclusion>
<artifactId>guava</artifactId>
<groupId>com.google.guava</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.palmergames</groupId>
<artifactId>Towny</artifactId>
<version>0.91.4.0</version>
<scope>system</scope>
<systemPath>C:\Users\ericb\Documents\GitHub\ShopChest/lib/Towny-0.91.4.0.jar</systemPath>
</dependency>
<dependency>
<groupId>pl.gnacik</groupId>
<artifactId>IslandWorld</artifactId>
<version>7.0</version>
<scope>system</scope>
<systemPath>C:\Users\ericb\Documents\GitHub\ShopChest/lib/IslandWorld-7.0.jar</systemPath>
</dependency>
<dependency>
<groupId>com.sk89q</groupId>
<artifactId>worldguard</artifactId>
<version>6.1.3-SNAPSHOT</version>
<scope>system</scope>
<systemPath>C:\Users\ericb\Documents\GitHub\ShopChest/lib/worldguard-6.1.3-SNAPSHOT.jar</systemPath>
</dependency>
<dependency>
<groupId>me.wiefferink</groupId>
<artifactId>areashop</artifactId>
<version>2.4.0</version>
<scope>system</scope>
<systemPath>C:\Users\ericb\Documents\GitHub\ShopChest/lib/AreaShop-2.4.0.jar</systemPath>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>internal-maven-repo</id>
<url>file://${project.build.directory}/gh-pages/maven</url>
</repository>
</distributionManagement>
<properties>
<github.global.server>github</github.global.server>
<version.final>${version.number}-${version.git}</version.final>
<version.number>1.12</version.number>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
</project>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:38 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:10 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>All Classes (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
@ -13,58 +13,80 @@
<h1 class="bar">All&nbsp;Classes</h1>
<div class="indexContainer">
<ul>
<li><a href="de/epiceric/shopchest/listeners/AreaShopListener.html" title="class in de.epiceric.shopchest.listeners" target="classFrame">AreaShopListener</a></li>
<li><a href="de/epiceric/shopchest/nms/ArmorStandWrapper.html" title="class in de.epiceric.shopchest.nms" target="classFrame">ArmorStandWrapper</a></li>
<li><a href="de/epiceric/shopchest/listeners/BlockExplodeListener.html" title="class in de.epiceric.shopchest.listeners" target="classFrame">BlockExplodeListener</a></li>
<li><a href="de/epiceric/shopchest/language/BookGenerationName.html" title="class in de.epiceric.shopchest.language" target="classFrame">BookGenerationName</a></li>
<li><a href="de/epiceric/shopchest/utils/Callback.html" title="class in de.epiceric.shopchest.utils" target="classFrame">Callback</a></li>
<li><a href="de/epiceric/shopchest/exceptions/ChestNotFoundException.html" title="class in de.epiceric.shopchest.exceptions" target="classFrame">ChestNotFoundException</a></li>
<li><a href="de/epiceric/shopchest/listeners/ChestProtectListener.html" title="class in de.epiceric.shopchest.listeners" target="classFrame">ChestProtectListener</a></li>
<li><a href="de/epiceric/shopchest/utils/ClickType.html" title="class in de.epiceric.shopchest.utils" target="classFrame">ClickType</a></li>
<li><a href="de/epiceric/shopchest/utils/ClickType.EnumClickType.html" title="enum in de.epiceric.shopchest.utils" target="classFrame">ClickType.EnumClickType</a></li>
<li><a href="de/epiceric/shopchest/config/Config.html" title="class in de.epiceric.shopchest.config" target="classFrame">Config</a></li>
<li><a href="de/epiceric/shopchest/nms/CustomBookMeta.html" title="class in de.epiceric.shopchest.nms" target="classFrame">CustomBookMeta</a></li>
<li><a href="de/epiceric/shopchest/nms/CustomBookMeta.Generation.html" title="enum in de.epiceric.shopchest.nms" target="classFrame">CustomBookMeta.Generation</a></li>
<li><a href="de/epiceric/shopchest/sql/Database.html" title="class in de.epiceric.shopchest.sql" target="classFrame">Database</a></li>
<li><a href="de/epiceric/shopchest/sql/Database.DatabaseType.html" title="enum in de.epiceric.shopchest.sql" target="classFrame">Database.DatabaseType</a></li>
<li><a href="de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql" target="classFrame">Database.ShopInfo</a></li>
<li><a href="de/epiceric/shopchest/language/EnchantmentName.html" title="class in de.epiceric.shopchest.language" target="classFrame">EnchantmentName</a></li>
<li><a href="de/epiceric/shopchest/language/EnchantmentName.EnchantmentLevelName.html" title="class in de.epiceric.shopchest.language" target="classFrame">EnchantmentName.EnchantmentLevelName</a></li>
<li><a href="de/epiceric/shopchest/language/EntityName.html" title="class in de.epiceric.shopchest.language" target="classFrame">EntityName</a></li>
<li><a href="de/epiceric/shopchest/nms/Hologram.html" title="class in de.epiceric.shopchest.nms" target="classFrame">Hologram</a></li>
<li><a href="de/epiceric/shopchest/listeners/HologramUpdateListener.html" title="class in de.epiceric.shopchest.listeners" target="classFrame">HologramUpdateListener</a></li>
<li><a href="de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config" target="classFrame">HologramFormat</a></li>
<li><a href="de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config" target="classFrame">HologramFormat.Requirement</a></li>
<li><a href="de/epiceric/shopchest/language/ItemName.html" title="class in de.epiceric.shopchest.language" target="classFrame">ItemName</a></li>
<li><a href="de/epiceric/shopchest/utils/ItemUtils.html" title="class in de.epiceric.shopchest.utils" target="classFrame">ItemUtils</a></li>
<li><a href="de/epiceric/shopchest/nms/JsonBuilder.html" title="class in de.epiceric.shopchest.nms" target="classFrame">JsonBuilder</a></li>
<li><a href="de/epiceric/shopchest/config/LanguageConfiguration.html" title="class in de.epiceric.shopchest.config" target="classFrame">LanguageConfiguration</a></li>
<li><a href="de/epiceric/shopchest/language/LanguageUtils.html" title="class in de.epiceric.shopchest.language" target="classFrame">LanguageUtils</a></li>
<li><a href="de/epiceric/shopchest/language/LocalizedMessage.html" title="class in de.epiceric.shopchest.language" target="classFrame">LocalizedMessage</a></li>
<li><a href="de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language" target="classFrame">LocalizedMessage.Message</a></li>
<li><a href="de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html" title="class in de.epiceric.shopchest.language" target="classFrame">LocalizedMessage.ReplacedRegex</a></li>
<li><a href="de/epiceric/shopchest/utils/Metrics.html" title="class in de.epiceric.shopchest.utils" target="classFrame">Metrics</a></li>
<li><a href="de/epiceric/shopchest/utils/Metrics.Graph.html" title="class in de.epiceric.shopchest.utils" target="classFrame">Metrics.Graph</a></li>
<li><a href="de/epiceric/shopchest/utils/Metrics.Plotter.html" title="class in de.epiceric.shopchest.utils" target="classFrame">Metrics.Plotter</a></li>
<li><a href="de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html" title="class in de.epiceric.shopchest.language" target="classFrame">LocalizedMessage.ReplacedPlaceholder</a></li>
<li><a href="de/epiceric/shopchest/language/MusicDiscName.html" title="class in de.epiceric.shopchest.language" target="classFrame">MusicDiscName</a></li>
<li><a href="de/epiceric/shopchest/sql/MySQL.html" title="class in de.epiceric.shopchest.sql" target="classFrame">MySQL</a></li>
<li><a href="de/epiceric/shopchest/listeners/NotifyUpdateOnJoinListener.html" title="class in de.epiceric.shopchest.listeners" target="classFrame">NotifyUpdateOnJoinListener</a></li>
<li><a href="de/epiceric/shopchest/exceptions/NotEnoughSpaceException.html" title="class in de.epiceric.shopchest.exceptions" target="classFrame">NotEnoughSpaceException</a></li>
<li><a href="de/epiceric/shopchest/listeners/NotifyPlayerOnJoinListener.html" title="class in de.epiceric.shopchest.listeners" target="classFrame">NotifyPlayerOnJoinListener</a></li>
<li><a href="de/epiceric/shopchest/utils/Permissions.html" title="class in de.epiceric.shopchest.utils" target="classFrame">Permissions</a></li>
<li><a href="de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config" target="classFrame">Placeholder</a></li>
<li><a href="de/epiceric/shopchest/external/PlotSquaredShopFlag.html" title="class in de.epiceric.shopchest.external" target="classFrame">PlotSquaredShopFlag</a></li>
<li><a href="de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external" target="classFrame">PlotSquaredShopFlag.Group</a></li>
<li><a href="de/epiceric/shopchest/language/PotionEffectName.html" title="class in de.epiceric.shopchest.language" target="classFrame">PotionEffectName</a></li>
<li><a href="de/epiceric/shopchest/language/PotionName.html" title="class in de.epiceric.shopchest.language" target="classFrame">PotionName</a></li>
<li><a href="de/epiceric/shopchest/language/PotionName.PotionItemType.html" title="enum in de.epiceric.shopchest.language" target="classFrame">PotionName.PotionItemType</a></li>
<li><a href="de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config" target="classFrame">Regex</a></li>
<li><a href="de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop" target="classFrame">Shop</a></li>
<li><a href="de/epiceric/shopchest/shop/Shop.ShopType.html" title="enum in de.epiceric.shopchest.shop" target="classFrame">Shop.ShopType</a></li>
<li><a href="de/epiceric/shopchest/event/ShopBuySellEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopBuySellEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopBuySellEvent.Type.html" title="enum in de.epiceric.shopchest.event" target="classFrame">ShopBuySellEvent.Type</a></li>
<li><a href="de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest" target="classFrame">ShopChest</a></li>
<li><a href="de/epiceric/shopchest/command/ShopCommand.html" title="class in de.epiceric.shopchest.command" target="classFrame">ShopCommand</a></li>
<li><a href="de/epiceric/shopchest/event/ShopCreateEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopCreateEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopInfoEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopInfoEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopInitializedEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopInitializedEvent</a></li>
<li><a href="de/epiceric/shopchest/listeners/ShopInteractListener.html" title="class in de.epiceric.shopchest.listeners" target="classFrame">ShopInteractListener</a></li>
<li><a href="de/epiceric/shopchest/shop/ShopItem.html" title="class in de.epiceric.shopchest.shop" target="classFrame">ShopItem</a></li>
<li><a href="de/epiceric/shopchest/listeners/ShopItemListener.html" title="class in de.epiceric.shopchest.listeners" target="classFrame">ShopItemListener</a></li>
<li><a href="de/epiceric/shopchest/event/ShopOpenEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopOpenEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopPreCreateEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopPreCreateEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopPreInfoEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopPreInfoEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopPreOpenEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopPreOpenEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopPreRemoveEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopPreRemoveEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopReloadEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopReloadEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopRemoveAllEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopRemoveAllEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopRemoveEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopRemoveEvent</a></li>
<li><a href="de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command" target="classFrame">ShopSubCommand</a></li>
<li><a href="de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopUpdateEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event" target="classFrame">ShopUpdateEvent.UpdateQuality</a></li>
<li><a href="de/epiceric/shopchest/listeners/ShopUpdateListener.html" title="class in de.epiceric.shopchest.listeners" target="classFrame">ShopUpdateListener</a></li>
<li><a href="de/epiceric/shopchest/utils/ShopUpdater.html" title="class in de.epiceric.shopchest.utils" target="classFrame">ShopUpdater</a></li>
<li><a href="de/epiceric/shopchest/utils/ShopUtils.html" title="class in de.epiceric.shopchest.utils" target="classFrame">ShopUtils</a></li>
<li><a href="de/epiceric/shopchest/nms/SpawnEggMeta.html" title="class in de.epiceric.shopchest.nms" target="classFrame">SpawnEggMeta</a></li>
<li><a href="de/epiceric/shopchest/sql/SQLite.html" title="class in de.epiceric.shopchest.sql" target="classFrame">SQLite</a></li>
<li><a href="de/epiceric/shopchest/utils/UpdateChecker.html" title="class in de.epiceric.shopchest.utils" target="classFrame">UpdateChecker</a></li>
<li><a href="de/epiceric/shopchest/utils/UpdateChecker.UpdateCheckerResult.html" title="enum in de.epiceric.shopchest.utils" target="classFrame">UpdateChecker.UpdateCheckerResult</a></li>
<li><a href="de/epiceric/shopchest/utils/Utils.html" title="class in de.epiceric.shopchest.utils" target="classFrame">Utils</a></li>
<li><a href="de/epiceric/shopchest/listeners/WorldGuardListener.html" title="class in de.epiceric.shopchest.listeners" target="classFrame">WorldGuardListener</a></li>
<li><a href="de/epiceric/shopchest/external/WorldGuardShopFlag.html" title="class in de.epiceric.shopchest.external" target="classFrame">WorldGuardShopFlag</a></li>
<li><a href="de/epiceric/shopchest/exceptions/WorldNotFoundException.html" title="class in de.epiceric.shopchest.exceptions" target="classFrame">WorldNotFoundException</a></li>
</ul>
</div>
</body>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:38 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:10 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>All Classes (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
@ -13,58 +13,80 @@
<h1 class="bar">All&nbsp;Classes</h1>
<div class="indexContainer">
<ul>
<li><a href="de/epiceric/shopchest/listeners/AreaShopListener.html" title="class in de.epiceric.shopchest.listeners">AreaShopListener</a></li>
<li><a href="de/epiceric/shopchest/nms/ArmorStandWrapper.html" title="class in de.epiceric.shopchest.nms">ArmorStandWrapper</a></li>
<li><a href="de/epiceric/shopchest/listeners/BlockExplodeListener.html" title="class in de.epiceric.shopchest.listeners">BlockExplodeListener</a></li>
<li><a href="de/epiceric/shopchest/language/BookGenerationName.html" title="class in de.epiceric.shopchest.language">BookGenerationName</a></li>
<li><a href="de/epiceric/shopchest/utils/Callback.html" title="class in de.epiceric.shopchest.utils">Callback</a></li>
<li><a href="de/epiceric/shopchest/exceptions/ChestNotFoundException.html" title="class in de.epiceric.shopchest.exceptions">ChestNotFoundException</a></li>
<li><a href="de/epiceric/shopchest/listeners/ChestProtectListener.html" title="class in de.epiceric.shopchest.listeners">ChestProtectListener</a></li>
<li><a href="de/epiceric/shopchest/utils/ClickType.html" title="class in de.epiceric.shopchest.utils">ClickType</a></li>
<li><a href="de/epiceric/shopchest/utils/ClickType.EnumClickType.html" title="enum in de.epiceric.shopchest.utils">ClickType.EnumClickType</a></li>
<li><a href="de/epiceric/shopchest/config/Config.html" title="class in de.epiceric.shopchest.config">Config</a></li>
<li><a href="de/epiceric/shopchest/nms/CustomBookMeta.html" title="class in de.epiceric.shopchest.nms">CustomBookMeta</a></li>
<li><a href="de/epiceric/shopchest/nms/CustomBookMeta.Generation.html" title="enum in de.epiceric.shopchest.nms">CustomBookMeta.Generation</a></li>
<li><a href="de/epiceric/shopchest/sql/Database.html" title="class in de.epiceric.shopchest.sql">Database</a></li>
<li><a href="de/epiceric/shopchest/sql/Database.DatabaseType.html" title="enum in de.epiceric.shopchest.sql">Database.DatabaseType</a></li>
<li><a href="de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a></li>
<li><a href="de/epiceric/shopchest/language/EnchantmentName.html" title="class in de.epiceric.shopchest.language">EnchantmentName</a></li>
<li><a href="de/epiceric/shopchest/language/EnchantmentName.EnchantmentLevelName.html" title="class in de.epiceric.shopchest.language">EnchantmentName.EnchantmentLevelName</a></li>
<li><a href="de/epiceric/shopchest/language/EntityName.html" title="class in de.epiceric.shopchest.language">EntityName</a></li>
<li><a href="de/epiceric/shopchest/nms/Hologram.html" title="class in de.epiceric.shopchest.nms">Hologram</a></li>
<li><a href="de/epiceric/shopchest/listeners/HologramUpdateListener.html" title="class in de.epiceric.shopchest.listeners">HologramUpdateListener</a></li>
<li><a href="de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config">HologramFormat</a></li>
<li><a href="de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a></li>
<li><a href="de/epiceric/shopchest/language/ItemName.html" title="class in de.epiceric.shopchest.language">ItemName</a></li>
<li><a href="de/epiceric/shopchest/utils/ItemUtils.html" title="class in de.epiceric.shopchest.utils">ItemUtils</a></li>
<li><a href="de/epiceric/shopchest/nms/JsonBuilder.html" title="class in de.epiceric.shopchest.nms">JsonBuilder</a></li>
<li><a href="de/epiceric/shopchest/config/LanguageConfiguration.html" title="class in de.epiceric.shopchest.config">LanguageConfiguration</a></li>
<li><a href="de/epiceric/shopchest/language/LanguageUtils.html" title="class in de.epiceric.shopchest.language">LanguageUtils</a></li>
<li><a href="de/epiceric/shopchest/language/LocalizedMessage.html" title="class in de.epiceric.shopchest.language">LocalizedMessage</a></li>
<li><a href="de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a></li>
<li><a href="de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html" title="class in de.epiceric.shopchest.language">LocalizedMessage.ReplacedRegex</a></li>
<li><a href="de/epiceric/shopchest/utils/Metrics.html" title="class in de.epiceric.shopchest.utils">Metrics</a></li>
<li><a href="de/epiceric/shopchest/utils/Metrics.Graph.html" title="class in de.epiceric.shopchest.utils">Metrics.Graph</a></li>
<li><a href="de/epiceric/shopchest/utils/Metrics.Plotter.html" title="class in de.epiceric.shopchest.utils">Metrics.Plotter</a></li>
<li><a href="de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html" title="class in de.epiceric.shopchest.language">LocalizedMessage.ReplacedPlaceholder</a></li>
<li><a href="de/epiceric/shopchest/language/MusicDiscName.html" title="class in de.epiceric.shopchest.language">MusicDiscName</a></li>
<li><a href="de/epiceric/shopchest/sql/MySQL.html" title="class in de.epiceric.shopchest.sql">MySQL</a></li>
<li><a href="de/epiceric/shopchest/listeners/NotifyUpdateOnJoinListener.html" title="class in de.epiceric.shopchest.listeners">NotifyUpdateOnJoinListener</a></li>
<li><a href="de/epiceric/shopchest/exceptions/NotEnoughSpaceException.html" title="class in de.epiceric.shopchest.exceptions">NotEnoughSpaceException</a></li>
<li><a href="de/epiceric/shopchest/listeners/NotifyPlayerOnJoinListener.html" title="class in de.epiceric.shopchest.listeners">NotifyPlayerOnJoinListener</a></li>
<li><a href="de/epiceric/shopchest/utils/Permissions.html" title="class in de.epiceric.shopchest.utils">Permissions</a></li>
<li><a href="de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a></li>
<li><a href="de/epiceric/shopchest/external/PlotSquaredShopFlag.html" title="class in de.epiceric.shopchest.external">PlotSquaredShopFlag</a></li>
<li><a href="de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a></li>
<li><a href="de/epiceric/shopchest/language/PotionEffectName.html" title="class in de.epiceric.shopchest.language">PotionEffectName</a></li>
<li><a href="de/epiceric/shopchest/language/PotionName.html" title="class in de.epiceric.shopchest.language">PotionName</a></li>
<li><a href="de/epiceric/shopchest/language/PotionName.PotionItemType.html" title="enum in de.epiceric.shopchest.language">PotionName.PotionItemType</a></li>
<li><a href="de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a></li>
<li><a href="de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a></li>
<li><a href="de/epiceric/shopchest/shop/Shop.ShopType.html" title="enum in de.epiceric.shopchest.shop">Shop.ShopType</a></li>
<li><a href="de/epiceric/shopchest/event/ShopBuySellEvent.html" title="class in de.epiceric.shopchest.event">ShopBuySellEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopBuySellEvent.Type.html" title="enum in de.epiceric.shopchest.event">ShopBuySellEvent.Type</a></li>
<li><a href="de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a></li>
<li><a href="de/epiceric/shopchest/command/ShopCommand.html" title="class in de.epiceric.shopchest.command">ShopCommand</a></li>
<li><a href="de/epiceric/shopchest/event/ShopCreateEvent.html" title="class in de.epiceric.shopchest.event">ShopCreateEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopInfoEvent.html" title="class in de.epiceric.shopchest.event">ShopInfoEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopInitializedEvent.html" title="class in de.epiceric.shopchest.event">ShopInitializedEvent</a></li>
<li><a href="de/epiceric/shopchest/listeners/ShopInteractListener.html" title="class in de.epiceric.shopchest.listeners">ShopInteractListener</a></li>
<li><a href="de/epiceric/shopchest/shop/ShopItem.html" title="class in de.epiceric.shopchest.shop">ShopItem</a></li>
<li><a href="de/epiceric/shopchest/listeners/ShopItemListener.html" title="class in de.epiceric.shopchest.listeners">ShopItemListener</a></li>
<li><a href="de/epiceric/shopchest/event/ShopOpenEvent.html" title="class in de.epiceric.shopchest.event">ShopOpenEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopPreCreateEvent.html" title="class in de.epiceric.shopchest.event">ShopPreCreateEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopPreInfoEvent.html" title="class in de.epiceric.shopchest.event">ShopPreInfoEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopPreOpenEvent.html" title="class in de.epiceric.shopchest.event">ShopPreOpenEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopPreRemoveEvent.html" title="class in de.epiceric.shopchest.event">ShopPreRemoveEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopReloadEvent.html" title="class in de.epiceric.shopchest.event">ShopReloadEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopRemoveAllEvent.html" title="class in de.epiceric.shopchest.event">ShopRemoveAllEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopRemoveEvent.html" title="class in de.epiceric.shopchest.event">ShopRemoveEvent</a></li>
<li><a href="de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command">ShopSubCommand</a></li>
<li><a href="de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event">ShopUpdateEvent</a></li>
<li><a href="de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a></li>
<li><a href="de/epiceric/shopchest/listeners/ShopUpdateListener.html" title="class in de.epiceric.shopchest.listeners">ShopUpdateListener</a></li>
<li><a href="de/epiceric/shopchest/utils/ShopUpdater.html" title="class in de.epiceric.shopchest.utils">ShopUpdater</a></li>
<li><a href="de/epiceric/shopchest/utils/ShopUtils.html" title="class in de.epiceric.shopchest.utils">ShopUtils</a></li>
<li><a href="de/epiceric/shopchest/nms/SpawnEggMeta.html" title="class in de.epiceric.shopchest.nms">SpawnEggMeta</a></li>
<li><a href="de/epiceric/shopchest/sql/SQLite.html" title="class in de.epiceric.shopchest.sql">SQLite</a></li>
<li><a href="de/epiceric/shopchest/utils/UpdateChecker.html" title="class in de.epiceric.shopchest.utils">UpdateChecker</a></li>
<li><a href="de/epiceric/shopchest/utils/UpdateChecker.UpdateCheckerResult.html" title="enum in de.epiceric.shopchest.utils">UpdateChecker.UpdateCheckerResult</a></li>
<li><a href="de/epiceric/shopchest/utils/Utils.html" title="class in de.epiceric.shopchest.utils">Utils</a></li>
<li><a href="de/epiceric/shopchest/listeners/WorldGuardListener.html" title="class in de.epiceric.shopchest.listeners">WorldGuardListener</a></li>
<li><a href="de/epiceric/shopchest/external/WorldGuardShopFlag.html" title="class in de.epiceric.shopchest.external">WorldGuardShopFlag</a></li>
<li><a href="de/epiceric/shopchest/exceptions/WorldNotFoundException.html" title="class in de.epiceric.shopchest.exceptions">WorldNotFoundException</a></li>
</ul>
</div>
</body>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Constant Field Values (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Constant Field Values (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Constant Field Values (ShopChest 1.10.4 API)";
parent.document.title="Constant Field Values (ShopChest 1.12 API)";
}
}
catch(err) {
@ -73,6 +73,154 @@
<div class="header">
<h1 title="Constant Field Values" class="title">Constant Field Values</h1>
<h2 title="Contents">Contents</h2>
<ul>
<li><a href="#de.epiceric">de.epiceric.*</a></li>
</ul>
</div>
<div class="constantValuesContainer"><a name="de.epiceric">
<!-- -->
</a>
<h2 title="de.epiceric">de.epiceric.*</h2>
<ul class="blockList">
<li class="blockList">
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values">
<caption><span>de.epiceric.shopchest.utils.<a href="de/epiceric/shopchest/utils/Permissions.html" title="class in de.epiceric.shopchest.utils">Permissions</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th scope="col">Constant Field</th>
<th class="colLast" scope="col">Value</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.BUY">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#BUY">BUY</a></code></td>
<td class="colLast"><code>"shopchest.buy"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.BYPASS_EXTERNAL_PLUGIN">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#BYPASS_EXTERNAL_PLUGIN">BYPASS_EXTERNAL_PLUGIN</a></code></td>
<td class="colLast"><code>"shopchest.external.bypass"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.CONFIG">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#CONFIG">CONFIG</a></code></td>
<td class="colLast"><code>"shopchest.config"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.CREATE">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#CREATE">CREATE</a></code></td>
<td class="colLast"><code>"shopchest.create"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.CREATE_ADMIN">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#CREATE_ADMIN">CREATE_ADMIN</a></code></td>
<td class="colLast"><code>"shopchest.create.admin"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.CREATE_BUY">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#CREATE_BUY">CREATE_BUY</a></code></td>
<td class="colLast"><code>"shopchest.create.buy"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.CREATE_PROTECTED">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#CREATE_PROTECTED">CREATE_PROTECTED</a></code></td>
<td class="colLast"><code>"shopchest.create.protected"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.CREATE_SELL">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#CREATE_SELL">CREATE_SELL</a></code></td>
<td class="colLast"><code>"shopchest.create.sell"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.EXTEND_OTHER">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#EXTEND_OTHER">EXTEND_OTHER</a></code></td>
<td class="colLast"><code>"shopchest.extend.other"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.EXTEND_PROTECTED">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#EXTEND_PROTECTED">EXTEND_PROTECTED</a></code></td>
<td class="colLast"><code>"shopchest.extend.protected"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.NO_LIMIT">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#NO_LIMIT">NO_LIMIT</a></code></td>
<td class="colLast"><code>"shopchest.limit.*"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.OPEN_OTHER">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#OPEN_OTHER">OPEN_OTHER</a></code></td>
<td class="colLast"><code>"shopchest.openOther"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.RELOAD">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#RELOAD">RELOAD</a></code></td>
<td class="colLast"><code>"shopchest.reload"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.REMOVE_ADMIN">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#REMOVE_ADMIN">REMOVE_ADMIN</a></code></td>
<td class="colLast"><code>"shopchest.remove.admin"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.REMOVE_OTHER">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#REMOVE_OTHER">REMOVE_OTHER</a></code></td>
<td class="colLast"><code>"shopchest.remove.other"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.SELL">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#SELL">SELL</a></code></td>
<td class="colLast"><code>"shopchest.sell"</code></td>
</tr>
<tr class="altColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.UPDATE">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#UPDATE">UPDATE</a></code></td>
<td class="colLast"><code>"shopchest.update"</code></td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a name="de.epiceric.shopchest.utils.Permissions.UPDATE_NOTIFICATION">
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td><code><a href="de/epiceric/shopchest/utils/Permissions.html#UPDATE_NOTIFICATION">UPDATE_NOTIFICATION</a></code></td>
<td class="colLast"><code>"shopchest.notification.update"</code></td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
@ -121,6 +269,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:35 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopChest (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>ShopChest (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
@ -13,13 +13,13 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopChest (ShopChest 1.10.4 API)";
parent.document.title="ShopChest (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":9,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10};
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":9,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -162,92 +162,152 @@ extends org.bukkit.plugin.java.JavaPlugin</pre>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/io/Reader.html?is-external=true" title="class or interface in java.io">Reader</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#Z:Z_getTextResource-java.lang.String-">_getTextResource</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;file)</code>
<div class="block">Provides a reader for a text file located inside the jar.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#debug-java.lang.String-">debug</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Print a message to the <i>/plugins/ShopChest/debug.txt</i> file</div>
</td>
</tr>
<tr id="i2" class="altColor">
<tr id="i1" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#debug-java.lang.Throwable-">debug</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;throwable)</code>
<div class="block">Print a <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>'s stacktrace to the <i>/plugins/ShopChest/debug.txt</i> file</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<tr id="i2" class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#getDownloadLink--">getDownloadLink</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i4" class="altColor">
<tr id="i3" class="rowColor">
<td class="colFirst"><code>net.milkbowl.vault.economy.Economy</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#getEconomy--">getEconomy</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>me.ryanhamshire.GriefPrevention.GriefPrevention</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#getGriefPrevention--">getGriefPrevention</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code><a href="../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config">HologramFormat</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#getHologramFormat--">getHologramFormat</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>static <a href="../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#getInstance--">getInstance</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i6" class="altColor">
<tr id="i7" class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#getLatestVersion--">getLatestVersion</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>net.milkbowl.vault.permission.Permission</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#getPermission--">getPermission</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code><a href="../../../de/epiceric/shopchest/config/Config.html" title="class in de.epiceric.shopchest.config">Config</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#getShopChestConfig--">getShopChestConfig</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code><a href="../../../de/epiceric/shopchest/command/ShopCommand.html" title="class in de.epiceric.shopchest.command">ShopCommand</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#getShopCommand--">getShopCommand</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><code><a href="../../../de/epiceric/shopchest/sql/Database.html" title="class in de.epiceric.shopchest.sql">Database</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#getShopDatabase--">getShopDatabase</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i10" class="altColor">
<tr id="i11" class="rowColor">
<td class="colFirst"><code><a href="../../../de/epiceric/shopchest/utils/ShopUtils.html" title="class in de.epiceric.shopchest.utils">ShopUtils</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#getShopUtils--">getShopUtils</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i11" class="rowColor">
<tr id="i12" class="altColor">
<td class="colFirst"><code><a href="../../../de/epiceric/shopchest/utils/ShopUpdater.html" title="class in de.epiceric.shopchest.utils">ShopUpdater</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#getUpdater--">getUpdater</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i13" class="rowColor">
<td class="colFirst"><code>us.talabrek.ultimateskyblock.api.uSkyBlockAPI</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#getUSkyBlock--">getUSkyBlock</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i14" class="altColor">
<td class="colFirst"><code>com.sk89q.worldguard.bukkit.WorldGuardPlugin</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#getWorldGuard--">getWorldGuard</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i15" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#hasAreaShop--">hasAreaShop</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i16" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#hasASkyBlock--">hasASkyBlock</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i17" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#hasAuthMe--">hasAuthMe</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i18" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#hasGriefPrevention--">hasGriefPrevention</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i19" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#hasIslandWorld--">hasIslandWorld</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i20" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#hasPlotSquared--">hasPlotSquared</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i21" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#hasTowny--">hasTowny</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i22" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#hasUSkyBlock--">hasUSkyBlock</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i23" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#hasWorldGuard--">hasWorldGuard</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i24" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#isUpdateNeeded--">isUpdateNeeded</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i12" class="altColor">
<tr id="i25" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#onDisable--">onDisable</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i13" class="rowColor">
<tr id="i26" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#onEnable--">onEnable</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i14" class="altColor">
<tr id="i27" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#onLoad--">onLoad</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i28" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#setDownloadLink-java.lang.String-">setDownloadLink</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;downloadLink)</code>
<div class="block">Set the download Link of the latest version (will return null if not checked or if no update is available)</div>
</td>
</tr>
<tr id="i15" class="rowColor">
<tr id="i29" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#setLatestVersion-java.lang.String-">setLatestVersion</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;latestVersion)</code>
<div class="block">Set the latest version</div>
</td>
</tr>
<tr id="i16" class="altColor">
<tr id="i30" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#setUpdateNeeded-boolean-">setUpdateNeeded</a></span>(boolean&nbsp;isUpdateNeeded)</code>
<div class="block">Set whether an update is needed</div>
</td>
</tr>
<tr id="i31" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../de/epiceric/shopchest/ShopChest.html#setUpdater-de.epiceric.shopchest.utils.ShopUpdater-">setUpdater</a></span>(<a href="../../../de/epiceric/shopchest/utils/ShopUpdater.html" title="class in de.epiceric.shopchest.utils">ShopUpdater</a>&nbsp;updater)</code>
<div class="block">Set the <a href="../../../de/epiceric/shopchest/utils/ShopUpdater.html" title="class in de.epiceric.shopchest.utils"><code>ShopUpdater</code></a> that schedules hologram and item updates</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.bukkit.plugin.java.JavaPlugin">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.bukkit.plugin.java.JavaPlugin</h3>
<code>getClassLoader, getCommand, getConfig, getDatabase, getDatabaseClasses, getDataFolder, getDefaultWorldGenerator, getDescription, getFile, getLogger, getPlugin, getPluginLoader, getProvidingPlugin, getResource, getServer, getTextResource, initialize, installDDL, isEnabled, isInitialized, isNaggable, onCommand, onLoad, onTabComplete, reloadConfig, removeDDL, saveConfig, saveDefaultConfig, saveResource, setEnabled, setNaggable, toString</code></li>
<code>getClassLoader, getCommand, getConfig, getDataFolder, getDefaultWorldGenerator, getDescription, getFile, getLogger, getPlugin, getPluginLoader, getProvidingPlugin, getResource, getServer, getTextResource, isEnabled, isNaggable, onCommand, onTabComplete, reloadConfig, saveConfig, saveDefaultConfig, saveResource, setEnabled, setNaggable, toString</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.bukkit.plugin.PluginBase">
@ -307,6 +367,21 @@ extends org.bukkit.plugin.java.JavaPlugin</pre>
</dl>
</li>
</ul>
<a name="onLoad--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onLoad</h4>
<pre>public&nbsp;void&nbsp;onLoad()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>onLoad</code>&nbsp;in interface&nbsp;<code>org.bukkit.plugin.Plugin</code></dd>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code>onLoad</code>&nbsp;in class&nbsp;<code>org.bukkit.plugin.java.JavaPlugin</code></dd>
</dl>
</li>
</ul>
<a name="onEnable--">
<!-- -->
</a>
@ -365,6 +440,203 @@ extends org.bukkit.plugin.java.JavaPlugin</pre>
</dl>
</li>
</ul>
<a name="getHologramFormat--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHologramFormat</h4>
<pre>public&nbsp;<a href="../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config">HologramFormat</a>&nbsp;getHologramFormat()</pre>
</li>
</ul>
<a name="getShopCommand--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getShopCommand</h4>
<pre>public&nbsp;<a href="../../../de/epiceric/shopchest/command/ShopCommand.html" title="class in de.epiceric.shopchest.command">ShopCommand</a>&nbsp;getShopCommand()</pre>
</li>
</ul>
<a name="getUpdater--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getUpdater</h4>
<pre>public&nbsp;<a href="../../../de/epiceric/shopchest/utils/ShopUpdater.html" title="class in de.epiceric.shopchest.utils">ShopUpdater</a>&nbsp;getUpdater()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The <a href="../../../de/epiceric/shopchest/utils/ShopUpdater.html" title="class in de.epiceric.shopchest.utils"><code>ShopUpdater</code></a> that schedules hologram and item updates</dd>
</dl>
</li>
</ul>
<a name="setUpdater-de.epiceric.shopchest.utils.ShopUpdater-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setUpdater</h4>
<pre>public&nbsp;void&nbsp;setUpdater(<a href="../../../de/epiceric/shopchest/utils/ShopUpdater.html" title="class in de.epiceric.shopchest.utils">ShopUpdater</a>&nbsp;updater)</pre>
<div class="block">Set the <a href="../../../de/epiceric/shopchest/utils/ShopUpdater.html" title="class in de.epiceric.shopchest.utils"><code>ShopUpdater</code></a> that schedules hologram and item updates</div>
</li>
</ul>
<a name="hasAreaShop--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasAreaShop</h4>
<pre>public&nbsp;boolean&nbsp;hasAreaShop()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Whether the plugin 'AreaShop' is enabled</dd>
</dl>
</li>
</ul>
<a name="hasGriefPrevention--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasGriefPrevention</h4>
<pre>public&nbsp;boolean&nbsp;hasGriefPrevention()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Whether the plugin 'GriefPrevention' is enabled</dd>
</dl>
</li>
</ul>
<a name="getGriefPrevention--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getGriefPrevention</h4>
<pre>public&nbsp;me.ryanhamshire.GriefPrevention.GriefPrevention&nbsp;getGriefPrevention()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>An instance of <code>GriefPrevention</code> or <code>null</code> if GriefPrevention is not enabled</dd>
</dl>
</li>
</ul>
<a name="hasIslandWorld--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasIslandWorld</h4>
<pre>public&nbsp;boolean&nbsp;hasIslandWorld()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Whether the plugin 'IslandWorld' is enabled</dd>
</dl>
</li>
</ul>
<a name="hasASkyBlock--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasASkyBlock</h4>
<pre>public&nbsp;boolean&nbsp;hasASkyBlock()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Whether the plugin 'ASkyBlock' is enabled</dd>
</dl>
</li>
</ul>
<a name="hasUSkyBlock--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasUSkyBlock</h4>
<pre>public&nbsp;boolean&nbsp;hasUSkyBlock()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Whether the plugin 'uSkyBlock' is enabled</dd>
</dl>
</li>
</ul>
<a name="getUSkyBlock--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getUSkyBlock</h4>
<pre>public&nbsp;us.talabrek.ultimateskyblock.api.uSkyBlockAPI&nbsp;getUSkyBlock()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>An instance of <code>uSkyBlockAPI</code> or <code>null</code> if uSkyBlock is not enabled</dd>
</dl>
</li>
</ul>
<a name="hasPlotSquared--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasPlotSquared</h4>
<pre>public&nbsp;boolean&nbsp;hasPlotSquared()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Whether the plugin 'PlotSquared' is enabled</dd>
</dl>
</li>
</ul>
<a name="hasAuthMe--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasAuthMe</h4>
<pre>public&nbsp;boolean&nbsp;hasAuthMe()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Whether the plugin 'AuthMe' is enabled</dd>
</dl>
</li>
</ul>
<a name="hasTowny--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasTowny</h4>
<pre>public&nbsp;boolean&nbsp;hasTowny()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Whether the plugin 'Towny' is enabled</dd>
</dl>
</li>
</ul>
<a name="hasWorldGuard--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasWorldGuard</h4>
<pre>public&nbsp;boolean&nbsp;hasWorldGuard()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Whether the plugin 'WorldGuard' is enabled</dd>
</dl>
</li>
</ul>
<a name="getWorldGuard--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getWorldGuard</h4>
<pre>public&nbsp;com.sk89q.worldguard.bukkit.WorldGuardPlugin&nbsp;getWorldGuard()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>An instance of <code>WorldGuardPlugin</code> or <code>null</code> if WorldGuard is not enabled</dd>
</dl>
</li>
</ul>
<a name="getShopUtils--">
<!-- -->
</a>
@ -391,19 +663,6 @@ extends org.bukkit.plugin.java.JavaPlugin</pre>
</dl>
</li>
</ul>
<a name="getPermission--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPermission</h4>
<pre>public&nbsp;net.milkbowl.vault.permission.Permission&nbsp;getPermission()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Registered Permission of Vault</dd>
</dl>
</li>
</ul>
<a name="getShopDatabase--">
<!-- -->
</a>
@ -501,33 +760,13 @@ extends org.bukkit.plugin.java.JavaPlugin</pre>
<a name="getShopChestConfig--">
<!-- -->
</a>
<ul class="blockList">
<ul class="blockListLast">
<li class="blockList">
<h4>getShopChestConfig</h4>
<pre>public&nbsp;<a href="../../../de/epiceric/shopchest/config/Config.html" title="class in de.epiceric.shopchest.config">Config</a>&nbsp;getShopChestConfig()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The <a href="../../../de/epiceric/shopchest/config/Config.html" title="class in de.epiceric.shopchest.config"><code>Config</code></a> of ShopChset</dd>
</dl>
</li>
</ul>
<a name="Z:Z_getTextResource-java.lang.String-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>_getTextResource</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/io/Reader.html?is-external=true" title="class or interface in java.io">Reader</a>&nbsp;_getTextResource(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;file)
throws <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></pre>
<div class="block"><p>Provides a reader for a text file located inside the jar.</p>
The returned reader will read text with the UTF-8 charset.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>file</code> - the filename of the resource to load</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>null if <code>JavaPlugin.getResource(String)</code> returns null</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if file is null</dd>
<dd>The <a href="../../../de/epiceric/shopchest/config/Config.html" title="class in de.epiceric.shopchest.config"><code>Config</code></a> of ShopChest</dd>
</dl>
</li>
</ul>
@ -600,6 +839,6 @@ extends org.bukkit.plugin.java.JavaPlugin</pre>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:10 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.ShopChest (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Class de.epiceric.shopchest.ShopChest (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.ShopChest (ShopChest 1.10.4 API)";
parent.document.title="Uses of Class de.epiceric.shopchest.ShopChest (ShopChest 1.12 API)";
}
}
catch(err) {
@ -88,9 +88,17 @@
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.command">de.epiceric.shopchest.command</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.config">de.epiceric.shopchest.config</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.external">de.epiceric.shopchest.external</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.listeners">de.epiceric.shopchest.listeners</a></td>
<td class="colLast">&nbsp;</td>
@ -134,6 +142,22 @@
</tbody>
</table>
</li>
<li class="blockList"><a name="de.epiceric.shopchest.command">
<!-- -->
</a>
<h3>Uses of <a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a> in <a href="../../../../de/epiceric/shopchest/command/package-summary.html">de.epiceric.shopchest.command</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../../../de/epiceric/shopchest/command/package-summary.html">de.epiceric.shopchest.command</a> with parameters of type <a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/command/ShopCommand.html#ShopCommand-de.epiceric.shopchest.ShopChest-">ShopCommand</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="de.epiceric.shopchest.config">
<!-- -->
</a>
@ -148,7 +172,34 @@
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#Config-de.epiceric.shopchest.ShopChest-">Config</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/LanguageConfiguration.html#LanguageConfiguration-de.epiceric.shopchest.ShopChest-">LanguageConfiguration</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html#HologramFormat-de.epiceric.shopchest.ShopChest-">HologramFormat</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/LanguageConfiguration.html#LanguageConfiguration-de.epiceric.shopchest.ShopChest-boolean-">LanguageConfiguration</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin,
boolean&nbsp;showMessages)</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="de.epiceric.shopchest.external">
<!-- -->
</a>
<h3>Uses of <a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a> in <a href="../../../../de/epiceric/shopchest/external/package-summary.html">de.epiceric.shopchest.external</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../de/epiceric/shopchest/external/package-summary.html">de.epiceric.shopchest.external</a> with parameters of type <a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">PlotSquaredShopFlag.</span><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.html#register-de.epiceric.shopchest.ShopChest-">register</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><span class="typeNameLabel">WorldGuardShopFlag.</span><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/WorldGuardShopFlag.html#register-de.epiceric.shopchest.ShopChest-boolean-">register</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin,
boolean&nbsp;onLoad)</code>&nbsp;</td>
</tr>
</tbody>
</table>
@ -164,16 +215,17 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/listeners/AreaShopListener.html#AreaShopListener-de.epiceric.shopchest.ShopChest-">AreaShopListener</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/listeners/BlockExplodeListener.html#BlockExplodeListener-de.epiceric.shopchest.ShopChest-">BlockExplodeListener</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/listeners/ChestProtectListener.html#ChestProtectListener-de.epiceric.shopchest.ShopChest-">ChestProtectListener</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/listeners/HologramUpdateListener.html#HologramUpdateListener-de.epiceric.shopchest.ShopChest-">HologramUpdateListener</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/listeners/ChestProtectListener.html#ChestProtectListener-de.epiceric.shopchest.ShopChest-com.sk89q.worldguard.bukkit.WorldGuardPlugin-">ChestProtectListener</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin,
com.sk89q.worldguard.bukkit.WorldGuardPlugin&nbsp;worldGuard)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/listeners/NotifyUpdateOnJoinListener.html#NotifyUpdateOnJoinListener-de.epiceric.shopchest.ShopChest-">NotifyUpdateOnJoinListener</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/listeners/NotifyPlayerOnJoinListener.html#NotifyPlayerOnJoinListener-de.epiceric.shopchest.ShopChest-">NotifyPlayerOnJoinListener</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/listeners/ShopInteractListener.html#ShopInteractListener-de.epiceric.shopchest.ShopChest-">ShopInteractListener</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
@ -181,6 +233,12 @@
<tr class="rowColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/listeners/ShopItemListener.html#ShopItemListener-de.epiceric.shopchest.ShopChest-">ShopItemListener</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/listeners/ShopUpdateListener.html#ShopUpdateListener-de.epiceric.shopchest.ShopChest-">ShopUpdateListener</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/listeners/WorldGuardListener.html#WorldGuardListener-de.epiceric.shopchest.ShopChest-">WorldGuardListener</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
@ -209,11 +267,16 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/nms/Hologram.html#Hologram-de.epiceric.shopchest.ShopChest-java.lang.String:A-org.bukkit.Location-">Hologram</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;text,
org.bukkit.Location&nbsp;location)</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/nms/ArmorStandWrapper.html#ArmorStandWrapper-de.epiceric.shopchest.ShopChest-org.bukkit.Location-java.lang.String-">ArmorStandWrapper</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin,
org.bukkit.Location&nbsp;location,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;customName)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/nms/Hologram.html#Hologram-de.epiceric.shopchest.ShopChest-java.lang.String:A-org.bukkit.Location-">Hologram</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;lines,
org.bukkit.Location&nbsp;location)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/nms/JsonBuilder.html#JsonBuilder-de.epiceric.shopchest.ShopChest-java.lang.String-java.lang.String-java.lang.String-">JsonBuilder</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;text,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;hoverText,
@ -243,6 +306,15 @@
<a href="../../../../de/epiceric/shopchest/shop/Shop.ShopType.html" title="enum in de.epiceric.shopchest.shop">Shop.ShopType</a>&nbsp;shopType)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/shop/Shop.html#Shop-de.epiceric.shopchest.ShopChest-org.bukkit.OfflinePlayer-org.bukkit.inventory.ItemStack-org.bukkit.Location-double-double-de.epiceric.shopchest.shop.Shop.ShopType-">Shop</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin,
org.bukkit.OfflinePlayer&nbsp;vendor,
org.bukkit.inventory.ItemStack&nbsp;product,
org.bukkit.Location&nbsp;location,
double&nbsp;buyPrice,
double&nbsp;sellPrice,
<a href="../../../../de/epiceric/shopchest/shop/Shop.ShopType.html" title="enum in de.epiceric.shopchest.shop">Shop.ShopType</a>&nbsp;shopType)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/shop/ShopItem.html#ShopItem-de.epiceric.shopchest.ShopChest-org.bukkit.inventory.ItemStack-org.bukkit.Location-">ShopItem</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin,
org.bukkit.inventory.ItemStack&nbsp;itemStack,
org.bukkit.Location&nbsp;location)</code>&nbsp;</td>
@ -297,6 +369,12 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/utils/Callback.html#Callback-de.epiceric.shopchest.ShopChest-">Callback</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/utils/ShopUpdater.html#ShopUpdater-de.epiceric.shopchest.ShopChest-">ShopUpdater</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/utils/ShopUtils.html#ShopUtils-de.epiceric.shopchest.ShopChest-">ShopUtils</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
@ -356,6 +434,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,299 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopCommand (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopCommand (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ShopCommand.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/command/ShopCommand.html" target="_top">Frames</a></li>
<li><a href="ShopCommand.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.command</div>
<h2 title="Class ShopCommand" class="title">Class ShopCommand</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.command.ShopCommand</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">ShopCommand</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/command/ShopCommand.html#ShopCommand-de.epiceric.shopchest.ShopChest-">ShopCommand</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/command/ShopCommand.html#addSubCommand-de.epiceric.shopchest.command.ShopSubCommand-">addSubCommand</a></span>(<a href="../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command">ShopSubCommand</a>&nbsp;subCommand)</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>org.bukkit.command.PluginCommand</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/command/ShopCommand.html#getCommand--">getCommand</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command">ShopSubCommand</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/command/ShopCommand.html#getSubCommands--">getSubCommands</a></span>()</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ShopCommand-de.epiceric.shopchest.ShopChest-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ShopCommand</h4>
<pre>public&nbsp;ShopCommand(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getCommand--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCommand</h4>
<pre>public&nbsp;org.bukkit.command.PluginCommand&nbsp;getCommand()</pre>
</li>
</ul>
<a name="addSubCommand-de.epiceric.shopchest.command.ShopSubCommand-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addSubCommand</h4>
<pre>public&nbsp;void&nbsp;addSubCommand(<a href="../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command">ShopSubCommand</a>&nbsp;subCommand)</pre>
</li>
</ul>
<a name="getSubCommands--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getSubCommands</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command">ShopSubCommand</a>&gt;&nbsp;getSubCommands()</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ShopCommand.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/command/ShopCommand.html" target="_top">Frames</a></li>
<li><a href="ShopCommand.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,375 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopSubCommand (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopSubCommand (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":6,"i2":10,"i3":10,"i4":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ShopSubCommand.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/command/ShopCommand.html" title="class in de.epiceric.shopchest.command"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li>Next&nbsp;Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/command/ShopSubCommand.html" target="_top">Frames</a></li>
<li><a href="ShopSubCommand.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.command</div>
<h2 title="Class ShopSubCommand" class="title">Class ShopSubCommand</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.command.ShopSubCommand</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public abstract class <span class="typeNameLabel">ShopSubCommand</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/command/ShopSubCommand.html#ShopSubCommand-java.lang.String-boolean-org.bukkit.command.CommandExecutor-org.bukkit.command.TabCompleter-">ShopSubCommand</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name,
boolean&nbsp;playerCommand,
org.bukkit.command.CommandExecutor&nbsp;executor,
org.bukkit.command.TabCompleter&nbsp;tabCompleter)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/command/ShopSubCommand.html#execute-org.bukkit.command.CommandSender-org.bukkit.command.Command-java.lang.String-java.lang.String:A-">execute</a></span>(org.bukkit.command.CommandSender&nbsp;sender,
org.bukkit.command.Command&nbsp;command,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;label,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;args)</code>
<div class="block">Execute the sub command</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>abstract <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/command/ShopSubCommand.html#getHelpMessage-org.bukkit.command.CommandSender-">getHelpMessage</a></span>(org.bukkit.command.CommandSender&nbsp;sender)</code>
<div class="block">Returns the help message for the command.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/command/ShopSubCommand.html#getName--">getName</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/command/ShopSubCommand.html#getTabCompletions-org.bukkit.command.CommandSender-org.bukkit.command.Command-java.lang.String-java.lang.String:A-">getTabCompletions</a></span>(org.bukkit.command.CommandSender&nbsp;sender,
org.bukkit.command.Command&nbsp;command,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;label,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;args)</code>
<div class="block">Returns a list of tab completions for the sub command
The main sub command will be tab completed by ShopChest</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/command/ShopSubCommand.html#isPlayerCommand--">isPlayerCommand</a></span>()</code>
<div class="block">Returns whether the command can only be used by players, not by the console</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ShopSubCommand-java.lang.String-boolean-org.bukkit.command.CommandExecutor-org.bukkit.command.TabCompleter-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ShopSubCommand</h4>
<pre>public&nbsp;ShopSubCommand(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name,
boolean&nbsp;playerCommand,
org.bukkit.command.CommandExecutor&nbsp;executor,
org.bukkit.command.TabCompleter&nbsp;tabCompleter)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getName--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getName</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getName()</pre>
</li>
</ul>
<a name="isPlayerCommand--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isPlayerCommand</h4>
<pre>public&nbsp;boolean&nbsp;isPlayerCommand()</pre>
<div class="block">Returns whether the command can only be used by players, not by the console</div>
</li>
</ul>
<a name="execute-org.bukkit.command.CommandSender-org.bukkit.command.Command-java.lang.String-java.lang.String:A-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>execute</h4>
<pre>public&nbsp;boolean&nbsp;execute(org.bukkit.command.CommandSender&nbsp;sender,
org.bukkit.command.Command&nbsp;command,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;label,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;args)</pre>
<div class="block">Execute the sub command</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>sender</code> - Sender of the command</dd>
<dd><code>args</code> - Arguments of the command (<code>args[0]</code> is the sub command's name)</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Whether the sender should be sent the help message</dd>
</dl>
</li>
</ul>
<a name="getTabCompletions-org.bukkit.command.CommandSender-org.bukkit.command.Command-java.lang.String-java.lang.String:A-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTabCompletions</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;getTabCompletions(org.bukkit.command.CommandSender&nbsp;sender,
org.bukkit.command.Command&nbsp;command,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;label,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;args)</pre>
<div class="block"><p>Returns a list of tab completions for the sub command</p>
The main sub command will be tab completed by ShopChest</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>sender</code> - Sender of the command</dd>
<dd><code>args</code> - Arguments of the command (<code>args[0]</code> is the sub command's name)</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>A list of tab completions (may be an empty list)</dd>
</dl>
</li>
</ul>
<a name="getHelpMessage-org.bukkit.command.CommandSender-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getHelpMessage</h4>
<pre>public abstract&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getHelpMessage(org.bukkit.command.CommandSender&nbsp;sender)</pre>
<div class="block">Returns the help message for the command.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>sender</code> - Sender to receive the help message</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ShopSubCommand.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/command/ShopCommand.html" title="class in de.epiceric.shopchest.command"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li>Next&nbsp;Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/command/ShopSubCommand.html" target="_top">Frames</a></li>
<li><a href="ShopSubCommand.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,166 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.command.ShopCommand (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.command.ShopCommand (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/command/ShopCommand.html" title="class in de.epiceric.shopchest.command">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/command/class-use/ShopCommand.html" target="_top">Frames</a></li>
<li><a href="ShopCommand.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.command.ShopCommand" class="title">Uses of Class<br>de.epiceric.shopchest.command.ShopCommand</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../de/epiceric/shopchest/command/ShopCommand.html" title="class in de.epiceric.shopchest.command">ShopCommand</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest">de.epiceric.shopchest</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="de.epiceric.shopchest">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../de/epiceric/shopchest/command/ShopCommand.html" title="class in de.epiceric.shopchest.command">ShopCommand</a> in <a href="../../../../../de/epiceric/shopchest/package-summary.html">de.epiceric.shopchest</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../de/epiceric/shopchest/package-summary.html">de.epiceric.shopchest</a> that return <a href="../../../../../de/epiceric/shopchest/command/ShopCommand.html" title="class in de.epiceric.shopchest.command">ShopCommand</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../de/epiceric/shopchest/command/ShopCommand.html" title="class in de.epiceric.shopchest.command">ShopCommand</a></code></td>
<td class="colLast"><span class="typeNameLabel">ShopChest.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/ShopChest.html#getShopCommand--">getShopCommand</a></span>()</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/command/ShopCommand.html" title="class in de.epiceric.shopchest.command">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/command/class-use/ShopCommand.html" target="_top">Frames</a></li>
<li><a href="ShopCommand.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.utils.Metrics.Plotter (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Class de.epiceric.shopchest.command.ShopSubCommand (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.utils.Metrics.Plotter (ShopChest 1.10.4 API)";
parent.document.title="Uses of Class de.epiceric.shopchest.command.ShopSubCommand (ShopChest 1.12 API)";
}
}
catch(err) {
@ -34,7 +34,7 @@
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/utils/Metrics.Plotter.html" title="class in de.epiceric.shopchest.utils">Class</a></li>
<li><a href="../../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
@ -48,8 +48,8 @@
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/utils/class-use/Metrics.Plotter.html" target="_top">Frames</a></li>
<li><a href="Metrics.Plotter.html" target="_top">No&nbsp;Frames</a></li>
<li><a href="../../../../../index.html?de/epiceric/shopchest/command/class-use/ShopSubCommand.html" target="_top">Frames</a></li>
<li><a href="ShopSubCommand.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
@ -71,20 +71,20 @@
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.utils.Metrics.Plotter" class="title">Uses of Class<br>de.epiceric.shopchest.utils.Metrics.Plotter</h2>
<h2 title="Uses of Class de.epiceric.shopchest.command.ShopSubCommand" class="title">Uses of Class<br>de.epiceric.shopchest.command.ShopSubCommand</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../de/epiceric/shopchest/utils/Metrics.Plotter.html" title="class in de.epiceric.shopchest.utils">Metrics.Plotter</a></span><span class="tabEnd">&nbsp;</span></caption>
<caption><span>Packages that use <a href="../../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command">ShopSubCommand</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.utils">de.epiceric.shopchest.utils</a></td>
<td class="colFirst"><a href="#de.epiceric.shopchest.command">de.epiceric.shopchest.command</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
@ -92,27 +92,25 @@
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="de.epiceric.shopchest.utils">
<li class="blockList"><a name="de.epiceric.shopchest.command">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../de/epiceric/shopchest/utils/Metrics.Plotter.html" title="class in de.epiceric.shopchest.utils">Metrics.Plotter</a> in <a href="../../../../../de/epiceric/shopchest/utils/package-summary.html">de.epiceric.shopchest.utils</a></h3>
<h3>Uses of <a href="../../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command">ShopSubCommand</a> in <a href="../../../../../de/epiceric/shopchest/command/package-summary.html">de.epiceric.shopchest.command</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../de/epiceric/shopchest/utils/package-summary.html">de.epiceric.shopchest.utils</a> that return types with arguments of type <a href="../../../../../de/epiceric/shopchest/utils/Metrics.Plotter.html" title="class in de.epiceric.shopchest.utils">Metrics.Plotter</a></span><span class="tabEnd">&nbsp;</span></caption>
<caption><span>Methods in <a href="../../../../../de/epiceric/shopchest/command/package-summary.html">de.epiceric.shopchest.command</a> that return types with arguments of type <a href="../../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command">ShopSubCommand</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="../../../../../de/epiceric/shopchest/utils/Metrics.Plotter.html" title="class in de.epiceric.shopchest.utils">Metrics.Plotter</a>&gt;</code></td>
<td class="colLast"><span class="typeNameLabel">Metrics.Graph.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/utils/Metrics.Graph.html#getPlotters--">getPlotters</a></span>()</code>
<div class="block">Gets an <b>unmodifiable</b> set of the plotter objects in the graph</div>
</td>
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command">ShopSubCommand</a>&gt;</code></td>
<td class="colLast"><span class="typeNameLabel">ShopCommand.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/command/ShopCommand.html#getSubCommands--">getSubCommands</a></span>()</code>&nbsp;</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../de/epiceric/shopchest/utils/package-summary.html">de.epiceric.shopchest.utils</a> with parameters of type <a href="../../../../../de/epiceric/shopchest/utils/Metrics.Plotter.html" title="class in de.epiceric.shopchest.utils">Metrics.Plotter</a></span><span class="tabEnd">&nbsp;</span></caption>
<caption><span>Methods in <a href="../../../../../de/epiceric/shopchest/command/package-summary.html">de.epiceric.shopchest.command</a> with parameters of type <a href="../../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command">ShopSubCommand</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
@ -120,15 +118,7 @@
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">Metrics.Graph.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/utils/Metrics.Graph.html#addPlotter-de.epiceric.shopchest.utils.Metrics.Plotter-">addPlotter</a></span>(<a href="../../../../../de/epiceric/shopchest/utils/Metrics.Plotter.html" title="class in de.epiceric.shopchest.utils">Metrics.Plotter</a>&nbsp;plotter)</code>
<div class="block">Add a plotter to the graph, which will be used to plot entries</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">Metrics.Graph.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/utils/Metrics.Graph.html#removePlotter-de.epiceric.shopchest.utils.Metrics.Plotter-">removePlotter</a></span>(<a href="../../../../../de/epiceric/shopchest/utils/Metrics.Plotter.html" title="class in de.epiceric.shopchest.utils">Metrics.Plotter</a>&nbsp;plotter)</code>
<div class="block">Remove a plotter from the graph</div>
</td>
<td class="colLast"><span class="typeNameLabel">ShopCommand.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/command/ShopCommand.html#addSubCommand-de.epiceric.shopchest.command.ShopSubCommand-">addSubCommand</a></span>(<a href="../../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command">ShopSubCommand</a>&nbsp;subCommand)</code>&nbsp;</td>
</tr>
</tbody>
</table>
@ -148,7 +138,7 @@
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/utils/Metrics.Plotter.html" title="class in de.epiceric.shopchest.utils">Class</a></li>
<li><a href="../../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
@ -162,8 +152,8 @@
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/utils/class-use/Metrics.Plotter.html" target="_top">Frames</a></li>
<li><a href="Metrics.Plotter.html" target="_top">No&nbsp;Frames</a></li>
<li><a href="../../../../../index.html?de/epiceric/shopchest/command/class-use/ShopSubCommand.html" target="_top">Frames</a></li>
<li><a href="ShopSubCommand.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
@ -184,6 +174,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,22 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.command (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<h1 class="bar"><a href="../../../../de/epiceric/shopchest/command/package-summary.html" target="classFrame">de.epiceric.shopchest.command</a></h1>
<div class="indexContainer">
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="ShopCommand.html" title="class in de.epiceric.shopchest.command" target="classFrame">ShopCommand</a></li>
<li><a href="ShopSubCommand.html" title="class in de.epiceric.shopchest.command" target="classFrame">ShopSubCommand</a></li>
</ul>
</div>
</body>
</html>

View File

@ -0,0 +1,148 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.command (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="de.epiceric.shopchest.command (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/package-summary.html">Prev&nbsp;Package</a></li>
<li><a href="../../../../de/epiceric/shopchest/config/package-summary.html">Next&nbsp;Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/command/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Package" class="title">Package&nbsp;de.epiceric.shopchest.command</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/command/ShopCommand.html" title="class in de.epiceric.shopchest.command">ShopCommand</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command">ShopSubCommand</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/package-summary.html">Prev&nbsp;Package</a></li>
<li><a href="../../../../de/epiceric/shopchest/config/package-summary.html">Next&nbsp;Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/command/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,140 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.command Class Hierarchy (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="de.epiceric.shopchest.command Class Hierarchy (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/package-tree.html">Prev</a></li>
<li><a href="../../../../de/epiceric/shopchest/config/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/command/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">Hierarchy For Package de.epiceric.shopchest.command</h1>
<span class="packageHierarchyLabel">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="../../../../overview-tree.html">All Packages</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a>
<ul>
<li type="circle">de.epiceric.shopchest.command.<a href="../../../../de/epiceric/shopchest/command/ShopCommand.html" title="class in de.epiceric.shopchest.command"><span class="typeNameLink">ShopCommand</span></a></li>
<li type="circle">de.epiceric.shopchest.command.<a href="../../../../de/epiceric/shopchest/command/ShopSubCommand.html" title="class in de.epiceric.shopchest.command"><span class="typeNameLink">ShopSubCommand</span></a></li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/package-tree.html">Prev</a></li>
<li><a href="../../../../de/epiceric/shopchest/config/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/command/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,178 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:10 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package de.epiceric.shopchest.command (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package de.epiceric.shopchest.command (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Use</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/command/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Uses of Package de.epiceric.shopchest.command" class="title">Uses of Package<br>de.epiceric.shopchest.command</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../de/epiceric/shopchest/command/package-summary.html">de.epiceric.shopchest.command</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest">de.epiceric.shopchest</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.command">de.epiceric.shopchest.command</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="de.epiceric.shopchest">
<!-- -->
</a>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../de/epiceric/shopchest/command/package-summary.html">de.epiceric.shopchest.command</a> used by <a href="../../../../de/epiceric/shopchest/package-summary.html">de.epiceric.shopchest</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../de/epiceric/shopchest/command/class-use/ShopCommand.html#de.epiceric.shopchest">ShopCommand</a>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="de.epiceric.shopchest.command">
<!-- -->
</a>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../de/epiceric/shopchest/command/package-summary.html">de.epiceric.shopchest.command</a> used by <a href="../../../../de/epiceric/shopchest/command/package-summary.html">de.epiceric.shopchest.command</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../de/epiceric/shopchest/command/class-use/ShopSubCommand.html#de.epiceric.shopchest.command">ShopSubCommand</a>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Use</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/command/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Config (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Config (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Config (ShopChest 1.10.4 API)";
parent.document.title="Config (ShopChest 1.12 API)";
}
}
catch(err) {
@ -51,7 +51,7 @@ var activeTableTab = "activeTableTab";
<div class="subNav">
<ul class="navList">
<li>Prev&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/config/LanguageConfiguration.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/config/Config.html" target="_top">Frames</a></li>
@ -149,15 +149,15 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#auto_calculate_item_amount">auto_calculate_item_amount</a></span></code>
<div class="block">Whether the item amount should be calculated to fit the available money or inventory space</div>
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#areashop_remove_shop_events">areashop_remove_shop_events</a></span></code>
<div class="block">The events of AreaShop when shops in that region should be removed</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#auto_reload_time">auto_reload_time</a></span></code>
<div class="block">The time between automatic shop reloads (if set to 0, the timer will be disabled)</div>
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#auto_calculate_item_amount">auto_calculate_item_amount</a></span></code>
<div class="block">Whether the item amount should be calculated to fit the available money or inventory space</div>
</td>
</tr>
<tr class="rowColor">
@ -218,15 +218,87 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#default_limit">default_limit</a></span></code>
<div class="block">The default shop limit for players and groups that are not listed in <a href="../../../../de/epiceric/shopchest/config/Config.html#shopLimits_player"><code>shopLimits_player</code></a> or in <a href="../../../../de/epiceric/shopchest/config/Config.html#shopLimits_group"><code>shopLimits_group</code></a></div>
<div class="block">The default shop limit for players whose limit is not set via a permission</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#enable_areashop_integration">enable_areashop_integration</a></span></code>
<div class="block">Whether AreaShop integration should be enabled</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#enable_askyblock_integration">enable_askyblock_integration</a></span></code>
<div class="block">Whether ASkyBlock integration should be enabled</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#enable_authme_integration">enable_authme_integration</a></span></code>
<div class="block">Whether AuthMe integration should be enabled</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#enable_debug_log">enable_debug_log</a></span></code>
<div class="block">Whether the debug log file should be created</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#enable_griefprevention_integration">enable_griefprevention_integration</a></span></code>
<div class="block">Whether GriefPrevention integration should be enabled</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#enable_hologram_interaction">enable_hologram_interaction</a></span></code>
<div class="block">Whether hologram interaction should be enabled</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#enable_islandworld_integration">enable_islandworld_integration</a></span></code>
<div class="block">Whether IslandWorld integration should be enabled</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#enable_plotsquared_integration">enable_plotsquared_integration</a></span></code>
<div class="block">Whether PlotSquared integration should be enabled</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#enable_quality_mode">enable_quality_mode</a></span></code>
<div class="block">Whether quality mode should be enabled</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#enable_towny_integration">enable_towny_integration</a></span></code>
<div class="block">Whether Towny integration should be enabled</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#enable_uskyblock_integration">enable_uskyblock_integration</a></span></code>
<div class="block">Whether uSkyBlock integration should be enabled</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#enable_vendor_messages">enable_vendor_messages</a></span></code>
<div class="block">Whether the vendor of the shop should get messages about buys and sells</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#enable_worldguard_integration">enable_worldguard_integration</a></span></code>
<div class="block">Whether WorldGuard integration should be enabled</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#exclude_admin_shops">exclude_admin_shops</a></span></code>
@ -241,34 +313,63 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#hologram_fixed_bottom">hologram_fixed_bottom</a></span></code>
<div class="block">Whether the hologram's location should be fixed at the bottom</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#hologram_lift">hologram_lift</a></span></code>
<div class="block">Amount every hologram should be lifted</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#hopper_protection">hopper_protection</a></span></code>
<div class="block">Whether shops should be protected by hoppers</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#invert_mouse_buttons">invert_mouse_buttons</a></span></code>
<div class="block">Whether the mouse buttons are inverted
<b>Default:</b><br>
Right-Click: Buy<br>
Left-Click: Sell</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#language_file">language_file</a></span></code>
<div class="block">The language file to use (e.g <i>en_US</i>, <i>de_DE</i>)</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#main_command_name">main_command_name</a></span></code>
<div class="block">The main command of ShopChest <i>(default: shop)</i></div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#maximal_distance">maximal_distance</a></span></code>
<div class="block">The maximum distance between a player and a shop to see the hologram</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#maximal_item_distance">maximal_item_distance</a></span></code>
<div class="block">The maximum distance between a player and a shop to see the shop item</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#maximum_prices">maximum_prices</a></span></code>
<div class="block">The maximum prices for certain items
This returns a key set, which contains e.g "STONE", "STONE:1", of the <code>maximum-prices</code> section in ShopChest's config.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#minimum_prices">minimum_prices</a></span></code>
@ -278,6 +379,18 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#only_show_first_shop_in_sight">only_show_first_shop_in_sight</a></span></code>
<div class="block">Whether only the shop a player is looking at should be shown to him</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#only_show_shops_in_sight">only_show_shops_in_sight</a></span></code>
<div class="block">Whether only the shops a player has in sight should be shown to him</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#remove_shop_on_error">remove_shop_on_error</a></span></code>
<div class="block">Whether shops should automatically be removed from the database if an error occurred while loading
(e.g. when no chest is found at a shop's location)</div>
@ -296,35 +409,57 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#shopLimits_group">shopLimits_group</a></span></code>
<div class="block">The shop limits of certain groups
This returns a key set, which contains the group names, of the <i>shop-limits.group</i> section in ShopChest's config.</div>
<td class="colFirst"><code>org.bukkit.inventory.ItemStack</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#shop_info_item">shop_info_item</a></span></code>
<div class="block">The item with which a player can click a shop to retrieve information</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#shopLimits_player">shopLimits_player</a></span></code>
<div class="block">The shop limits of certain players
This returns a key set, which contains the player names, of the <i>shop-limits.player</i> section in ShopChest's config.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#show_shop_items">show_shop_items</a></span></code>
<div class="block">Whether the shop items should be shown</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#towny_shop_plots_king">towny_shop_plots_king</a></span></code>
<div class="block">The types of town plots the king is allowed to create shops in</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#two_line_hologram_lift">two_line_hologram_lift</a></span></code>
<div class="block">Amount the hologram should be lifted</div>
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#towny_shop_plots_mayor">towny_shop_plots_mayor</a></span></code>
<div class="block">The types of town plots the mayor is allowed to create shops in</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#towny_shop_plots_residents">towny_shop_plots_residents</a></span></code>
<div class="block">The types of town plots residents are allowed to create shops in</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#update_quality">update_quality</a></span></code>
<div class="block">The quality of hologram and item updating (performance saving, or better quality)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#two_line_prices">two_line_prices</a></span></code>
<div class="block">Whether the buy- and sell price should be arranged below each other</div>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#wg_allow_create_shop_default">wg_allow_create_shop_default</a></span></code>
<div class="block">The default value for the custom WorldGuard flag 'create-shop'</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#wg_allow_use_admin_shop_default">wg_allow_use_admin_shop_default</a></span></code>
<div class="block">The default value for the custom WorldGuard flag 'use-admin-shop'</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#wg_allow_use_shop_default">wg_allow_use_shop_default</a></span></code>
<div class="block">The default value for the custom WorldGuard flag 'use-shop'</div>
</td>
</tr>
</table>
@ -372,8 +507,9 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#reload-boolean-boolean-">reload</a></span>(boolean&nbsp;firstLoad,
boolean&nbsp;langReload)</code>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Config.html#reload-boolean-boolean-boolean-">reload</a></span>(boolean&nbsp;firstLoad,
boolean&nbsp;langReload,
boolean&nbsp;showMessages)</code>
<div class="block">Reload the configuration values from config.yml</div>
</td>
</tr>
@ -412,6 +548,96 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="update_quality">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>update_quality</h4>
<pre>public&nbsp;<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a> update_quality</pre>
<div class="block">The quality of hologram and item updating (performance saving, or better quality)</div>
</li>
</ul>
<a name="shop_info_item">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>shop_info_item</h4>
<pre>public&nbsp;org.bukkit.inventory.ItemStack shop_info_item</pre>
<div class="block">The item with which a player can click a shop to retrieve information</div>
</li>
</ul>
<a name="wg_allow_create_shop_default">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>wg_allow_create_shop_default</h4>
<pre>public&nbsp;boolean wg_allow_create_shop_default</pre>
<div class="block">The default value for the custom WorldGuard flag 'create-shop'</div>
</li>
</ul>
<a name="wg_allow_use_admin_shop_default">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>wg_allow_use_admin_shop_default</h4>
<pre>public&nbsp;boolean wg_allow_use_admin_shop_default</pre>
<div class="block">The default value for the custom WorldGuard flag 'use-admin-shop'</div>
</li>
</ul>
<a name="wg_allow_use_shop_default">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>wg_allow_use_shop_default</h4>
<pre>public&nbsp;boolean wg_allow_use_shop_default</pre>
<div class="block">The default value for the custom WorldGuard flag 'use-shop'</div>
</li>
</ul>
<a name="towny_shop_plots_residents">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>towny_shop_plots_residents</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt; towny_shop_plots_residents</pre>
<div class="block">The types of town plots residents are allowed to create shops in</div>
</li>
</ul>
<a name="towny_shop_plots_mayor">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>towny_shop_plots_mayor</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt; towny_shop_plots_mayor</pre>
<div class="block">The types of town plots the mayor is allowed to create shops in</div>
</li>
</ul>
<a name="towny_shop_plots_king">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>towny_shop_plots_king</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt; towny_shop_plots_king</pre>
<div class="block">The types of town plots the king is allowed to create shops in</div>
</li>
</ul>
<a name="areashop_remove_shop_events">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>areashop_remove_shop_events</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt; areashop_remove_shop_events</pre>
<div class="block">The events of AreaShop when shops in that region should be removed</div>
</li>
</ul>
<a name="database_mysql_host">
<!-- -->
</a>
@ -491,31 +717,19 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt; minimum_prices</pre>
<div class="block"><p>The minimum prices for certain items</p>
This returns a key set, which contains e.g "STONE", "STONE:1", of the <i>minimum-prices</i> section in ShopChest's config.
To actually retrieve the price for an item, you have to get the Double <i>minimum-prices.<b>key</b></i>.</div>
To actually retrieve the minimum price for an item, you have to get the double <code>minimum-prices.&lt;key&gt;</code>.</div>
</li>
</ul>
<a name="shopLimits_group">
<a name="maximum_prices">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>shopLimits_group</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt; shopLimits_group</pre>
<div class="block"><p>The shop limits of certain groups</p>
This returns a key set, which contains the group names, of the <i>shop-limits.group</i> section in ShopChest's config.
To actually retrieve the limits for a group, you have to get the Integer <i>shop-limits.group.<b>key</b></i>.</div>
</li>
</ul>
<a name="shopLimits_player">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>shopLimits_player</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt; shopLimits_player</pre>
<div class="block"><p>The shop limits of certain players</p>
This returns a key set, which contains the player names, of the <i>shop-limits.player</i> section in ShopChest's config.
To actually retrieve the limits for a player, you have to get the Integer <i>shop-limits.player.<b>key</b></i>.</div>
<h4>maximum_prices</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt; maximum_prices</pre>
<div class="block"><p>The maximum prices for certain items</p>
This returns a key set, which contains e.g "STONE", "STONE:1", of the <code>maximum-prices</code> section in ShopChest's config.
To actually retrieve the maximum price for an item, you have to get the double <code>maximum-prices.&lt;key&gt;</code>.</div>
</li>
</ul>
<a name="blacklist">
@ -569,6 +783,26 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<div class="block">Whether shops should be protected by explosions</div>
</li>
</ul>
<a name="enable_quality_mode">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enable_quality_mode</h4>
<pre>public&nbsp;boolean enable_quality_mode</pre>
<div class="block">Whether quality mode should be enabled</div>
</li>
</ul>
<a name="enable_hologram_interaction">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enable_hologram_interaction</h4>
<pre>public&nbsp;boolean enable_hologram_interaction</pre>
<div class="block">Whether hologram interaction should be enabled</div>
</li>
</ul>
<a name="enable_debug_log">
<!-- -->
</a>
@ -579,6 +813,106 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<div class="block">Whether the debug log file should be created</div>
</li>
</ul>
<a name="enable_worldguard_integration">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enable_worldguard_integration</h4>
<pre>public&nbsp;boolean enable_worldguard_integration</pre>
<div class="block">Whether WorldGuard integration should be enabled</div>
</li>
</ul>
<a name="enable_towny_integration">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enable_towny_integration</h4>
<pre>public&nbsp;boolean enable_towny_integration</pre>
<div class="block">Whether Towny integration should be enabled</div>
</li>
</ul>
<a name="enable_authme_integration">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enable_authme_integration</h4>
<pre>public&nbsp;boolean enable_authme_integration</pre>
<div class="block">Whether AuthMe integration should be enabled</div>
</li>
</ul>
<a name="enable_plotsquared_integration">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enable_plotsquared_integration</h4>
<pre>public&nbsp;boolean enable_plotsquared_integration</pre>
<div class="block">Whether PlotSquared integration should be enabled</div>
</li>
</ul>
<a name="enable_uskyblock_integration">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enable_uskyblock_integration</h4>
<pre>public&nbsp;boolean enable_uskyblock_integration</pre>
<div class="block">Whether uSkyBlock integration should be enabled</div>
</li>
</ul>
<a name="enable_askyblock_integration">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enable_askyblock_integration</h4>
<pre>public&nbsp;boolean enable_askyblock_integration</pre>
<div class="block">Whether ASkyBlock integration should be enabled</div>
</li>
</ul>
<a name="enable_islandworld_integration">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enable_islandworld_integration</h4>
<pre>public&nbsp;boolean enable_islandworld_integration</pre>
<div class="block">Whether IslandWorld integration should be enabled</div>
</li>
</ul>
<a name="enable_griefprevention_integration">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enable_griefprevention_integration</h4>
<pre>public&nbsp;boolean enable_griefprevention_integration</pre>
<div class="block">Whether GriefPrevention integration should be enabled</div>
</li>
</ul>
<a name="enable_areashop_integration">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enable_areashop_integration</h4>
<pre>public&nbsp;boolean enable_areashop_integration</pre>
<div class="block">Whether AreaShop integration should be enabled</div>
</li>
</ul>
<a name="enable_vendor_messages">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enable_vendor_messages</h4>
<pre>public&nbsp;boolean enable_vendor_messages</pre>
<div class="block">Whether the vendor of the shop should get messages about buys and sells</div>
</li>
</ul>
<a name="exclude_admin_shops">
<!-- -->
</a>
@ -589,16 +923,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<div class="block">Whether admin shops should be excluded of the shop limits</div>
</li>
</ul>
<a name="two_line_prices">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>two_line_prices</h4>
<pre>public&nbsp;boolean two_line_prices</pre>
<div class="block">Whether the buy- and sell price should be arranged below each other</div>
</li>
</ul>
<a name="append_potion_level_to_item_name">
<!-- -->
</a>
@ -629,6 +953,26 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<div class="block">Whether players are allowed to sell/buy broken items</div>
</li>
</ul>
<a name="only_show_shops_in_sight">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>only_show_shops_in_sight</h4>
<pre>public&nbsp;boolean only_show_shops_in_sight</pre>
<div class="block">Whether only the shops a player has in sight should be shown to him</div>
</li>
</ul>
<a name="only_show_first_shop_in_sight">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>only_show_first_shop_in_sight</h4>
<pre>public&nbsp;boolean only_show_first_shop_in_sight</pre>
<div class="block">Whether only the shop a player is looking at should be shown to him</div>
</li>
</ul>
<a name="remove_shop_on_error">
<!-- -->
</a>
@ -650,14 +994,38 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<div class="block">Whether the item amount should be calculated to fit the available money or inventory space</div>
</li>
</ul>
<a name="two_line_hologram_lift">
<a name="invert_mouse_buttons">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>two_line_hologram_lift</h4>
<pre>public&nbsp;double two_line_hologram_lift</pre>
<div class="block">Amount the hologram should be lifted</div>
<h4>invert_mouse_buttons</h4>
<pre>public&nbsp;boolean invert_mouse_buttons</pre>
<div class="block"><p>Whether the mouse buttons are inverted</p>
<b>Default:</b><br>
Right-Click: Buy<br>
Left-Click: Sell</div>
</li>
</ul>
<a name="hologram_fixed_bottom">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hologram_fixed_bottom</h4>
<pre>public&nbsp;boolean hologram_fixed_bottom</pre>
<div class="block">Whether the hologram's location should be fixed at the bottom</div>
</li>
</ul>
<a name="hologram_lift">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hologram_lift</h4>
<pre>public&nbsp;double hologram_lift</pre>
<div class="block">Amount every hologram should be lifted</div>
</li>
</ul>
<a name="maximal_distance">
@ -707,17 +1075,7 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<li class="blockList">
<h4>default_limit</h4>
<pre>public&nbsp;int default_limit</pre>
<div class="block">The default shop limit for players and groups that are not listed in <a href="../../../../de/epiceric/shopchest/config/Config.html#shopLimits_player"><code>shopLimits_player</code></a> or in <a href="../../../../de/epiceric/shopchest/config/Config.html#shopLimits_group"><code>shopLimits_group</code></a></div>
</li>
</ul>
<a name="auto_reload_time">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>auto_reload_time</h4>
<pre>public&nbsp;int auto_reload_time</pre>
<div class="block">The time between automatic shop reloads (if set to 0, the timer will be disabled)</div>
<div class="block">The default shop limit for players whose limit is not set via a permission</div>
</li>
</ul>
<a name="main_command_name">
@ -809,14 +1167,15 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;value)</pre>
</li>
</ul>
<a name="reload-boolean-boolean-">
<a name="reload-boolean-boolean-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>reload</h4>
<pre>public&nbsp;void&nbsp;reload(boolean&nbsp;firstLoad,
boolean&nbsp;langReload)</pre>
boolean&nbsp;langReload,
boolean&nbsp;showMessages)</pre>
<div class="block">Reload the configuration values from config.yml</div>
</li>
</ul>
@ -862,7 +1221,7 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<div class="subNav">
<ul class="navList">
<li>Prev&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/config/LanguageConfiguration.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/config/Config.html" target="_top">Frames</a></li>
@ -902,6 +1261,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Regex (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>HologramFormat.Requirement (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,14 +13,14 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Regex (ShopChest 1.10.4 API)";
parent.document.title="HologramFormat.Requirement (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":9,"i2":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var methods = {"i0":9,"i1":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
@ -41,7 +41,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Regex.html">Use</a></li>
<li><a href="class-use/HologramFormat.Requirement.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
@ -50,12 +50,12 @@ var activeTableTab = "activeTableTab";
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/config/LanguageConfiguration.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li>Next&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/config/LanguageConfiguration.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/config/Regex.html" target="_top">Frames</a></li>
<li><a href="Regex.html" target="_top">No&nbsp;Frames</a></li>
<li><a href="../../../../index.html?de/epiceric/shopchest/config/HologramFormat.Requirement.html" target="_top">Frames</a></li>
<li><a href="HologramFormat.Requirement.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
@ -94,17 +94,17 @@ var activeTableTab = "activeTableTab";
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.config</div>
<h2 title="Enum Regex" class="title">Enum Regex</h2>
<h2 title="Enum HologramFormat.Requirement" class="title">Enum HologramFormat.Requirement</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">java.lang.Enum</a>&lt;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>&gt;</li>
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">java.lang.Enum</a>&lt;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a>&gt;</li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.config.Regex</li>
<li>de.epiceric.shopchest.config.HologramFormat.Requirement</li>
</ul>
</li>
</ul>
@ -115,12 +115,16 @@ var activeTableTab = "activeTableTab";
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>&gt;</dd>
<dd><a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a>&gt;</dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config">HologramFormat</a></dd>
</dl>
<hr>
<br>
<pre>public enum <span class="typeNameLabel">Regex</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a>&lt;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>&gt;</pre>
<pre>public static enum <span class="typeNameLabel">HologramFormat.Requirement</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a>&lt;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a>&gt;</pre>
</li>
</ul>
</div>
@ -139,55 +143,49 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
<th class="colOne" scope="col">Enum Constant and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#AMOUNT">AMOUNT</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#ADMIN_SHOP">ADMIN_SHOP</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#BUY_PRICE">BUY_PRICE</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#AMOUNT">AMOUNT</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#CREATION_PRICE">CREATION_PRICE</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#BUY_PRICE">BUY_PRICE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#ENCHANTMENT">ENCHANTMENT</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#HAS_ENCHANTMENT">HAS_ENCHANTMENT</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#ERROR">ERROR</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#HAS_POTION_EFFECT">HAS_POTION_EFFECT</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#EXTENDED">EXTENDED</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#IN_STOCK">IN_STOCK</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#ITEM_NAME">ITEM_NAME</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#IS_MUSIC_DISC">IS_MUSIC_DISC</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#LIMIT">LIMIT</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#IS_POTION_EXTENDED">IS_POTION_EXTENDED</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#MIN_PRICE">MIN_PRICE</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#IS_WRITTEN_BOOK">IS_WRITTEN_BOOK</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#MUSIC_TITLE">MUSIC_TITLE</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#ITEM_NAME">ITEM_NAME</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#PLAYER">PLAYER</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#ITEM_TYPE">ITEM_TYPE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#POTION_EFFECT">POTION_EFFECT</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#MAX_STACK">MAX_STACK</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#PROPERTY">PROPERTY</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#NORMAL_SHOP">NORMAL_SHOP</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#SELL_PRICE">SELL_PRICE</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#SELL_PRICE">SELL_PRICE</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#VALUE">VALUE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#VENDOR">VENDOR</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#VERSION">VERSION</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#VENDOR">VENDOR</a></span></code>&nbsp;</td>
</tr>
</table>
</li>
@ -199,24 +197,20 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#getName--">getName</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<td class="colFirst"><code>static <a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>static <a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Regex.html#values--">values</a></span>()</code>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#values--">values</a></span>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
@ -256,7 +250,7 @@ the order they are declared.</div>
<ul class="blockList">
<li class="blockList">
<h4>VENDOR</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> VENDOR</pre>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> VENDOR</pre>
</li>
</ul>
<a name="AMOUNT">
@ -265,7 +259,16 @@ the order they are declared.</div>
<ul class="blockList">
<li class="blockList">
<h4>AMOUNT</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> AMOUNT</pre>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> AMOUNT</pre>
</li>
</ul>
<a name="ITEM_TYPE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ITEM_TYPE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> ITEM_TYPE</pre>
</li>
</ul>
<a name="ITEM_NAME">
@ -274,52 +277,16 @@ the order they are declared.</div>
<ul class="blockList">
<li class="blockList">
<h4>ITEM_NAME</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> ITEM_NAME</pre>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> ITEM_NAME</pre>
</li>
</ul>
<a name="CREATION_PRICE">
<a name="HAS_ENCHANTMENT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CREATION_PRICE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> CREATION_PRICE</pre>
</li>
</ul>
<a name="ERROR">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ERROR</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> ERROR</pre>
</li>
</ul>
<a name="ENCHANTMENT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ENCHANTMENT</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> ENCHANTMENT</pre>
</li>
</ul>
<a name="MIN_PRICE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MIN_PRICE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> MIN_PRICE</pre>
</li>
</ul>
<a name="VERSION">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>VERSION</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> VERSION</pre>
<h4>HAS_ENCHANTMENT</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> HAS_ENCHANTMENT</pre>
</li>
</ul>
<a name="BUY_PRICE">
@ -328,7 +295,7 @@ the order they are declared.</div>
<ul class="blockList">
<li class="blockList">
<h4>BUY_PRICE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> BUY_PRICE</pre>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> BUY_PRICE</pre>
</li>
</ul>
<a name="SELL_PRICE">
@ -337,70 +304,79 @@ the order they are declared.</div>
<ul class="blockList">
<li class="blockList">
<h4>SELL_PRICE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> SELL_PRICE</pre>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> SELL_PRICE</pre>
</li>
</ul>
<a name="LIMIT">
<a name="HAS_POTION_EFFECT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>LIMIT</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> LIMIT</pre>
<h4>HAS_POTION_EFFECT</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> HAS_POTION_EFFECT</pre>
</li>
</ul>
<a name="PLAYER">
<a name="IS_MUSIC_DISC">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PLAYER</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> PLAYER</pre>
<h4>IS_MUSIC_DISC</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> IS_MUSIC_DISC</pre>
</li>
</ul>
<a name="POTION_EFFECT">
<a name="IS_POTION_EXTENDED">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>POTION_EFFECT</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> POTION_EFFECT</pre>
<h4>IS_POTION_EXTENDED</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> IS_POTION_EXTENDED</pre>
</li>
</ul>
<a name="MUSIC_TITLE">
<a name="IS_WRITTEN_BOOK">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MUSIC_TITLE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> MUSIC_TITLE</pre>
<h4>IS_WRITTEN_BOOK</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> IS_WRITTEN_BOOK</pre>
</li>
</ul>
<a name="PROPERTY">
<a name="ADMIN_SHOP">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PROPERTY</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> PROPERTY</pre>
<h4>ADMIN_SHOP</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> ADMIN_SHOP</pre>
</li>
</ul>
<a name="VALUE">
<a name="NORMAL_SHOP">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>VALUE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> VALUE</pre>
<h4>NORMAL_SHOP</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> NORMAL_SHOP</pre>
</li>
</ul>
<a name="EXTENDED">
<a name="IN_STOCK">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>IN_STOCK</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> IN_STOCK</pre>
</li>
</ul>
<a name="MAX_STACK">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>EXTENDED</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> EXTENDED</pre>
<h4>MAX_STACK</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> MAX_STACK</pre>
</li>
</ul>
</li>
@ -417,12 +393,12 @@ the order they are declared.</div>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre>public static&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>[]&nbsp;values()</pre>
<pre>public static&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a>[]&nbsp;values()</pre>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
<pre>
for (Regex c : Regex.values())
for (HologramFormat.Requirement c : HologramFormat.Requirement.values())
&nbsp; System.out.println(c);
</pre></div>
<dl>
@ -434,10 +410,10 @@ for (Regex c : Regex.values())
<a name="valueOf-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<ul class="blockListLast">
<li class="blockList">
<h4>valueOf</h4>
<pre>public static&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>&nbsp;valueOf(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
<pre>public static&nbsp;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a>&nbsp;valueOf(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
<div class="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
@ -453,15 +429,6 @@ not permitted.)</div>
</dl>
</li>
</ul>
<a name="getName--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getName</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getName()</pre>
</li>
</ul>
</li>
</ul>
</li>
@ -481,7 +448,7 @@ not permitted.)</div>
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Regex.html">Use</a></li>
<li><a href="class-use/HologramFormat.Requirement.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
@ -490,12 +457,12 @@ not permitted.)</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/config/LanguageConfiguration.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li>Next&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/config/LanguageConfiguration.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/config/Regex.html" target="_top">Frames</a></li>
<li><a href="Regex.html" target="_top">No&nbsp;Frames</a></li>
<li><a href="../../../../index.html?de/epiceric/shopchest/config/HologramFormat.Requirement.html" target="_top">Frames</a></li>
<li><a href="HologramFormat.Requirement.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
@ -531,6 +498,6 @@ not permitted.)</div>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:35 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Metrics (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>HologramFormat (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,14 +13,14 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Metrics (ShopChest 1.10.4 API)";
parent.document.title="HologramFormat (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":9,"i6":10,"i7":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
@ -41,7 +41,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Metrics.html">Use</a></li>
<li><a href="class-use/HologramFormat.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
@ -50,12 +50,12 @@ var activeTableTab = "activeTableTab";
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/utils/ClickType.EnumClickType.html" title="enum in de.epiceric.shopchest.utils"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/utils/Metrics.Graph.html" title="class in de.epiceric.shopchest.utils"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/config/Config.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/utils/Metrics.html" target="_top">Frames</a></li>
<li><a href="Metrics.html" target="_top">No&nbsp;Frames</a></li>
<li><a href="../../../../index.html?de/epiceric/shopchest/config/HologramFormat.html" target="_top">Frames</a></li>
<li><a href="HologramFormat.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
@ -93,15 +93,15 @@ var activeTableTab = "activeTableTab";
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.utils</div>
<h2 title="Class Metrics" class="title">Class Metrics</h2>
<div class="subTitle">de.epiceric.shopchest.config</div>
<h2 title="Class HologramFormat" class="title">Class HologramFormat</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.utils.Metrics</li>
<li>de.epiceric.shopchest.config.HologramFormat</li>
</ul>
</li>
</ul>
@ -110,7 +110,7 @@ var activeTableTab = "activeTableTab";
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">Metrics</span>
<pre>public class <span class="typeNameLabel">HologramFormat</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
</li>
</ul>
@ -132,15 +132,7 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/utils/Metrics.Graph.html" title="class in de.epiceric.shopchest.utils">Metrics.Graph</a></span></code>
<div class="block">Represents a custom graph on the website</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/utils/Metrics.Plotter.html" title="class in de.epiceric.shopchest.utils">Metrics.Plotter</a></span></code>
<div class="block">Interface used to collect custom data for a plugin</div>
</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a></span></code>&nbsp;</td>
</tr>
</table>
</li>
@ -157,7 +149,7 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/utils/Metrics.html#Metrics-org.bukkit.plugin.Plugin-">Metrics</a></span>(org.bukkit.plugin.Plugin&nbsp;plugin)</code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html#HologramFormat-de.epiceric.shopchest.ShopChest-">HologramFormat</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
</table>
</li>
@ -169,59 +161,54 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/utils/Metrics.html#addGraph-de.epiceric.shopchest.utils.Metrics.Graph-">addGraph</a></span>(<a href="../../../../de/epiceric/shopchest/utils/Metrics.Graph.html" title="class in de.epiceric.shopchest.utils">Metrics.Graph</a>&nbsp;graph)</code>
<div class="block">Add a Graph object to BukkitMetrics that represents data for the plugin that should be sent to the backend</div>
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html#evalPlaceholder-java.lang.String-java.util.Map-">evalPlaceholder</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;string,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;values)</code>
<div class="block">Parse and evaluate a condition</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/utils/Metrics.Graph.html" title="class in de.epiceric.shopchest.utils">Metrics.Graph</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/utils/Metrics.html#createGraph-java.lang.String-">createGraph</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Construct and create a Graph that can be used to separate specific plotters to their own graphs on the metrics
website.</div>
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html#evalRequirement-java.lang.String-java.util.Map-">evalRequirement</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;condition,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;values)</code>
<div class="block">Parse and evaluate a condition</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/utils/Metrics.html#disable--">disable</a></span>()</code>
<div class="block">Disables metrics for the server by setting "opt-out" to true in the config file and canceling the metrics task.</div>
<td class="colFirst"><code>org.bukkit.configuration.file.YamlConfiguration</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html#getConfig--">getConfig</a></span>()</code>
<div class="block">Returns the configuration of the "hologram-format.yml" file</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/utils/Metrics.html#enable--">enable</a></span>()</code>
<div class="block">Enables metrics for the server by setting "opt-out" to false in the config file and starting the metrics task.</div>
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html#getFormat-int-java.util.Map-java.util.Map-">getFormat</a></span>(int&nbsp;line,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;reqMap,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;plaMap)</code>
<div class="block">Get the format for the given line of the hologram</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/utils/Metrics.html#getConfigFile--">getConfigFile</a></span>()</code>
<div class="block">Gets the File object of the config file that should be used to store data such as the GUID and opt-out status</div>
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html#getLineCount--">getLineCount</a></span>()</code>
<div class="block">Returns the amount of lines in a hologram</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>static byte[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/utils/Metrics.html#gzip-java.lang.String-">gzip</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;input)</code>
<div class="block">GZip compress a string of bytes</div>
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html#isDynamic--">isDynamic</a></span>()</code>
<div class="block">Returns whether the hologram text has to change dynamically without reloading</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/utils/Metrics.html#isOptOut--">isOptOut</a></span>()</code>
<div class="block">Has the server owner denied plugin metrics?</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/utils/Metrics.html#start--">start</a></span>()</code>
<div class="block">Start measuring statistics.</div>
</td>
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html#reload--">reload</a></span>()</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
@ -245,18 +232,13 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="Metrics-org.bukkit.plugin.Plugin-">
<a name="HologramFormat-de.epiceric.shopchest.ShopChest-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Metrics</h4>
<pre>public&nbsp;Metrics(org.bukkit.plugin.Plugin&nbsp;plugin)
throws <a href="http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code></dd>
</dl>
<h4>HologramFormat</h4>
<pre>public&nbsp;HologramFormat(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</pre>
</li>
</ul>
</li>
@ -267,123 +249,98 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="gzip-java.lang.String-">
<a name="getFormat-int-java.util.Map-java.util.Map-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>gzip</h4>
<pre>public static&nbsp;byte[]&nbsp;gzip(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;input)</pre>
<div class="block">GZip compress a string of bytes</div>
<h4>getFormat</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getFormat(int&nbsp;line,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;reqMap,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;plaMap)</pre>
<div class="block">Get the format for the given line of the hologram</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>input</code> - </dd>
<dd><code>line</code> - Line of the hologram</dd>
<dd><code>reqMap</code> - Values of the requirements that might be needed by the format (contains <code>null</code> if not comparable)</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The format of the first working option, or an empty String if no option is working
because of not fulfilled requirements</dd>
</dl>
</li>
</ul>
<a name="createGraph-java.lang.String-">
<a name="reload--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>createGraph</h4>
<pre>public&nbsp;<a href="../../../../de/epiceric/shopchest/utils/Metrics.Graph.html" title="class in de.epiceric.shopchest.utils">Metrics.Graph</a>&nbsp;createGraph(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
<div class="block">Construct and create a Graph that can be used to separate specific plotters to their own graphs on the metrics
website. Plotters can be added to the graph object returned.</div>
<h4>reload</h4>
<pre>public&nbsp;void&nbsp;reload()</pre>
</li>
</ul>
<a name="isDynamic--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isDynamic</h4>
<pre>public&nbsp;boolean&nbsp;isDynamic()</pre>
<div class="block">Returns whether the hologram text has to change dynamically without reloading</div>
</li>
</ul>
<a name="getLineCount--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLineCount</h4>
<pre>public&nbsp;int&nbsp;getLineCount()</pre>
<div class="block">Returns the amount of lines in a hologram</div>
</li>
</ul>
<a name="getConfig--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getConfig</h4>
<pre>public&nbsp;org.bukkit.configuration.file.YamlConfiguration&nbsp;getConfig()</pre>
<div class="block">Returns the configuration of the "hologram-format.yml" file</div>
</li>
</ul>
<a name="evalRequirement-java.lang.String-java.util.Map-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>evalRequirement</h4>
<pre>public&nbsp;boolean&nbsp;evalRequirement(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;condition,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;values)</pre>
<div class="block">Parse and evaluate a condition</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>name</code> - The name of the graph</dd>
<dd><code>condition</code> - Condition to evaluate</dd>
<dd><code>values</code> - Values of the requirements</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Graph object created. Will never return NULL under normal circumstances unless bad parameters are given</dd>
<dd>Result of the condition</dd>
</dl>
</li>
</ul>
<a name="addGraph-de.epiceric.shopchest.utils.Metrics.Graph-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addGraph</h4>
<pre>public&nbsp;void&nbsp;addGraph(<a href="../../../../de/epiceric/shopchest/utils/Metrics.Graph.html" title="class in de.epiceric.shopchest.utils">Metrics.Graph</a>&nbsp;graph)</pre>
<div class="block">Add a Graph object to BukkitMetrics that represents data for the plugin that should be sent to the backend</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>graph</code> - The name of the graph</dd>
</dl>
</li>
</ul>
<a name="start--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>start</h4>
<pre>public&nbsp;boolean&nbsp;start()</pre>
<div class="block">Start measuring statistics. This will immediately create an async repeating task as the plugin and send the
initial data to the metrics backend, and then after that it will post in increments of PING_INTERVAL * 1200
ticks.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>True if statistics measuring is running, otherwise false.</dd>
</dl>
</li>
</ul>
<a name="isOptOut--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isOptOut</h4>
<pre>public&nbsp;boolean&nbsp;isOptOut()</pre>
<div class="block">Has the server owner denied plugin metrics?</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>true if metrics should be opted out of it</dd>
</dl>
</li>
</ul>
<a name="enable--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enable</h4>
<pre>public&nbsp;void&nbsp;enable()
throws <a href="http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre>
<div class="block">Enables metrics for the server by setting "opt-out" to false in the config file and starting the metrics task.</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code></dd>
</dl>
</li>
</ul>
<a name="disable--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>disable</h4>
<pre>public&nbsp;void&nbsp;disable()
throws <a href="http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre>
<div class="block">Disables metrics for the server by setting "opt-out" to true in the config file and canceling the metrics task.</div>
<dl>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code></dd>
</dl>
</li>
</ul>
<a name="getConfigFile--">
<a name="evalPlaceholder-java.lang.String-java.util.Map-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getConfigFile</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</a>&nbsp;getConfigFile()</pre>
<div class="block">Gets the File object of the config file that should be used to store data such as the GUID and opt-out status</div>
<h4>evalPlaceholder</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;evalPlaceholder(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;string,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;values)</pre>
<div class="block">Parse and evaluate a condition</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>string</code> - Message or hologram format whose containing scripts to execute</dd>
<dd><code>values</code> - Values of the placeholders</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the File object for the config file</dd>
<dd>Result of the condition</dd>
</dl>
</li>
</ul>
@ -406,7 +363,7 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Metrics.html">Use</a></li>
<li><a href="class-use/HologramFormat.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
@ -415,12 +372,12 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/utils/ClickType.EnumClickType.html" title="enum in de.epiceric.shopchest.utils"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/utils/Metrics.Graph.html" title="class in de.epiceric.shopchest.utils"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/config/Config.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/utils/Metrics.html" target="_top">Frames</a></li>
<li><a href="Metrics.html" target="_top">No&nbsp;Frames</a></li>
<li><a href="../../../../index.html?de/epiceric/shopchest/config/HologramFormat.html" target="_top">Frames</a></li>
<li><a href="HologramFormat.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
@ -456,6 +413,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>LanguageConfiguration (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>LanguageConfiguration (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="LanguageConfiguration (ShopChest 1.10.4 API)";
parent.document.title="LanguageConfiguration (ShopChest 1.12 API)";
}
}
catch(err) {
@ -50,8 +50,8 @@ var activeTableTab = "activeTableTab";
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/config/Config.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/config/LanguageConfiguration.html" target="_top">Frames</a></li>
@ -171,7 +171,8 @@ extends org.bukkit.configuration.file.FileConfiguration</pre>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/LanguageConfiguration.html#LanguageConfiguration-de.epiceric.shopchest.ShopChest-">LanguageConfiguration</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/LanguageConfiguration.html#LanguageConfiguration-de.epiceric.shopchest.ShopChest-boolean-">LanguageConfiguration</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin,
boolean&nbsp;showMessages)</code>&nbsp;</td>
</tr>
</table>
</li>
@ -215,7 +216,7 @@ extends org.bukkit.configuration.file.FileConfiguration</pre>
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.bukkit.configuration.file.FileConfiguration</h3>
<code>load, load, load, options, save, save</code></li>
<code>load, load, options, save, save</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.bukkit.configuration.MemoryConfiguration">
@ -229,7 +230,7 @@ extends org.bukkit.configuration.file.FileConfiguration</pre>
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.bukkit.configuration.MemorySection</h3>
<code>contains, createPath, createPath, createSection, createSection, get, get, getBoolean, getBoolean, getBooleanList, getByteList, getCharacterList, getColor, getColor, getConfigurationSection, getCurrentPath, getDefault, getDefaultSection, getDouble, getDouble, getDoubleList, getFloatList, getInt, getInt, getIntegerList, getItemStack, getItemStack, getKeys, getList, getList, getLong, getLong, getLongList, getMapList, getName, getOfflinePlayer, getOfflinePlayer, getRoot, getShortList, getString, getStringList, getValues, getVector, getVector, isBoolean, isColor, isConfigurationSection, isDouble, isInt, isItemStack, isList, isLong, isOfflinePlayer, isPrimitiveWrapper, isSet, isString, isVector, mapChildrenKeys, mapChildrenValues, set, toString</code></li>
<code>contains, contains, createPath, createPath, createSection, createSection, get, get, getBoolean, getBoolean, getBooleanList, getByteList, getCharacterList, getColor, getColor, getConfigurationSection, getCurrentPath, getDefault, getDefaultSection, getDouble, getDouble, getDoubleList, getFloatList, getInt, getInt, getIntegerList, getItemStack, getItemStack, getKeys, getList, getList, getLong, getLong, getLongList, getMapList, getName, getOfflinePlayer, getOfflinePlayer, getRoot, getShortList, getString, getStringList, getValues, getVector, getVector, isBoolean, isColor, isConfigurationSection, isDouble, isInt, isItemStack, isList, isLong, isOfflinePlayer, isPrimitiveWrapper, isSet, isString, isVector, mapChildrenKeys, mapChildrenValues, set, toString</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
@ -243,7 +244,7 @@ extends org.bukkit.configuration.file.FileConfiguration</pre>
<!-- -->
</a>
<h3>Methods inherited from interface&nbsp;org.bukkit.configuration.ConfigurationSection</h3>
<code>contains, createSection, createSection, get, get, getBoolean, getBoolean, getBooleanList, getByteList, getCharacterList, getColor, getColor, getConfigurationSection, getCurrentPath, getDefaultSection, getDouble, getDouble, getDoubleList, getFloatList, getInt, getInt, getIntegerList, getItemStack, getItemStack, getKeys, getList, getList, getLong, getLong, getLongList, getMapList, getName, getOfflinePlayer, getOfflinePlayer, getRoot, getShortList, getString, getStringList, getValues, getVector, getVector, isBoolean, isColor, isConfigurationSection, isDouble, isInt, isItemStack, isList, isLong, isOfflinePlayer, isSet, isString, isVector, set</code></li>
<code>contains, contains, createSection, createSection, get, get, getBoolean, getBoolean, getBooleanList, getByteList, getCharacterList, getColor, getColor, getConfigurationSection, getCurrentPath, getDefaultSection, getDouble, getDouble, getDoubleList, getFloatList, getInt, getInt, getIntegerList, getItemStack, getItemStack, getKeys, getList, getList, getLong, getLong, getLongList, getMapList, getName, getOfflinePlayer, getOfflinePlayer, getRoot, getShortList, getString, getStringList, getValues, getVector, getVector, isBoolean, isColor, isConfigurationSection, isDouble, isInt, isItemStack, isList, isLong, isOfflinePlayer, isSet, isString, isVector, set</code></li>
</ul>
</li>
</ul>
@ -259,13 +260,14 @@ extends org.bukkit.configuration.file.FileConfiguration</pre>
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="LanguageConfiguration-de.epiceric.shopchest.ShopChest-">
<a name="LanguageConfiguration-de.epiceric.shopchest.ShopChest-boolean-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>LanguageConfiguration</h4>
<pre>public&nbsp;LanguageConfiguration(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</pre>
<pre>public&nbsp;LanguageConfiguration(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin,
boolean&nbsp;showMessages)</pre>
</li>
</ul>
</li>
@ -380,8 +382,8 @@ extends org.bukkit.configuration.file.FileConfiguration</pre>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/config/Config.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/config/LanguageConfiguration.html" target="_top">Frames</a></li>
@ -421,6 +423,6 @@ extends org.bukkit.configuration.file.FileConfiguration</pre>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,612 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Placeholder (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Placeholder (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":9,"i2":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Placeholder.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/config/LanguageConfiguration.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li>Next&nbsp;Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/config/Placeholder.html" target="_top">Frames</a></li>
<li><a href="Placeholder.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.config</div>
<h2 title="Enum Placeholder" class="title">Enum Placeholder</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">java.lang.Enum</a>&lt;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>&gt;</li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.config.Placeholder</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>&gt;</dd>
</dl>
<hr>
<br>
<pre>public enum <span class="typeNameLabel">Placeholder</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a>&lt;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>&gt;</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="enum.constant.summary">
<!-- -->
</a>
<h3>Enum Constant Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation">
<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Enum Constant and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#AMOUNT">AMOUNT</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#BUY_PRICE">BUY_PRICE</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#COMMAND">COMMAND</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#CREATION_PRICE">CREATION_PRICE</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#ENCHANTMENT">ENCHANTMENT</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#ERROR">ERROR</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#EXTENDED">EXTENDED</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#GENERATION">GENERATION</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#ITEM_NAME">ITEM_NAME</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#LIMIT">LIMIT</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#MAX_PRICE">MAX_PRICE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#MAX_STACK">MAX_STACK</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#MIN_PRICE">MIN_PRICE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#MUSIC_TITLE">MUSIC_TITLE</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#PLAYER">PLAYER</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#POTION_EFFECT">POTION_EFFECT</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#PROPERTY">PROPERTY</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#REVENUE">REVENUE</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#SELL_PRICE">SELL_PRICE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#STOCK">STOCK</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#VALUE">VALUE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#VENDOR">VENDOR</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#VERSION">VERSION</a></span></code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#toString--">toString</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>static <a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html#values--">values</a></span>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Enum">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#compareTo-E-" title="class or interface in java.lang">compareTo</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#getDeclaringClass--" title="class or interface in java.lang">getDeclaringClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#name--" title="class or interface in java.lang">name</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#ordinal--" title="class or interface in java.lang">ordinal</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#valueOf-java.lang.Class-java.lang.String-" title="class or interface in java.lang">valueOf</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ ENUM CONSTANT DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="enum.constant.detail">
<!-- -->
</a>
<h3>Enum Constant Detail</h3>
<a name="VENDOR">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>VENDOR</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> VENDOR</pre>
</li>
</ul>
<a name="AMOUNT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>AMOUNT</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> AMOUNT</pre>
</li>
</ul>
<a name="ITEM_NAME">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ITEM_NAME</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> ITEM_NAME</pre>
</li>
</ul>
<a name="CREATION_PRICE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CREATION_PRICE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> CREATION_PRICE</pre>
</li>
</ul>
<a name="ERROR">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ERROR</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> ERROR</pre>
</li>
</ul>
<a name="ENCHANTMENT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ENCHANTMENT</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> ENCHANTMENT</pre>
</li>
</ul>
<a name="MIN_PRICE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MIN_PRICE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> MIN_PRICE</pre>
</li>
</ul>
<a name="MAX_PRICE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MAX_PRICE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> MAX_PRICE</pre>
</li>
</ul>
<a name="VERSION">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>VERSION</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> VERSION</pre>
</li>
</ul>
<a name="BUY_PRICE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BUY_PRICE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> BUY_PRICE</pre>
</li>
</ul>
<a name="SELL_PRICE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SELL_PRICE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> SELL_PRICE</pre>
</li>
</ul>
<a name="LIMIT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>LIMIT</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> LIMIT</pre>
</li>
</ul>
<a name="PLAYER">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PLAYER</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> PLAYER</pre>
</li>
</ul>
<a name="POTION_EFFECT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>POTION_EFFECT</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> POTION_EFFECT</pre>
</li>
</ul>
<a name="MUSIC_TITLE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MUSIC_TITLE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> MUSIC_TITLE</pre>
</li>
</ul>
<a name="PROPERTY">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PROPERTY</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> PROPERTY</pre>
</li>
</ul>
<a name="VALUE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>VALUE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> VALUE</pre>
</li>
</ul>
<a name="EXTENDED">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>EXTENDED</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> EXTENDED</pre>
</li>
</ul>
<a name="REVENUE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>REVENUE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> REVENUE</pre>
</li>
</ul>
<a name="GENERATION">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>GENERATION</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> GENERATION</pre>
</li>
</ul>
<a name="STOCK">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>STOCK</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> STOCK</pre>
</li>
</ul>
<a name="MAX_STACK">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MAX_STACK</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> MAX_STACK</pre>
</li>
</ul>
<a name="COMMAND">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>COMMAND</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> COMMAND</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="values--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre>public static&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>[]&nbsp;values()</pre>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
<pre>
for (Placeholder c : Placeholder.values())
&nbsp; System.out.println(c);
</pre></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an array containing the constants of this enum type, in the order they are declared</dd>
</dl>
</li>
</ul>
<a name="valueOf-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>valueOf</h4>
<pre>public static&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>&nbsp;valueOf(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
<div class="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>name</code> - the name of the enum constant to be returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the enum constant with the specified name</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if this enum type has no constant with the specified name</dd>
<dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang">NullPointerException</a></code> - if the argument is null</dd>
</dl>
</li>
</ul>
<a name="toString--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>toString</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;toString()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#toString--" title="class or interface in java.lang">toString</a></code>&nbsp;in class&nbsp;<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a>&lt;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>&gt;</code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Placeholder.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/config/LanguageConfiguration.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li>Next&nbsp;Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/config/Placeholder.html" target="_top">Frames</a></li>
<li><a href="Placeholder.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.config.Config (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Class de.epiceric.shopchest.config.Config (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.config.Config (ShopChest 1.10.4 API)";
parent.document.title="Uses of Class de.epiceric.shopchest.config.Config (ShopChest 1.12 API)";
}
}
catch(err) {
@ -161,6 +161,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,199 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.config.HologramFormat.Requirement (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.config.HologramFormat.Requirement (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/config/class-use/HologramFormat.Requirement.html" target="_top">Frames</a></li>
<li><a href="HologramFormat.Requirement.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.config.HologramFormat.Requirement" class="title">Uses of Class<br>de.epiceric.shopchest.config.HologramFormat.Requirement</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.config">de.epiceric.shopchest.config</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="de.epiceric.shopchest.config">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a> in <a href="../../../../../de/epiceric/shopchest/config/package-summary.html">de.epiceric.shopchest.config</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../de/epiceric/shopchest/config/package-summary.html">de.epiceric.shopchest.config</a> that return <a href="../../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a></code></td>
<td class="colLast"><span class="typeNameLabel">HologramFormat.Requirement.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">HologramFormat.Requirement.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html#values--">values</a></span>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Method parameters in <a href="../../../../../de/epiceric/shopchest/config/package-summary.html">de.epiceric.shopchest.config</a> with type arguments of type <a href="../../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">HologramFormat.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/config/HologramFormat.html#evalRequirement-java.lang.String-java.util.Map-">evalRequirement</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;condition,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="../../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;values)</code>
<div class="block">Parse and evaluate a condition</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><span class="typeNameLabel">HologramFormat.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/config/HologramFormat.html#getFormat-int-java.util.Map-java.util.Map-">getFormat</a></span>(int&nbsp;line,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="../../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;reqMap,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;plaMap)</code>
<div class="block">Get the format for the given line of the hologram</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/config/class-use/HologramFormat.Requirement.html" target="_top">Frames</a></li>
<li><a href="HologramFormat.Requirement.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,166 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.config.HologramFormat (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.config.HologramFormat (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/config/class-use/HologramFormat.html" target="_top">Frames</a></li>
<li><a href="HologramFormat.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.config.HologramFormat" class="title">Uses of Class<br>de.epiceric.shopchest.config.HologramFormat</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config">HologramFormat</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest">de.epiceric.shopchest</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="de.epiceric.shopchest">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config">HologramFormat</a> in <a href="../../../../../de/epiceric/shopchest/package-summary.html">de.epiceric.shopchest</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../de/epiceric/shopchest/package-summary.html">de.epiceric.shopchest</a> that return <a href="../../../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config">HologramFormat</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config">HologramFormat</a></code></td>
<td class="colLast"><span class="typeNameLabel">ShopChest.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/ShopChest.html#getHologramFormat--">getHologramFormat</a></span>()</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/config/class-use/HologramFormat.html" target="_top">Frames</a></li>
<li><a href="HologramFormat.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.config.LanguageConfiguration (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Class de.epiceric.shopchest.config.LanguageConfiguration (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.config.LanguageConfiguration (ShopChest 1.10.4 API)";
parent.document.title="Uses of Class de.epiceric.shopchest.config.LanguageConfiguration (ShopChest 1.12 API)";
}
}
catch(err) {
@ -161,6 +161,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,233 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.config.Placeholder (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.config.Placeholder (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/config/class-use/Placeholder.html" target="_top">Frames</a></li>
<li><a href="Placeholder.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.config.Placeholder" class="title">Uses of Class<br>de.epiceric.shopchest.config.Placeholder</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.config">de.epiceric.shopchest.config</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.language">de.epiceric.shopchest.language</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="de.epiceric.shopchest.config">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> in <a href="../../../../../de/epiceric/shopchest/config/package-summary.html">de.epiceric.shopchest.config</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../de/epiceric/shopchest/config/package-summary.html">de.epiceric.shopchest.config</a> that return <a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a></code></td>
<td class="colLast"><span class="typeNameLabel">Placeholder.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/config/Placeholder.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">Placeholder.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/config/Placeholder.html#values--">values</a></span>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Method parameters in <a href="../../../../../de/epiceric/shopchest/config/package-summary.html">de.epiceric.shopchest.config</a> with type arguments of type <a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><span class="typeNameLabel">HologramFormat.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/config/HologramFormat.html#evalPlaceholder-java.lang.String-java.util.Map-">evalPlaceholder</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;string,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;values)</code>
<div class="block">Parse and evaluate a condition</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><span class="typeNameLabel">HologramFormat.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/config/HologramFormat.html#getFormat-int-java.util.Map-java.util.Map-">getFormat</a></span>(int&nbsp;line,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="../../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;reqMap,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;plaMap)</code>
<div class="block">Get the format for the given line of the hologram</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="de.epiceric.shopchest.language">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a> in <a href="../../../../../de/epiceric/shopchest/language/package-summary.html">de.epiceric.shopchest.language</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../de/epiceric/shopchest/language/package-summary.html">de.epiceric.shopchest.language</a> that return <a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a></code></td>
<td class="colLast"><span class="typeNameLabel">LocalizedMessage.ReplacedPlaceholder.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html#getPlaceholder--">getPlaceholder</a></span>()</code>&nbsp;</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../../../../de/epiceric/shopchest/language/package-summary.html">de.epiceric.shopchest.language</a> with parameters of type <a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html#ReplacedPlaceholder-de.epiceric.shopchest.config.Placeholder-java.lang.String-">ReplacedPlaceholder</a></span>(<a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>&nbsp;placeholder,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;replace)</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/config/class-use/Placeholder.html" target="_top">Frames</a></li>
<li><a href="Placeholder.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -1,218 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.config.Regex (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.config.Regex (ShopChest 1.10.4 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/config/class-use/Regex.html" target="_top">Frames</a></li>
<li><a href="Regex.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.config.Regex" class="title">Uses of Class<br>de.epiceric.shopchest.config.Regex</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.config">de.epiceric.shopchest.config</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.language">de.epiceric.shopchest.language</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="de.epiceric.shopchest.config">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> in <a href="../../../../../de/epiceric/shopchest/config/package-summary.html">de.epiceric.shopchest.config</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../de/epiceric/shopchest/config/package-summary.html">de.epiceric.shopchest.config</a> that return <a href="../../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a></code></td>
<td class="colLast"><span class="typeNameLabel">Regex.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/config/Regex.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">Regex.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/config/Regex.html#values--">values</a></span>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="de.epiceric.shopchest.language">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a> in <a href="../../../../../de/epiceric/shopchest/language/package-summary.html">de.epiceric.shopchest.language</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../de/epiceric/shopchest/language/package-summary.html">de.epiceric.shopchest.language</a> that return <a href="../../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a></code></td>
<td class="colLast"><span class="typeNameLabel">LocalizedMessage.ReplacedRegex.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html#getRegex--">getRegex</a></span>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">LocalizedMessage.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/language/LocalizedMessage.html#getRegexes--">getRegexes</a></span>()</code>&nbsp;</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../../../../de/epiceric/shopchest/language/package-summary.html">de.epiceric.shopchest.language</a> with parameters of type <a href="../../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/language/LocalizedMessage.html#LocalizedMessage-de.epiceric.shopchest.language.LocalizedMessage.Message-java.lang.String-de.epiceric.shopchest.config.Regex...-">LocalizedMessage</a></span>(<a href="../../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;localizedString,
<a href="../../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>...&nbsp;regexes)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html#ReplacedRegex-de.epiceric.shopchest.config.Regex-java.lang.String-">ReplacedRegex</a></span>(<a href="../../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>&nbsp;regex,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;replace)</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/config/class-use/Regex.html" target="_top">Frames</a></li>
<li><a href="Regex.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:35 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.config (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>de.epiceric.shopchest.config (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -15,11 +15,13 @@
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="Config.html" title="class in de.epiceric.shopchest.config" target="classFrame">Config</a></li>
<li><a href="HologramFormat.html" title="class in de.epiceric.shopchest.config" target="classFrame">HologramFormat</a></li>
<li><a href="LanguageConfiguration.html" title="class in de.epiceric.shopchest.config" target="classFrame">LanguageConfiguration</a></li>
</ul>
<h2 title="Enums">Enums</h2>
<ul title="Enums">
<li><a href="Regex.html" title="enum in de.epiceric.shopchest.config" target="classFrame">Regex</a></li>
<li><a href="HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config" target="classFrame">HologramFormat.Requirement</a></li>
<li><a href="Placeholder.html" title="enum in de.epiceric.shopchest.config" target="classFrame">Placeholder</a></li>
</ul>
</div>
</body>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:35 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.config (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>de.epiceric.shopchest.config (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="de.epiceric.shopchest.config (ShopChest 1.10.4 API)";
parent.document.title="de.epiceric.shopchest.config (ShopChest 1.12 API)";
}
}
catch(err) {
@ -44,7 +44,7 @@
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/package-summary.html">Prev&nbsp;Package</a></li>
<li><a href="../../../../de/epiceric/shopchest/command/package-summary.html">Prev&nbsp;Package</a></li>
<li><a href="../../../../de/epiceric/shopchest/event/package-summary.html">Next&nbsp;Package</a></li>
</ul>
<ul class="navList">
@ -88,6 +88,10 @@
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config">HologramFormat</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/config/LanguageConfiguration.html" title="class in de.epiceric.shopchest.config">LanguageConfiguration</a></td>
<td class="colLast">&nbsp;</td>
</tr>
@ -103,7 +107,11 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a></td>
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config">HologramFormat.Requirement</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
@ -132,7 +140,7 @@
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/package-summary.html">Prev&nbsp;Package</a></li>
<li><a href="../../../../de/epiceric/shopchest/command/package-summary.html">Prev&nbsp;Package</a></li>
<li><a href="../../../../de/epiceric/shopchest/event/package-summary.html">Next&nbsp;Package</a></li>
</ul>
<ul class="navList">
@ -158,6 +166,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:36 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.config Class Hierarchy (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>de.epiceric.shopchest.config Class Hierarchy (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="de.epiceric.shopchest.config Class Hierarchy (ShopChest 1.10.4 API)";
parent.document.title="de.epiceric.shopchest.config Class Hierarchy (ShopChest 1.12 API)";
}
}
catch(err) {
@ -44,7 +44,7 @@
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/package-tree.html">Prev</a></li>
<li><a href="../../../../de/epiceric/shopchest/command/package-tree.html">Prev</a></li>
<li><a href="../../../../de/epiceric/shopchest/event/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
@ -83,6 +83,7 @@
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a>
<ul>
<li type="circle">de.epiceric.shopchest.config.<a href="../../../../de/epiceric/shopchest/config/Config.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">Config</span></a></li>
<li type="circle">de.epiceric.shopchest.config.<a href="../../../../de/epiceric/shopchest/config/HologramFormat.html" title="class in de.epiceric.shopchest.config"><span class="typeNameLink">HologramFormat</span></a></li>
<li type="circle">org.bukkit.configuration.MemorySection (implements org.bukkit.configuration.ConfigurationSection)
<ul>
<li type="circle">org.bukkit.configuration.MemoryConfiguration (implements org.bukkit.configuration.Configuration)
@ -105,7 +106,8 @@
<ul>
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Enum</span></a>&lt;E&gt; (implements java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;T&gt;, java.io.<a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>)
<ul>
<li type="circle">de.epiceric.shopchest.config.<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config"><span class="typeNameLink">Regex</span></a></li>
<li type="circle">de.epiceric.shopchest.config.<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config"><span class="typeNameLink">Placeholder</span></a></li>
<li type="circle">de.epiceric.shopchest.config.<a href="../../../../de/epiceric/shopchest/config/HologramFormat.Requirement.html" title="enum in de.epiceric.shopchest.config"><span class="typeNameLink">HologramFormat.Requirement</span></a></li>
</ul>
</li>
</ul>
@ -133,7 +135,7 @@
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/package-tree.html">Prev</a></li>
<li><a href="../../../../de/epiceric/shopchest/command/package-tree.html">Prev</a></li>
<li><a href="../../../../de/epiceric/shopchest/event/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
@ -159,6 +161,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:10 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package de.epiceric.shopchest.config (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Package de.epiceric.shopchest.config (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package de.epiceric.shopchest.config (ShopChest 1.10.4 API)";
parent.document.title="Uses of Package de.epiceric.shopchest.config (ShopChest 1.12 API)";
}
}
catch(err) {
@ -110,6 +110,9 @@
<tr class="altColor">
<td class="colOne"><a href="../../../../de/epiceric/shopchest/config/class-use/Config.html#de.epiceric.shopchest">Config</a>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../de/epiceric/shopchest/config/class-use/HologramFormat.html#de.epiceric.shopchest">HologramFormat</a>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
@ -123,10 +126,13 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../de/epiceric/shopchest/config/class-use/LanguageConfiguration.html#de.epiceric.shopchest.config">LanguageConfiguration</a>&nbsp;</td>
<td class="colOne"><a href="../../../../de/epiceric/shopchest/config/class-use/HologramFormat.Requirement.html#de.epiceric.shopchest.config">HologramFormat.Requirement</a>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../de/epiceric/shopchest/config/class-use/Regex.html#de.epiceric.shopchest.config">Regex</a>&nbsp;</td>
<td class="colOne"><a href="../../../../de/epiceric/shopchest/config/class-use/LanguageConfiguration.html#de.epiceric.shopchest.config">LanguageConfiguration</a>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../de/epiceric/shopchest/config/class-use/Placeholder.html#de.epiceric.shopchest.config">Placeholder</a>&nbsp;</td>
</tr>
</tbody>
</table>
@ -141,7 +147,7 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../de/epiceric/shopchest/config/class-use/Regex.html#de.epiceric.shopchest.language">Regex</a>&nbsp;</td>
<td class="colOne"><a href="../../../../de/epiceric/shopchest/config/class-use/Placeholder.html#de.epiceric.shopchest.language">Placeholder</a>&nbsp;</td>
</tr>
</tbody>
</table>
@ -195,6 +201,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopBuySellEvent.Type (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>ShopBuySellEvent.Type (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopBuySellEvent.Type (ShopChest 1.10.4 API)";
parent.document.title="ShopBuySellEvent.Type (ShopChest 1.12 API)";
}
}
catch(err) {
@ -342,6 +342,6 @@ not permitted.)</div>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopBuySellEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>ShopBuySellEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,13 +13,13 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopBuySellEvent (ShopChest 1.10.4 API)";
parent.document.title="ShopBuySellEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -202,22 +202,14 @@ implements org.bukkit.event.Cancellable</pre>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopBuySellEvent.html#getNewPrice--">getNewPrice</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>org.bukkit.entity.Player</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopBuySellEvent.html#getPlayer--">getPlayer</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopBuySellEvent.html#getShop--">getShop</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/event/ShopBuySellEvent.Type.html" title="enum in de.epiceric.shopchest.event">ShopBuySellEvent.Type</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopBuySellEvent.html#getType--">getType</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i5" class="rowColor">
<tr id="i3" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopBuySellEvent.html#isCancelled--">isCancelled</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i6" class="altColor">
<tr id="i4" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopBuySellEvent.html#setCancelled-boolean-">setCancelled</a></span>(boolean&nbsp;cancel)</code>&nbsp;</td>
</tr>
@ -227,7 +219,7 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></h3>
<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlers--">getHandlers</a></code></li>
<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlerList--">getHandlerList</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlers--">getHandlers</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getPlayer--">getPlayer</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getShop--">getShop</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.bukkit.event.Event">
@ -278,21 +270,6 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getShop--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getShop</h4>
<pre>public&nbsp;<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&nbsp;getShop()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getShop--">getShop</a></code>&nbsp;in class&nbsp;<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Shop which is involved in this event</dd>
</dl>
</li>
</ul>
<a name="getType--">
<!-- -->
</a>
@ -332,21 +309,6 @@ implements org.bukkit.event.Cancellable</pre>
</dl>
</li>
</ul>
<a name="getPlayer--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPlayer</h4>
<pre>public&nbsp;org.bukkit.entity.Player&nbsp;getPlayer()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getPlayer--">getPlayer</a></code>&nbsp;in class&nbsp;<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Player who is involved in this event</dd>
</dl>
</li>
</ul>
<a name="isCancelled--">
<!-- -->
</a>
@ -442,6 +404,6 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopCreateEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>ShopCreateEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,13 +13,13 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopCreateEvent (ShopChest 1.10.4 API)";
parent.document.title="ShopCreateEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
var methods = {"i0":10,"i1":10,"i2":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -185,18 +185,10 @@ implements org.bukkit.event.Cancellable</pre>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopCreateEvent.html#getCreationPrice--">getCreationPrice</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>org.bukkit.entity.Player</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopCreateEvent.html#getPlayer--">getPlayer</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopCreateEvent.html#getShop--">getShop</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopCreateEvent.html#isCancelled--">isCancelled</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i4" class="altColor">
<tr id="i2" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopCreateEvent.html#setCancelled-boolean-">setCancelled</a></span>(boolean&nbsp;cancel)</code>&nbsp;</td>
</tr>
@ -206,7 +198,7 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></h3>
<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlers--">getHandlers</a></code></li>
<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlerList--">getHandlerList</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlers--">getHandlers</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getPlayer--">getPlayer</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getShop--">getShop</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.bukkit.event.Event">
@ -255,36 +247,6 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getShop--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getShop</h4>
<pre>public&nbsp;<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&nbsp;getShop()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getShop--">getShop</a></code>&nbsp;in class&nbsp;<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Shop which is involved in this event</dd>
</dl>
</li>
</ul>
<a name="getPlayer--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPlayer</h4>
<pre>public&nbsp;org.bukkit.entity.Player&nbsp;getPlayer()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getPlayer--">getPlayer</a></code>&nbsp;in class&nbsp;<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Player who is involved in this event</dd>
</dl>
</li>
</ul>
<a name="getCreationPrice--">
<!-- -->
</a>
@ -393,6 +355,6 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>ShopEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,14 +13,14 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopEvent (ShopChest 1.10.4 API)";
parent.document.title="ShopEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":6,"i2":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
var methods = {"i0":9,"i1":10,"i2":10,"i3":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
@ -115,7 +115,7 @@ var activeTableTab = "activeTableTab";
<li class="blockList">
<dl>
<dt>Direct Known Subclasses:</dt>
<dd><a href="../../../../de/epiceric/shopchest/event/ShopBuySellEvent.html" title="class in de.epiceric.shopchest.event">ShopBuySellEvent</a>, <a href="../../../../de/epiceric/shopchest/event/ShopCreateEvent.html" title="class in de.epiceric.shopchest.event">ShopCreateEvent</a>, <a href="../../../../de/epiceric/shopchest/event/ShopInfoEvent.html" title="class in de.epiceric.shopchest.event">ShopInfoEvent</a>, <a href="../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html" title="class in de.epiceric.shopchest.event">ShopPreCreateEvent</a>, <a href="../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html" title="class in de.epiceric.shopchest.event">ShopRemoveEvent</a></dd>
<dd><a href="../../../../de/epiceric/shopchest/event/ShopBuySellEvent.html" title="class in de.epiceric.shopchest.event">ShopBuySellEvent</a>, <a href="../../../../de/epiceric/shopchest/event/ShopCreateEvent.html" title="class in de.epiceric.shopchest.event">ShopCreateEvent</a>, <a href="../../../../de/epiceric/shopchest/event/ShopInfoEvent.html" title="class in de.epiceric.shopchest.event">ShopInfoEvent</a>, <a href="../../../../de/epiceric/shopchest/event/ShopOpenEvent.html" title="class in de.epiceric.shopchest.event">ShopOpenEvent</a>, <a href="../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html" title="class in de.epiceric.shopchest.event">ShopPreCreateEvent</a>, <a href="../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html" title="class in de.epiceric.shopchest.event">ShopRemoveEvent</a></dd>
</dl>
<hr>
<br>
@ -154,7 +154,8 @@ extends org.bukkit.event.Event</pre>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#ShopEvent--">ShopEvent</a></span>()</code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#ShopEvent-org.bukkit.entity.Player-de.epiceric.shopchest.shop.Shop-">ShopEvent</a></span>(org.bukkit.entity.Player&nbsp;player,
<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&nbsp;shop)</code>&nbsp;</td>
</tr>
</table>
</li>
@ -166,21 +167,25 @@ extends org.bukkit.event.Event</pre>
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlerList--">getHandlerList</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlers--">getHandlers</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>abstract org.bukkit.entity.Player</code></td>
<tr id="i2" class="altColor">
<td class="colFirst"><code>org.bukkit.entity.Player</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getPlayer--">getPlayer</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>abstract <a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a></code></td>
<tr id="i3" class="rowColor">
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getShop--">getShop</a></span>()</code>&nbsp;</td>
</tr>
</table>
@ -212,13 +217,14 @@ extends org.bukkit.event.Event</pre>
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ShopEvent--">
<a name="ShopEvent-org.bukkit.entity.Player-de.epiceric.shopchest.shop.Shop-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ShopEvent</h4>
<pre>public&nbsp;ShopEvent()</pre>
<pre>public&nbsp;ShopEvent(org.bukkit.entity.Player&nbsp;player,
<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&nbsp;shop)</pre>
</li>
</ul>
</li>
@ -235,7 +241,7 @@ extends org.bukkit.event.Event</pre>
<ul class="blockList">
<li class="blockList">
<h4>getShop</h4>
<pre>public abstract&nbsp;<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&nbsp;getShop()</pre>
<pre>public&nbsp;<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&nbsp;getShop()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Shop which is involved in this event</dd>
@ -248,13 +254,22 @@ extends org.bukkit.event.Event</pre>
<ul class="blockList">
<li class="blockList">
<h4>getPlayer</h4>
<pre>public abstract&nbsp;org.bukkit.entity.Player&nbsp;getPlayer()</pre>
<pre>public&nbsp;org.bukkit.entity.Player&nbsp;getPlayer()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Player who is involved in this event</dd>
</dl>
</li>
</ul>
<a name="getHandlerList--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHandlerList</h4>
<pre>public static&nbsp;org.bukkit.event.HandlerList&nbsp;getHandlerList()</pre>
</li>
</ul>
<a name="getHandlers--">
<!-- -->
</a>
@ -337,6 +352,6 @@ extends org.bukkit.event.Event</pre>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopInfoEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>ShopInfoEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,13 +13,13 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopInfoEvent (ShopChest 1.10.4 API)";
parent.document.title="ShopInfoEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10};
var methods = {"i0":10,"i1":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -51,7 +51,7 @@ var activeTableTab = "activeTableTab";
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopInitializedEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopInfoEvent.html" target="_top">Frames</a></li>
@ -180,18 +180,10 @@ implements org.bukkit.event.Cancellable</pre>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>org.bukkit.entity.Player</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopInfoEvent.html#getPlayer--">getPlayer</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopInfoEvent.html#getShop--">getShop</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopInfoEvent.html#isCancelled--">isCancelled</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i3" class="rowColor">
<tr id="i1" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopInfoEvent.html#setCancelled-boolean-">setCancelled</a></span>(boolean&nbsp;cancel)</code>&nbsp;</td>
</tr>
@ -201,7 +193,7 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></h3>
<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlers--">getHandlers</a></code></li>
<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlerList--">getHandlerList</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlers--">getHandlers</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getPlayer--">getPlayer</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getShop--">getShop</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.bukkit.event.Event">
@ -249,36 +241,6 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getShop--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getShop</h4>
<pre>public&nbsp;<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&nbsp;getShop()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getShop--">getShop</a></code>&nbsp;in class&nbsp;<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Shop which is involved in this event</dd>
</dl>
</li>
</ul>
<a name="getPlayer--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPlayer</h4>
<pre>public&nbsp;org.bukkit.entity.Player&nbsp;getPlayer()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getPlayer--">getPlayer</a></code>&nbsp;in class&nbsp;<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Player who is involved in this event</dd>
</dl>
</li>
</ul>
<a name="isCancelled--">
<!-- -->
</a>
@ -334,7 +296,7 @@ implements org.bukkit.event.Cancellable</pre>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopInitializedEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopInfoEvent.html" target="_top">Frames</a></li>
@ -374,6 +336,6 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,330 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopInitializedEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopInitializedEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":9,"i2":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ShopInitializedEvent.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopInfoEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopOpenEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopInitializedEvent.html" target="_top">Frames</a></li>
<li><a href="ShopInitializedEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.classes.inherited.from.class.org.bukkit.event.Event">Nested</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.event</div>
<h2 title="Class ShopInitializedEvent" class="title">Class ShopInitializedEvent</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>org.bukkit.event.Event</li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.event.ShopInitializedEvent</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">ShopInitializedEvent</span>
extends org.bukkit.event.Event</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="nested.classes.inherited.from.class.org.bukkit.event.Event">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from class&nbsp;org.bukkit.event.Event</h3>
<code>org.bukkit.event.Event.Result</code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopInitializedEvent.html#ShopInitializedEvent-int-">ShopInitializedEvent</a></span>(int&nbsp;amount)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopInitializedEvent.html#getAmount--">getAmount</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopInitializedEvent.html#getHandlerList--">getHandlerList</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopInitializedEvent.html#getHandlers--">getHandlers</a></span>()</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.bukkit.event.Event">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.bukkit.event.Event</h3>
<code>getEventName, isAsynchronous</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ShopInitializedEvent-int-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ShopInitializedEvent</h4>
<pre>public&nbsp;ShopInitializedEvent(int&nbsp;amount)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getAmount--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getAmount</h4>
<pre>public&nbsp;int&nbsp;getAmount()</pre>
</li>
</ul>
<a name="getHandlerList--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHandlerList</h4>
<pre>public static&nbsp;org.bukkit.event.HandlerList&nbsp;getHandlerList()</pre>
</li>
</ul>
<a name="getHandlers--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getHandlers</h4>
<pre>public&nbsp;org.bukkit.event.HandlerList&nbsp;getHandlers()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>getHandlers</code>&nbsp;in class&nbsp;<code>org.bukkit.event.Event</code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ShopInitializedEvent.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopInfoEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopOpenEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopInitializedEvent.html" target="_top">Frames</a></li>
<li><a href="ShopInitializedEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.classes.inherited.from.class.org.bukkit.event.Event">Nested</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,341 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopOpenEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopOpenEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ShopOpenEvent.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopInitializedEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopOpenEvent.html" target="_top">Frames</a></li>
<li><a href="ShopOpenEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.classes.inherited.from.class.org.bukkit.event.Event">Nested</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.event</div>
<h2 title="Class ShopOpenEvent" class="title">Class ShopOpenEvent</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>org.bukkit.event.Event</li>
<li>
<ul class="inheritance">
<li><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">de.epiceric.shopchest.event.ShopEvent</a></li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.event.ShopOpenEvent</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>org.bukkit.event.Cancellable</dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">ShopOpenEvent</span>
extends <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a>
implements org.bukkit.event.Cancellable</pre>
<div class="block">Called when a player opens a shop (clicks on a chest)</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="nested.classes.inherited.from.class.org.bukkit.event.Event">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from class&nbsp;org.bukkit.event.Event</h3>
<code>org.bukkit.event.Event.Result</code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopOpenEvent.html#ShopOpenEvent-org.bukkit.entity.Player-de.epiceric.shopchest.shop.Shop-">ShopOpenEvent</a></span>(org.bukkit.entity.Player&nbsp;player,
<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&nbsp;shop)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopOpenEvent.html#isCancelled--">isCancelled</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopOpenEvent.html#setCancelled-boolean-">setCancelled</a></span>(boolean&nbsp;cancel)</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.de.epiceric.shopchest.event.ShopEvent">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></h3>
<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlerList--">getHandlerList</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlers--">getHandlers</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getPlayer--">getPlayer</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getShop--">getShop</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.bukkit.event.Event">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.bukkit.event.Event</h3>
<code>getEventName, isAsynchronous</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ShopOpenEvent-org.bukkit.entity.Player-de.epiceric.shopchest.shop.Shop-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ShopOpenEvent</h4>
<pre>public&nbsp;ShopOpenEvent(org.bukkit.entity.Player&nbsp;player,
<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&nbsp;shop)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="isCancelled--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isCancelled</h4>
<pre>public&nbsp;boolean&nbsp;isCancelled()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>isCancelled</code>&nbsp;in interface&nbsp;<code>org.bukkit.event.Cancellable</code></dd>
</dl>
</li>
</ul>
<a name="setCancelled-boolean-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>setCancelled</h4>
<pre>public&nbsp;void&nbsp;setCancelled(boolean&nbsp;cancel)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>setCancelled</code>&nbsp;in interface&nbsp;<code>org.bukkit.event.Cancellable</code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ShopOpenEvent.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopInitializedEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopOpenEvent.html" target="_top">Frames</a></li>
<li><a href="ShopOpenEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.classes.inherited.from.class.org.bukkit.event.Event">Nested</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopPreCreateEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>ShopPreCreateEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,13 +13,13 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopPreCreateEvent (ShopChest 1.10.4 API)";
parent.document.title="ShopPreCreateEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10};
var methods = {"i0":10,"i1":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -50,7 +50,7 @@ var activeTableTab = "activeTableTab";
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopInfoEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopOpenEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreInfoEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
@ -180,18 +180,10 @@ implements org.bukkit.event.Cancellable</pre>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>org.bukkit.entity.Player</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html#getPlayer--">getPlayer</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html#getShop--">getShop</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html#isCancelled--">isCancelled</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i3" class="rowColor">
<tr id="i1" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html#setCancelled-boolean-">setCancelled</a></span>(boolean&nbsp;cancel)</code>&nbsp;</td>
</tr>
@ -201,7 +193,7 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></h3>
<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlers--">getHandlers</a></code></li>
<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlerList--">getHandlerList</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlers--">getHandlers</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getPlayer--">getPlayer</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getShop--">getShop</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.bukkit.event.Event">
@ -249,36 +241,6 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getPlayer--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPlayer</h4>
<pre>public&nbsp;org.bukkit.entity.Player&nbsp;getPlayer()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getPlayer--">getPlayer</a></code>&nbsp;in class&nbsp;<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Player who is involved in this event</dd>
</dl>
</li>
</ul>
<a name="getShop--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getShop</h4>
<pre>public&nbsp;<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&nbsp;getShop()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getShop--">getShop</a></code>&nbsp;in class&nbsp;<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Shop which is involved in this event</dd>
</dl>
</li>
</ul>
<a name="isCancelled--">
<!-- -->
</a>
@ -333,7 +295,7 @@ implements org.bukkit.event.Cancellable</pre>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopInfoEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopOpenEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreInfoEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
@ -374,6 +336,6 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopPreInfoEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>ShopPreInfoEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,14 +13,14 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopPreInfoEvent (ShopChest 1.10.4 API)";
parent.document.title="ShopPreInfoEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var methods = {"i0":9,"i1":10,"i2":10,"i3":10,"i4":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
@ -51,7 +51,7 @@ var activeTableTab = "activeTableTab";
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreRemoveEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreOpenEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopPreInfoEvent.html" target="_top">Frames</a></li>
@ -168,24 +168,28 @@ implements org.bukkit.event.Cancellable</pre>
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreInfoEvent.html#getHandlerList--">getHandlerList</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreInfoEvent.html#getHandlers--">getHandlers</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<tr id="i2" class="altColor">
<td class="colFirst"><code>org.bukkit.entity.Player</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreInfoEvent.html#getPlayer--">getPlayer</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<tr id="i3" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreInfoEvent.html#isCancelled--">isCancelled</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i3" class="rowColor">
<tr id="i4" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreInfoEvent.html#setCancelled-boolean-">setCancelled</a></span>(boolean&nbsp;cancel)</code>&nbsp;</td>
</tr>
@ -274,6 +278,15 @@ implements org.bukkit.event.Cancellable</pre>
</dl>
</li>
</ul>
<a name="getHandlerList--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHandlerList</h4>
<pre>public static&nbsp;org.bukkit.event.HandlerList&nbsp;getHandlerList()</pre>
</li>
</ul>
<a name="getHandlers--">
<!-- -->
</a>
@ -316,7 +329,7 @@ implements org.bukkit.event.Cancellable</pre>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreRemoveEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreOpenEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopPreInfoEvent.html" target="_top">Frames</a></li>
@ -356,6 +369,6 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,374 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopPreOpenEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopPreOpenEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":9,"i1":10,"i2":10,"i3":10,"i4":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ShopPreOpenEvent.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreInfoEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreRemoveEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopPreOpenEvent.html" target="_top">Frames</a></li>
<li><a href="ShopPreOpenEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.classes.inherited.from.class.org.bukkit.event.Event">Nested</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.event</div>
<h2 title="Class ShopPreOpenEvent" class="title">Class ShopPreOpenEvent</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>org.bukkit.event.Event</li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.event.ShopPreOpenEvent</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>org.bukkit.event.Cancellable</dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">ShopPreOpenEvent</span>
extends org.bukkit.event.Event
implements org.bukkit.event.Cancellable</pre>
<div class="block">Called when a player wants to open a shop (enters the command)</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="nested.classes.inherited.from.class.org.bukkit.event.Event">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from class&nbsp;org.bukkit.event.Event</h3>
<code>org.bukkit.event.Event.Result</code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreOpenEvent.html#ShopPreOpenEvent-org.bukkit.entity.Player-">ShopPreOpenEvent</a></span>(org.bukkit.entity.Player&nbsp;player)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreOpenEvent.html#getHandlerList--">getHandlerList</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreOpenEvent.html#getHandlers--">getHandlers</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>org.bukkit.entity.Player</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreOpenEvent.html#getPlayer--">getPlayer</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreOpenEvent.html#isCancelled--">isCancelled</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreOpenEvent.html#setCancelled-boolean-">setCancelled</a></span>(boolean&nbsp;cancel)</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.bukkit.event.Event">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.bukkit.event.Event</h3>
<code>getEventName, isAsynchronous</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ShopPreOpenEvent-org.bukkit.entity.Player-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ShopPreOpenEvent</h4>
<pre>public&nbsp;ShopPreOpenEvent(org.bukkit.entity.Player&nbsp;player)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getPlayer--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPlayer</h4>
<pre>public&nbsp;org.bukkit.entity.Player&nbsp;getPlayer()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Player who is involved in this event</dd>
</dl>
</li>
</ul>
<a name="isCancelled--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isCancelled</h4>
<pre>public&nbsp;boolean&nbsp;isCancelled()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>isCancelled</code>&nbsp;in interface&nbsp;<code>org.bukkit.event.Cancellable</code></dd>
</dl>
</li>
</ul>
<a name="setCancelled-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setCancelled</h4>
<pre>public&nbsp;void&nbsp;setCancelled(boolean&nbsp;cancel)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>setCancelled</code>&nbsp;in interface&nbsp;<code>org.bukkit.event.Cancellable</code></dd>
</dl>
</li>
</ul>
<a name="getHandlerList--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHandlerList</h4>
<pre>public static&nbsp;org.bukkit.event.HandlerList&nbsp;getHandlerList()</pre>
</li>
</ul>
<a name="getHandlers--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getHandlers</h4>
<pre>public&nbsp;org.bukkit.event.HandlerList&nbsp;getHandlers()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>getHandlers</code>&nbsp;in class&nbsp;<code>org.bukkit.event.Event</code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ShopPreOpenEvent.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreInfoEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreRemoveEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopPreOpenEvent.html" target="_top">Frames</a></li>
<li><a href="ShopPreOpenEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.classes.inherited.from.class.org.bukkit.event.Event">Nested</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopPreRemoveEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>ShopPreRemoveEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,14 +13,14 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopPreRemoveEvent (ShopChest 1.10.4 API)";
parent.document.title="ShopPreRemoveEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var methods = {"i0":9,"i1":10,"i2":10,"i3":10,"i4":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
@ -50,7 +50,7 @@ var activeTableTab = "activeTableTab";
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreInfoEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreOpenEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopReloadEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
@ -168,24 +168,28 @@ implements org.bukkit.event.Cancellable</pre>
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreRemoveEvent.html#getHandlerList--">getHandlerList</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreRemoveEvent.html#getHandlers--">getHandlers</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<tr id="i2" class="altColor">
<td class="colFirst"><code>org.bukkit.entity.Player</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreRemoveEvent.html#getPlayer--">getPlayer</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<tr id="i3" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreRemoveEvent.html#isCancelled--">isCancelled</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i3" class="rowColor">
<tr id="i4" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopPreRemoveEvent.html#setCancelled-boolean-">setCancelled</a></span>(boolean&nbsp;cancel)</code>&nbsp;</td>
</tr>
@ -274,6 +278,15 @@ implements org.bukkit.event.Cancellable</pre>
</dl>
</li>
</ul>
<a name="getHandlerList--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHandlerList</h4>
<pre>public static&nbsp;org.bukkit.event.HandlerList&nbsp;getHandlerList()</pre>
</li>
</ul>
<a name="getHandlers--">
<!-- -->
</a>
@ -315,7 +328,7 @@ implements org.bukkit.event.Cancellable</pre>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreInfoEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreOpenEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopReloadEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
@ -356,6 +369,6 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopReloadEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>ShopReloadEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,14 +13,14 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopReloadEvent (ShopChest 1.10.4 API)";
parent.document.title="ShopReloadEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var methods = {"i0":9,"i1":10,"i2":10,"i3":10,"i4":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
@ -51,7 +51,7 @@ var activeTableTab = "activeTableTab";
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreRemoveEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopReloadEvent.html" target="_top">Frames</a></li>
@ -168,24 +168,28 @@ implements org.bukkit.event.Cancellable</pre>
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopReloadEvent.html#getHandlerList--">getHandlerList</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopReloadEvent.html#getHandlers--">getHandlers</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<tr id="i2" class="altColor">
<td class="colFirst"><code>org.bukkit.command.CommandSender</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopReloadEvent.html#getSender--">getSender</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<tr id="i3" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopReloadEvent.html#isCancelled--">isCancelled</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i3" class="rowColor">
<tr id="i4" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopReloadEvent.html#setCancelled-boolean-">setCancelled</a></span>(boolean&nbsp;cancel)</code>&nbsp;</td>
</tr>
@ -274,6 +278,15 @@ implements org.bukkit.event.Cancellable</pre>
</dl>
</li>
</ul>
<a name="getHandlerList--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHandlerList</h4>
<pre>public static&nbsp;org.bukkit.event.HandlerList&nbsp;getHandlerList()</pre>
</li>
</ul>
<a name="setCancelled-boolean-">
<!-- -->
</a>
@ -316,7 +329,7 @@ implements org.bukkit.event.Cancellable</pre>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopPreRemoveEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopReloadEvent.html" target="_top">Frames</a></li>
@ -356,6 +369,6 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,399 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopRemoveAllEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopRemoveAllEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":9,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ShopRemoveAllEvent.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopReloadEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopRemoveAllEvent.html" target="_top">Frames</a></li>
<li><a href="ShopRemoveAllEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.classes.inherited.from.class.org.bukkit.event.Event">Nested</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.event</div>
<h2 title="Class ShopRemoveAllEvent" class="title">Class ShopRemoveAllEvent</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>org.bukkit.event.Event</li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.event.ShopRemoveAllEvent</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>org.bukkit.event.Cancellable</dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">ShopRemoveAllEvent</span>
extends org.bukkit.event.Event
implements org.bukkit.event.Cancellable</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="nested.classes.inherited.from.class.org.bukkit.event.Event">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from class&nbsp;org.bukkit.event.Event</h3>
<code>org.bukkit.event.Event.Result</code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html#ShopRemoveAllEvent-org.bukkit.command.CommandSender-org.bukkit.OfflinePlayer-java.util.List-">ShopRemoveAllEvent</a></span>(org.bukkit.command.CommandSender&nbsp;sender,
org.bukkit.OfflinePlayer&nbsp;vendor,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&gt;&nbsp;shops)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html#getHandlerList--">getHandlerList</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html#getHandlers--">getHandlers</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>org.bukkit.command.CommandSender</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html#getSender--">getSender</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html#getShops--">getShops</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>org.bukkit.OfflinePlayer</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html#getVendor--">getVendor</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html#isCancelled--">isCancelled</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html#setCancelled-boolean-">setCancelled</a></span>(boolean&nbsp;cancelled)</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.bukkit.event.Event">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.bukkit.event.Event</h3>
<code>getEventName, isAsynchronous</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ShopRemoveAllEvent-org.bukkit.command.CommandSender-org.bukkit.OfflinePlayer-java.util.List-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ShopRemoveAllEvent</h4>
<pre>public&nbsp;ShopRemoveAllEvent(org.bukkit.command.CommandSender&nbsp;sender,
org.bukkit.OfflinePlayer&nbsp;vendor,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&gt;&nbsp;shops)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getSender--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSender</h4>
<pre>public&nbsp;org.bukkit.command.CommandSender&nbsp;getSender()</pre>
</li>
</ul>
<a name="getVendor--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getVendor</h4>
<pre>public&nbsp;org.bukkit.OfflinePlayer&nbsp;getVendor()</pre>
</li>
</ul>
<a name="getShops--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getShops</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&gt;&nbsp;getShops()</pre>
</li>
</ul>
<a name="getHandlers--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHandlers</h4>
<pre>public&nbsp;org.bukkit.event.HandlerList&nbsp;getHandlers()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>getHandlers</code>&nbsp;in class&nbsp;<code>org.bukkit.event.Event</code></dd>
</dl>
</li>
</ul>
<a name="isCancelled--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isCancelled</h4>
<pre>public&nbsp;boolean&nbsp;isCancelled()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>isCancelled</code>&nbsp;in interface&nbsp;<code>org.bukkit.event.Cancellable</code></dd>
</dl>
</li>
</ul>
<a name="getHandlerList--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHandlerList</h4>
<pre>public static&nbsp;org.bukkit.event.HandlerList&nbsp;getHandlerList()</pre>
</li>
</ul>
<a name="setCancelled-boolean-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>setCancelled</h4>
<pre>public&nbsp;void&nbsp;setCancelled(boolean&nbsp;cancelled)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>setCancelled</code>&nbsp;in interface&nbsp;<code>org.bukkit.event.Cancellable</code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ShopRemoveAllEvent.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopReloadEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopRemoveAllEvent.html" target="_top">Frames</a></li>
<li><a href="ShopRemoveAllEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.classes.inherited.from.class.org.bukkit.event.Event">Nested</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopRemoveEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>ShopRemoveEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,13 +13,13 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopRemoveEvent (ShopChest 1.10.4 API)";
parent.document.title="ShopRemoveEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10};
var methods = {"i0":10,"i1":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -50,8 +50,8 @@ var activeTableTab = "activeTableTab";
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopReloadEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li>Next&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopRemoveEvent.html" target="_top">Frames</a></li>
@ -180,18 +180,10 @@ implements org.bukkit.event.Cancellable</pre>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>org.bukkit.entity.Player</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html#getPlayer--">getPlayer</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html#getShop--">getShop</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html#isCancelled--">isCancelled</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i3" class="rowColor">
<tr id="i1" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html#setCancelled-boolean-">setCancelled</a></span>(boolean&nbsp;cancel)</code>&nbsp;</td>
</tr>
@ -201,7 +193,7 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></h3>
<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlers--">getHandlers</a></code></li>
<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlerList--">getHandlerList</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getHandlers--">getHandlers</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getPlayer--">getPlayer</a>, <a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getShop--">getShop</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.bukkit.event.Event">
@ -249,36 +241,6 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getShop--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getShop</h4>
<pre>public&nbsp;<a href="../../../../de/epiceric/shopchest/shop/Shop.html" title="class in de.epiceric.shopchest.shop">Shop</a>&nbsp;getShop()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getShop--">getShop</a></code>&nbsp;in class&nbsp;<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Shop which is involved in this event</dd>
</dl>
</li>
</ul>
<a name="getPlayer--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPlayer</h4>
<pre>public&nbsp;org.bukkit.entity.Player&nbsp;getPlayer()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html#getPlayer--">getPlayer</a></code>&nbsp;in class&nbsp;<code><a href="../../../../de/epiceric/shopchest/event/ShopEvent.html" title="class in de.epiceric.shopchest.event">ShopEvent</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Player who is involved in this event</dd>
</dl>
</li>
</ul>
<a name="isCancelled--">
<!-- -->
</a>
@ -333,8 +295,8 @@ implements org.bukkit.event.Cancellable</pre>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopReloadEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li>Next&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopRemoveEvent.html" target="_top">Frames</a></li>
@ -374,6 +336,6 @@ implements org.bukkit.event.Cancellable</pre>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:35 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Database.ShopInfo (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>ShopUpdateEvent.UpdateQuality (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,14 +13,14 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Database.ShopInfo (ShopChest 1.10.4 API)";
parent.document.title="ShopUpdateEvent.UpdateQuality (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":9,"i1":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
var methods = {"i0":10,"i1":9,"i2":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
@ -41,7 +41,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Database.ShopInfo.html">Use</a></li>
<li><a href="class-use/ShopUpdateEvent.UpdateQuality.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
@ -50,12 +50,12 @@ var activeTableTab = "activeTableTab";
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/sql/Database.DatabaseType.html" title="enum in de.epiceric.shopchest.sql"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/sql/MySQL.html" title="class in de.epiceric.shopchest.sql"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li>Next&nbsp;Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/sql/Database.ShopInfo.html" target="_top">Frames</a></li>
<li><a href="Database.ShopInfo.html" target="_top">No&nbsp;Frames</a></li>
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" target="_top">Frames</a></li>
<li><a href="ShopUpdateEvent.UpdateQuality.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
@ -93,18 +93,18 @@ var activeTableTab = "activeTableTab";
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.sql</div>
<h2 title="Enum Database.ShopInfo" class="title">Enum Database.ShopInfo</h2>
<div class="subTitle">de.epiceric.shopchest.event</div>
<h2 title="Enum ShopUpdateEvent.UpdateQuality" class="title">Enum ShopUpdateEvent.UpdateQuality</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">java.lang.Enum</a>&lt;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a>&gt;</li>
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">java.lang.Enum</a>&lt;<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a>&gt;</li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.sql.Database.ShopInfo</li>
<li>de.epiceric.shopchest.event.ShopUpdateEvent.UpdateQuality</li>
</ul>
</li>
</ul>
@ -115,16 +115,16 @@ var activeTableTab = "activeTableTab";
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a>&gt;</dd>
<dd><a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a>&gt;</dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../../de/epiceric/shopchest/sql/Database.html" title="class in de.epiceric.shopchest.sql">Database</a></dd>
<dd><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event">ShopUpdateEvent</a></dd>
</dl>
<hr>
<br>
<pre>public static enum <span class="typeNameLabel">Database.ShopInfo</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a>&lt;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a>&gt;</pre>
<pre>public static enum <span class="typeNameLabel">ShopUpdateEvent.UpdateQuality</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a>&lt;<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a>&gt;</pre>
</li>
</ul>
</div>
@ -143,37 +143,25 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
<th class="colOne" scope="col">Enum Constant and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html#BUYPRICE">BUYPRICE</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html#FAST">FAST</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html#LOCATION">LOCATION</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html#FASTER">FASTER</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html#PRODUCT">PRODUCT</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html#FASTEST">FASTEST</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html#SELLPRICE">SELLPRICE</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html#NORMAL">NORMAL</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html#SHOP">SHOP</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html#SLOW">SLOW</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html#SHOPTYPE">SHOPTYPE</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html#SLOWER">SLOWER</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html#VENDOR">VENDOR</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html#WORLD">WORLD</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html#X">X</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html#Y">Y</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html#Z">Z</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html#SLOWEST">SLOWEST</a></span></code>&nbsp;</td>
</tr>
</table>
</li>
@ -185,20 +173,24 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static <a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html#getTime--">getTime</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html#values--">values</a></span>()</code>
<tr id="i2" class="altColor">
<td class="colFirst"><code>static <a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html#values--">values</a></span>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
@ -232,103 +224,67 @@ the order they are declared.</div>
<!-- -->
</a>
<h3>Enum Constant Detail</h3>
<a name="SHOP">
<a name="SLOWEST">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SHOP</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a> SHOP</pre>
<h4>SLOWEST</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a> SLOWEST</pre>
</li>
</ul>
<a name="VENDOR">
<a name="SLOWER">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>VENDOR</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a> VENDOR</pre>
<h4>SLOWER</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a> SLOWER</pre>
</li>
</ul>
<a name="PRODUCT">
<a name="SLOW">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PRODUCT</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a> PRODUCT</pre>
<h4>SLOW</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a> SLOW</pre>
</li>
</ul>
<a name="WORLD">
<a name="NORMAL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>WORLD</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a> WORLD</pre>
<h4>NORMAL</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a> NORMAL</pre>
</li>
</ul>
<a name="X">
<a name="FAST">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>X</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a> X</pre>
<h4>FAST</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a> FAST</pre>
</li>
</ul>
<a name="Y">
<a name="FASTER">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>Y</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a> Y</pre>
<h4>FASTER</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a> FASTER</pre>
</li>
</ul>
<a name="Z">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>Z</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a> Z</pre>
</li>
</ul>
<a name="LOCATION">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>LOCATION</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a> LOCATION</pre>
</li>
</ul>
<a name="BUYPRICE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BUYPRICE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a> BUYPRICE</pre>
</li>
</ul>
<a name="SELLPRICE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SELLPRICE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a> SELLPRICE</pre>
</li>
</ul>
<a name="SHOPTYPE">
<a name="FASTEST">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>SHOPTYPE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a> SHOPTYPE</pre>
<h4>FASTEST</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a> FASTEST</pre>
</li>
</ul>
</li>
@ -345,12 +301,12 @@ the order they are declared.</div>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre>public static&nbsp;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a>[]&nbsp;values()</pre>
<pre>public static&nbsp;<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a>[]&nbsp;values()</pre>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
<pre>
for (Database.ShopInfo c : Database.ShopInfo.values())
for (ShopUpdateEvent.UpdateQuality c : ShopUpdateEvent.UpdateQuality.values())
&nbsp; System.out.println(c);
</pre></div>
<dl>
@ -362,10 +318,10 @@ for (Database.ShopInfo c : Database.ShopInfo.values())
<a name="valueOf-java.lang.String-">
<!-- -->
</a>
<ul class="blockListLast">
<ul class="blockList">
<li class="blockList">
<h4>valueOf</h4>
<pre>public static&nbsp;<a href="../../../../de/epiceric/shopchest/sql/Database.ShopInfo.html" title="enum in de.epiceric.shopchest.sql">Database.ShopInfo</a>&nbsp;valueOf(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
<pre>public static&nbsp;<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a>&nbsp;valueOf(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
<div class="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
@ -381,6 +337,15 @@ not permitted.)</div>
</dl>
</li>
</ul>
<a name="getTime--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getTime</h4>
<pre>public&nbsp;long&nbsp;getTime()</pre>
</li>
</ul>
</li>
</ul>
</li>
@ -400,7 +365,7 @@ not permitted.)</div>
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Database.ShopInfo.html">Use</a></li>
<li><a href="class-use/ShopUpdateEvent.UpdateQuality.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
@ -409,12 +374,12 @@ not permitted.)</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/sql/Database.DatabaseType.html" title="enum in de.epiceric.shopchest.sql"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/sql/MySQL.html" title="class in de.epiceric.shopchest.sql"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li>Next&nbsp;Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/sql/Database.ShopInfo.html" target="_top">Frames</a></li>
<li><a href="Database.ShopInfo.html" target="_top">No&nbsp;Frames</a></li>
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" target="_top">Frames</a></li>
<li><a href="ShopUpdateEvent.UpdateQuality.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
@ -450,6 +415,6 @@ not permitted.)</div>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,330 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:07 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ShopUpdateEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ShopUpdateEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":9,"i1":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ShopUpdateEvent.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopUpdateEvent.html" target="_top">Frames</a></li>
<li><a href="ShopUpdateEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.event</div>
<h2 title="Class ShopUpdateEvent" class="title">Class ShopUpdateEvent</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>org.bukkit.event.Event</li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.event.ShopUpdateEvent</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">ShopUpdateEvent</span>
extends org.bukkit.event.Event</pre>
<div class="block">Called when the shop updater runs <br/>
It's not recommended to listen to this event!</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a></span></code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="nested.classes.inherited.from.class.org.bukkit.event.Event">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from class&nbsp;org.bukkit.event.Event</h3>
<code>org.bukkit.event.Event.Result</code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html#ShopUpdateEvent--">ShopUpdateEvent</a></span>()</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html#getHandlerList--">getHandlerList</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>org.bukkit.event.HandlerList</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html#getHandlers--">getHandlers</a></span>()</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.bukkit.event.Event">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.bukkit.event.Event</h3>
<code>getEventName, isAsynchronous</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ShopUpdateEvent--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ShopUpdateEvent</h4>
<pre>public&nbsp;ShopUpdateEvent()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getHandlers--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHandlers</h4>
<pre>public&nbsp;org.bukkit.event.HandlerList&nbsp;getHandlers()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>getHandlers</code>&nbsp;in class&nbsp;<code>org.bukkit.event.Event</code></dd>
</dl>
</li>
</ul>
<a name="getHandlerList--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getHandlerList</h4>
<pre>public static&nbsp;org.bukkit.event.HandlerList&nbsp;getHandlerList()</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ShopUpdateEvent.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/ShopUpdateEvent.html" target="_top">Frames</a></li>
<li><a href="ShopUpdateEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopBuySellEvent.Type (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Class de.epiceric.shopchest.event.ShopBuySellEvent.Type (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopBuySellEvent.Type (ShopChest 1.10.4 API)";
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopBuySellEvent.Type (ShopChest 1.12 API)";
}
}
catch(err) {
@ -155,13 +155,14 @@ the order they are declared.</div>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">Database.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/sql/Database.html#logEconomy-org.bukkit.entity.Player-org.bukkit.inventory.ItemStack-org.bukkit.OfflinePlayer-de.epiceric.shopchest.shop.Shop.ShopType-org.bukkit.Location-double-de.epiceric.shopchest.event.ShopBuySellEvent.Type-">logEconomy</a></span>(org.bukkit.entity.Player&nbsp;executor,
<td class="colLast"><span class="typeNameLabel">Database.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/sql/Database.html#logEconomy-org.bukkit.entity.Player-org.bukkit.inventory.ItemStack-org.bukkit.OfflinePlayer-de.epiceric.shopchest.shop.Shop.ShopType-org.bukkit.Location-double-de.epiceric.shopchest.event.ShopBuySellEvent.Type-de.epiceric.shopchest.utils.Callback-">logEconomy</a></span>(org.bukkit.entity.Player&nbsp;executor,
org.bukkit.inventory.ItemStack&nbsp;product,
org.bukkit.OfflinePlayer&nbsp;vendor,
<a href="../../../../../de/epiceric/shopchest/shop/Shop.ShopType.html" title="enum in de.epiceric.shopchest.shop">Shop.ShopType</a>&nbsp;shopType,
org.bukkit.Location&nbsp;location,
double&nbsp;price,
<a href="../../../../../de/epiceric/shopchest/event/ShopBuySellEvent.Type.html" title="enum in de.epiceric.shopchest.event">ShopBuySellEvent.Type</a>&nbsp;type)</code>
<a href="../../../../../de/epiceric/shopchest/event/ShopBuySellEvent.Type.html" title="enum in de.epiceric.shopchest.event">ShopBuySellEvent.Type</a>&nbsp;type,
<a href="../../../../../de/epiceric/shopchest/utils/Callback.html" title="class in de.epiceric.shopchest.utils">Callback</a>&nbsp;callback)</code>
<div class="block">Log an economy transaction to the database</div>
</td>
</tr>
@ -219,6 +220,6 @@ the order they are declared.</div>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopBuySellEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Class de.epiceric.shopchest.event.ShopBuySellEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopBuySellEvent (ShopChest 1.10.4 API)";
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopBuySellEvent (ShopChest 1.12 API)";
}
}
catch(err) {
@ -121,6 +121,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopCreateEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Class de.epiceric.shopchest.event.ShopCreateEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopCreateEvent (ShopChest 1.10.4 API)";
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopCreateEvent (ShopChest 1.12 API)";
}
}
catch(err) {
@ -121,6 +121,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Class de.epiceric.shopchest.event.ShopEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopEvent (ShopChest 1.10.4 API)";
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopEvent (ShopChest 1.12 API)";
}
}
catch(err) {
@ -123,11 +123,17 @@
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/event/ShopOpenEvent.html" title="class in de.epiceric.shopchest.event">ShopOpenEvent</a></span></code>
<div class="block">Called when a player opens a shop (clicks on a chest)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html" title="class in de.epiceric.shopchest.event">ShopPreCreateEvent</a></span></code>
<div class="block">Called when a player wants to create a shop (enters the command)</div>
</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colFirst"><code>class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html" title="class in de.epiceric.shopchest.event">ShopRemoveEvent</a></span></code>
<div class="block">Called when a player removes a shop (clicks on a chest)</div>
@ -187,6 +193,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopInfoEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Class de.epiceric.shopchest.event.ShopInfoEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopInfoEvent (ShopChest 1.10.4 API)";
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopInfoEvent (ShopChest 1.12 API)";
}
}
catch(err) {
@ -121,6 +121,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,126 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopInitializedEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopInitializedEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/event/ShopInitializedEvent.html" title="class in de.epiceric.shopchest.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/event/class-use/ShopInitializedEvent.html" target="_top">Frames</a></li>
<li><a href="ShopInitializedEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.event.ShopInitializedEvent" class="title">Uses of Class<br>de.epiceric.shopchest.event.ShopInitializedEvent</h2>
</div>
<div class="classUseContainer">No usage of de.epiceric.shopchest.event.ShopInitializedEvent</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/event/ShopInitializedEvent.html" title="class in de.epiceric.shopchest.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/event/class-use/ShopInitializedEvent.html" target="_top">Frames</a></li>
<li><a href="ShopInitializedEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,126 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopOpenEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopOpenEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/event/ShopOpenEvent.html" title="class in de.epiceric.shopchest.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/event/class-use/ShopOpenEvent.html" target="_top">Frames</a></li>
<li><a href="ShopOpenEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.event.ShopOpenEvent" class="title">Uses of Class<br>de.epiceric.shopchest.event.ShopOpenEvent</h2>
</div>
<div class="classUseContainer">No usage of de.epiceric.shopchest.event.ShopOpenEvent</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/event/ShopOpenEvent.html" title="class in de.epiceric.shopchest.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/event/class-use/ShopOpenEvent.html" target="_top">Frames</a></li>
<li><a href="ShopOpenEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopPreCreateEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Class de.epiceric.shopchest.event.ShopPreCreateEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopPreCreateEvent (ShopChest 1.10.4 API)";
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopPreCreateEvent (ShopChest 1.12 API)";
}
}
catch(err) {
@ -121,6 +121,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopPreInfoEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Class de.epiceric.shopchest.event.ShopPreInfoEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopPreInfoEvent (ShopChest 1.10.4 API)";
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopPreInfoEvent (ShopChest 1.12 API)";
}
}
catch(err) {
@ -121,6 +121,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,126 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopPreOpenEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopPreOpenEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/event/ShopPreOpenEvent.html" title="class in de.epiceric.shopchest.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/event/class-use/ShopPreOpenEvent.html" target="_top">Frames</a></li>
<li><a href="ShopPreOpenEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.event.ShopPreOpenEvent" class="title">Uses of Class<br>de.epiceric.shopchest.event.ShopPreOpenEvent</h2>
</div>
<div class="classUseContainer">No usage of de.epiceric.shopchest.event.ShopPreOpenEvent</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/event/ShopPreOpenEvent.html" title="class in de.epiceric.shopchest.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/event/class-use/ShopPreOpenEvent.html" target="_top">Frames</a></li>
<li><a href="ShopPreOpenEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopPreRemoveEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Class de.epiceric.shopchest.event.ShopPreRemoveEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopPreRemoveEvent (ShopChest 1.10.4 API)";
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopPreRemoveEvent (ShopChest 1.12 API)";
}
}
catch(err) {
@ -121,6 +121,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopReloadEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Class de.epiceric.shopchest.event.ShopReloadEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopReloadEvent (ShopChest 1.10.4 API)";
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopReloadEvent (ShopChest 1.12 API)";
}
}
catch(err) {
@ -121,6 +121,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,126 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopRemoveAllEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopRemoveAllEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html" title="class in de.epiceric.shopchest.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/event/class-use/ShopRemoveAllEvent.html" target="_top">Frames</a></li>
<li><a href="ShopRemoveAllEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.event.ShopRemoveAllEvent" class="title">Uses of Class<br>de.epiceric.shopchest.event.ShopRemoveAllEvent</h2>
</div>
<div class="classUseContainer">No usage of de.epiceric.shopchest.event.ShopRemoveAllEvent</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html" title="class in de.epiceric.shopchest.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/event/class-use/ShopRemoveAllEvent.html" target="_top">Frames</a></li>
<li><a href="ShopRemoveAllEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopRemoveEvent (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Class de.epiceric.shopchest.event.ShopRemoveEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopRemoveEvent (ShopChest 1.10.4 API)";
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopRemoveEvent (ShopChest 1.12 API)";
}
}
catch(err) {
@ -121,6 +121,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,199 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopUpdateEvent.UpdateQuality (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopUpdateEvent.UpdateQuality (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/event/class-use/ShopUpdateEvent.UpdateQuality.html" target="_top">Frames</a></li>
<li><a href="ShopUpdateEvent.UpdateQuality.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.event.ShopUpdateEvent.UpdateQuality" class="title">Uses of Class<br>de.epiceric.shopchest.event.ShopUpdateEvent.UpdateQuality</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.config">de.epiceric.shopchest.config</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.event">de.epiceric.shopchest.event</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="de.epiceric.shopchest.config">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a> in <a href="../../../../../de/epiceric/shopchest/config/package-summary.html">de.epiceric.shopchest.config</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../../../../../de/epiceric/shopchest/config/package-summary.html">de.epiceric.shopchest.config</a> declared as <a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a></code></td>
<td class="colLast"><span class="typeNameLabel">Config.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/config/Config.html#update_quality">update_quality</a></span></code>
<div class="block">The quality of hologram and item updating (performance saving, or better quality)</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="de.epiceric.shopchest.event">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a> in <a href="../../../../../de/epiceric/shopchest/event/package-summary.html">de.epiceric.shopchest.event</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../de/epiceric/shopchest/event/package-summary.html">de.epiceric.shopchest.event</a> that return <a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a></code></td>
<td class="colLast"><span class="typeNameLabel">ShopUpdateEvent.UpdateQuality.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">ShopUpdateEvent.UpdateQuality.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html#values--">values</a></span>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/event/class-use/ShopUpdateEvent.UpdateQuality.html" target="_top">Frames</a></li>
<li><a href="ShopUpdateEvent.UpdateQuality.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,166 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.event.ShopUpdateEvent (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.event.ShopUpdateEvent (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/event/class-use/ShopUpdateEvent.html" target="_top">Frames</a></li>
<li><a href="ShopUpdateEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.event.ShopUpdateEvent" class="title">Uses of Class<br>de.epiceric.shopchest.event.ShopUpdateEvent</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event">ShopUpdateEvent</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.listeners">de.epiceric.shopchest.listeners</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="de.epiceric.shopchest.listeners">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event">ShopUpdateEvent</a> in <a href="../../../../../de/epiceric/shopchest/listeners/package-summary.html">de.epiceric.shopchest.listeners</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../de/epiceric/shopchest/listeners/package-summary.html">de.epiceric.shopchest.listeners</a> with parameters of type <a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event">ShopUpdateEvent</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">ShopUpdateListener.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/listeners/ShopUpdateListener.html#onShopUpdate-de.epiceric.shopchest.event.ShopUpdateEvent-">onShopUpdate</a></span>(<a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event">ShopUpdateEvent</a>&nbsp;e)</code>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/event/class-use/ShopUpdateEvent.html" target="_top">Frames</a></li>
<li><a href="ShopUpdateEvent.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:36 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.event (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>de.epiceric.shopchest.event (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -18,15 +18,21 @@
<li><a href="ShopCreateEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopCreateEvent</a></li>
<li><a href="ShopEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopEvent</a></li>
<li><a href="ShopInfoEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopInfoEvent</a></li>
<li><a href="ShopInitializedEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopInitializedEvent</a></li>
<li><a href="ShopOpenEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopOpenEvent</a></li>
<li><a href="ShopPreCreateEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopPreCreateEvent</a></li>
<li><a href="ShopPreInfoEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopPreInfoEvent</a></li>
<li><a href="ShopPreOpenEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopPreOpenEvent</a></li>
<li><a href="ShopPreRemoveEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopPreRemoveEvent</a></li>
<li><a href="ShopReloadEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopReloadEvent</a></li>
<li><a href="ShopRemoveAllEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopRemoveAllEvent</a></li>
<li><a href="ShopRemoveEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopRemoveEvent</a></li>
<li><a href="ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event" target="classFrame">ShopUpdateEvent</a></li>
</ul>
<h2 title="Enums">Enums</h2>
<ul title="Enums">
<li><a href="ShopBuySellEvent.Type.html" title="enum in de.epiceric.shopchest.event" target="classFrame">ShopBuySellEvent.Type</a></li>
<li><a href="ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event" target="classFrame">ShopUpdateEvent.UpdateQuality</a></li>
</ul>
</div>
</body>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:36 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.event (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>de.epiceric.shopchest.event (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="de.epiceric.shopchest.event (ShopChest 1.10.4 API)";
parent.document.title="de.epiceric.shopchest.event (ShopChest 1.12 API)";
}
}
catch(err) {
@ -45,7 +45,7 @@
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/config/package-summary.html">Prev&nbsp;Package</a></li>
<li><a href="../../../../de/epiceric/shopchest/language/package-summary.html">Next&nbsp;Package</a></li>
<li><a href="../../../../de/epiceric/shopchest/exceptions/package-summary.html">Next&nbsp;Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/package-summary.html" target="_top">Frames</a></li>
@ -106,6 +106,16 @@
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/event/ShopInitializedEvent.html" title="class in de.epiceric.shopchest.event">ShopInitializedEvent</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/event/ShopOpenEvent.html" title="class in de.epiceric.shopchest.event">ShopOpenEvent</a></td>
<td class="colLast">
<div class="block">Called when a player opens a shop (clicks on a chest)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html" title="class in de.epiceric.shopchest.event">ShopPreCreateEvent</a></td>
<td class="colLast">
<div class="block">Called when a player wants to create a shop (enters the command)</div>
@ -118,23 +128,40 @@
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/event/ShopPreOpenEvent.html" title="class in de.epiceric.shopchest.event">ShopPreOpenEvent</a></td>
<td class="colLast">
<div class="block">Called when a player wants to open a shop (enters the command)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/event/ShopPreRemoveEvent.html" title="class in de.epiceric.shopchest.event">ShopPreRemoveEvent</a></td>
<td class="colLast">
<div class="block">Called when a player wants to remove a shop (enters the command)</div>
</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/event/ShopReloadEvent.html" title="class in de.epiceric.shopchest.event">ShopReloadEvent</a></td>
<td class="colLast">
<div class="block">Called when a player reloads the shops</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html" title="class in de.epiceric.shopchest.event">ShopRemoveAllEvent</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html" title="class in de.epiceric.shopchest.event">ShopRemoveEvent</a></td>
<td class="colLast">
<div class="block">Called when a player removes a shop (clicks on a chest)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event">ShopUpdateEvent</a></td>
<td class="colLast">
<div class="block">Called when the shop updater runs <br/>
It's not recommended to listen to this event!</div>
</td>
</tr>
</tbody>
</table>
</li>
@ -150,6 +177,10 @@
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/event/ShopBuySellEvent.Type.html" title="enum in de.epiceric.shopchest.event">ShopBuySellEvent.Type</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
@ -177,7 +208,7 @@
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/config/package-summary.html">Prev&nbsp;Package</a></li>
<li><a href="../../../../de/epiceric/shopchest/language/package-summary.html">Next&nbsp;Package</a></li>
<li><a href="../../../../de/epiceric/shopchest/exceptions/package-summary.html">Next&nbsp;Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/package-summary.html" target="_top">Frames</a></li>
@ -202,6 +233,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:36 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.event Class Hierarchy (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>de.epiceric.shopchest.event Class Hierarchy (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="de.epiceric.shopchest.event Class Hierarchy (ShopChest 1.10.4 API)";
parent.document.title="de.epiceric.shopchest.event Class Hierarchy (ShopChest 1.12 API)";
}
}
catch(err) {
@ -45,7 +45,7 @@
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/config/package-tree.html">Prev</a></li>
<li><a href="../../../../de/epiceric/shopchest/language/package-tree.html">Next</a></li>
<li><a href="../../../../de/epiceric/shopchest/exceptions/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/package-tree.html" target="_top">Frames</a></li>
@ -89,13 +89,18 @@
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopBuySellEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">ShopBuySellEvent</span></a> (implements org.bukkit.event.Cancellable)</li>
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopCreateEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">ShopCreateEvent</span></a> (implements org.bukkit.event.Cancellable)</li>
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopInfoEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">ShopInfoEvent</span></a> (implements org.bukkit.event.Cancellable)</li>
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopOpenEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">ShopOpenEvent</span></a> (implements org.bukkit.event.Cancellable)</li>
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopPreCreateEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">ShopPreCreateEvent</span></a> (implements org.bukkit.event.Cancellable)</li>
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopRemoveEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">ShopRemoveEvent</span></a> (implements org.bukkit.event.Cancellable)</li>
</ul>
</li>
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopInitializedEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">ShopInitializedEvent</span></a></li>
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopPreInfoEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">ShopPreInfoEvent</span></a> (implements org.bukkit.event.Cancellable)</li>
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopPreOpenEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">ShopPreOpenEvent</span></a> (implements org.bukkit.event.Cancellable)</li>
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopPreRemoveEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">ShopPreRemoveEvent</span></a> (implements org.bukkit.event.Cancellable)</li>
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopReloadEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">ShopReloadEvent</span></a> (implements org.bukkit.event.Cancellable)</li>
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopRemoveAllEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">ShopRemoveAllEvent</span></a> (implements org.bukkit.event.Cancellable)</li>
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.html" title="class in de.epiceric.shopchest.event"><span class="typeNameLink">ShopUpdateEvent</span></a></li>
</ul>
</li>
</ul>
@ -107,6 +112,7 @@
<ul>
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Enum</span></a>&lt;E&gt; (implements java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;T&gt;, java.io.<a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>)
<ul>
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopUpdateEvent.UpdateQuality.html" title="enum in de.epiceric.shopchest.event"><span class="typeNameLink">ShopUpdateEvent.UpdateQuality</span></a></li>
<li type="circle">de.epiceric.shopchest.event.<a href="../../../../de/epiceric/shopchest/event/ShopBuySellEvent.Type.html" title="enum in de.epiceric.shopchest.event"><span class="typeNameLink">ShopBuySellEvent.Type</span></a></li>
</ul>
</li>
@ -136,7 +142,7 @@
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/config/package-tree.html">Prev</a></li>
<li><a href="../../../../de/epiceric/shopchest/language/package-tree.html">Next</a></li>
<li><a href="../../../../de/epiceric/shopchest/exceptions/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/event/package-tree.html" target="_top">Frames</a></li>
@ -161,6 +167,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:37 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:10 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package de.epiceric.shopchest.event (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>Uses of Package de.epiceric.shopchest.event (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package de.epiceric.shopchest.event (ShopChest 1.10.4 API)";
parent.document.title="Uses of Package de.epiceric.shopchest.event (ShopChest 1.12 API)";
}
}
catch(err) {
@ -84,9 +84,17 @@
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.config">de.epiceric.shopchest.config</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.event">de.epiceric.shopchest.event</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.listeners">de.epiceric.shopchest.listeners</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.sql">de.epiceric.shopchest.sql</a></td>
<td class="colLast">&nbsp;</td>
@ -94,6 +102,21 @@
</tbody>
</table>
</li>
<li class="blockList"><a name="de.epiceric.shopchest.config">
<!-- -->
</a>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../de/epiceric/shopchest/event/package-summary.html">de.epiceric.shopchest.event</a> used by <a href="../../../../de/epiceric/shopchest/config/package-summary.html">de.epiceric.shopchest.config</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../de/epiceric/shopchest/event/class-use/ShopUpdateEvent.UpdateQuality.html#de.epiceric.shopchest.config">ShopUpdateEvent.UpdateQuality</a>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="de.epiceric.shopchest.event">
<!-- -->
</a>
@ -109,6 +132,27 @@
<tr class="rowColor">
<td class="colOne"><a href="../../../../de/epiceric/shopchest/event/class-use/ShopEvent.html#de.epiceric.shopchest.event">ShopEvent</a>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../de/epiceric/shopchest/event/class-use/ShopUpdateEvent.UpdateQuality.html#de.epiceric.shopchest.event">ShopUpdateEvent.UpdateQuality</a>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="de.epiceric.shopchest.listeners">
<!-- -->
</a>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../de/epiceric/shopchest/event/package-summary.html">de.epiceric.shopchest.event</a> used by <a href="../../../../de/epiceric/shopchest/listeners/package-summary.html">de.epiceric.shopchest.listeners</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../de/epiceric/shopchest/event/class-use/ShopUpdateEvent.html#de.epiceric.shopchest.listeners">ShopUpdateEvent</a>
<div class="block">Called when the shop updater runs <br/>
It's not recommended to listen to this event!</div>
</td>
</tr>
</tbody>
</table>
</li>
@ -176,6 +220,6 @@
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,264 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ChestNotFoundException (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ChestNotFoundException (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ChestNotFoundException.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/exceptions/NotEnoughSpaceException.html" title="class in de.epiceric.shopchest.exceptions"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/exceptions/ChestNotFoundException.html" target="_top">Frames</a></li>
<li><a href="ChestNotFoundException.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.exceptions</div>
<h2 title="Class ChestNotFoundException" class="title">Class ChestNotFoundException</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">java.lang.Throwable</a></li>
<li>
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">java.lang.Exception</a></li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.exceptions.ChestNotFoundException</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">ChestNotFoundException</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../serialized-form.html#de.epiceric.shopchest.exceptions.ChestNotFoundException">Serialized Form</a></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/exceptions/ChestNotFoundException.html#ChestNotFoundException-java.lang.String-">ChestNotFoundException</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Throwable">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#addSuppressed-java.lang.Throwable-" title="class or interface in java.lang">addSuppressed</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace--" title="class or interface in java.lang">fillInStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getCause--" title="class or interface in java.lang">getCause</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage--" title="class or interface in java.lang">getLocalizedMessage</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getMessage--" title="class or interface in java.lang">getMessage</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace--" title="class or interface in java.lang">getStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed--" title="class or interface in java.lang">getSuppressed</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#initCause-java.lang.Throwable-" title="class or interface in java.lang">initCause</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace--" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace-java.io.PrintStream-" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace-java.io.PrintWriter-" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#setStackTrace-java.lang.StackTraceElement:A-" title="class or interface in java.lang">setStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#toString--" title="class or interface in java.lang">toString</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ChestNotFoundException-java.lang.String-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ChestNotFoundException</h4>
<pre>public&nbsp;ChestNotFoundException(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ChestNotFoundException.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/exceptions/NotEnoughSpaceException.html" title="class in de.epiceric.shopchest.exceptions"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/exceptions/ChestNotFoundException.html" target="_top">Frames</a></li>
<li><a href="ChestNotFoundException.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,264 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>NotEnoughSpaceException (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="NotEnoughSpaceException (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/NotEnoughSpaceException.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/exceptions/ChestNotFoundException.html" title="class in de.epiceric.shopchest.exceptions"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/exceptions/WorldNotFoundException.html" title="class in de.epiceric.shopchest.exceptions"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/exceptions/NotEnoughSpaceException.html" target="_top">Frames</a></li>
<li><a href="NotEnoughSpaceException.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.exceptions</div>
<h2 title="Class NotEnoughSpaceException" class="title">Class NotEnoughSpaceException</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">java.lang.Throwable</a></li>
<li>
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">java.lang.Exception</a></li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.exceptions.NotEnoughSpaceException</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">NotEnoughSpaceException</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../serialized-form.html#de.epiceric.shopchest.exceptions.NotEnoughSpaceException">Serialized Form</a></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/exceptions/NotEnoughSpaceException.html#NotEnoughSpaceException-java.lang.String-">NotEnoughSpaceException</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Throwable">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#addSuppressed-java.lang.Throwable-" title="class or interface in java.lang">addSuppressed</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace--" title="class or interface in java.lang">fillInStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getCause--" title="class or interface in java.lang">getCause</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage--" title="class or interface in java.lang">getLocalizedMessage</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getMessage--" title="class or interface in java.lang">getMessage</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace--" title="class or interface in java.lang">getStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed--" title="class or interface in java.lang">getSuppressed</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#initCause-java.lang.Throwable-" title="class or interface in java.lang">initCause</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace--" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace-java.io.PrintStream-" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace-java.io.PrintWriter-" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#setStackTrace-java.lang.StackTraceElement:A-" title="class or interface in java.lang">setStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#toString--" title="class or interface in java.lang">toString</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="NotEnoughSpaceException-java.lang.String-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>NotEnoughSpaceException</h4>
<pre>public&nbsp;NotEnoughSpaceException(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/NotEnoughSpaceException.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/exceptions/ChestNotFoundException.html" title="class in de.epiceric.shopchest.exceptions"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/exceptions/WorldNotFoundException.html" title="class in de.epiceric.shopchest.exceptions"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/exceptions/NotEnoughSpaceException.html" target="_top">Frames</a></li>
<li><a href="NotEnoughSpaceException.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,264 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>WorldNotFoundException (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="WorldNotFoundException (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/WorldNotFoundException.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/exceptions/NotEnoughSpaceException.html" title="class in de.epiceric.shopchest.exceptions"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li>Next&nbsp;Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/exceptions/WorldNotFoundException.html" target="_top">Frames</a></li>
<li><a href="WorldNotFoundException.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.exceptions</div>
<h2 title="Class WorldNotFoundException" class="title">Class WorldNotFoundException</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">java.lang.Throwable</a></li>
<li>
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">java.lang.Exception</a></li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.exceptions.WorldNotFoundException</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">WorldNotFoundException</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../serialized-form.html#de.epiceric.shopchest.exceptions.WorldNotFoundException">Serialized Form</a></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/exceptions/WorldNotFoundException.html#WorldNotFoundException-java.lang.String-">WorldNotFoundException</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Throwable">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#addSuppressed-java.lang.Throwable-" title="class or interface in java.lang">addSuppressed</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace--" title="class or interface in java.lang">fillInStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getCause--" title="class or interface in java.lang">getCause</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage--" title="class or interface in java.lang">getLocalizedMessage</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getMessage--" title="class or interface in java.lang">getMessage</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace--" title="class or interface in java.lang">getStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed--" title="class or interface in java.lang">getSuppressed</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#initCause-java.lang.Throwable-" title="class or interface in java.lang">initCause</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace--" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace-java.io.PrintStream-" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace-java.io.PrintWriter-" title="class or interface in java.lang">printStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#setStackTrace-java.lang.StackTraceElement:A-" title="class or interface in java.lang">setStackTrace</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#toString--" title="class or interface in java.lang">toString</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="WorldNotFoundException-java.lang.String-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>WorldNotFoundException</h4>
<pre>public&nbsp;WorldNotFoundException(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/WorldNotFoundException.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/exceptions/NotEnoughSpaceException.html" title="class in de.epiceric.shopchest.exceptions"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li>Next&nbsp;Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/exceptions/WorldNotFoundException.html" target="_top">Frames</a></li>
<li><a href="WorldNotFoundException.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,126 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:10 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.exceptions.ChestNotFoundException (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.exceptions.ChestNotFoundException (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/exceptions/ChestNotFoundException.html" title="class in de.epiceric.shopchest.exceptions">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/exceptions/class-use/ChestNotFoundException.html" target="_top">Frames</a></li>
<li><a href="ChestNotFoundException.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.exceptions.ChestNotFoundException" class="title">Uses of Class<br>de.epiceric.shopchest.exceptions.ChestNotFoundException</h2>
</div>
<div class="classUseContainer">No usage of de.epiceric.shopchest.exceptions.ChestNotFoundException</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/exceptions/ChestNotFoundException.html" title="class in de.epiceric.shopchest.exceptions">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/exceptions/class-use/ChestNotFoundException.html" target="_top">Frames</a></li>
<li><a href="ChestNotFoundException.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,126 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:10 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.exceptions.NotEnoughSpaceException (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.exceptions.NotEnoughSpaceException (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/exceptions/NotEnoughSpaceException.html" title="class in de.epiceric.shopchest.exceptions">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/exceptions/class-use/NotEnoughSpaceException.html" target="_top">Frames</a></li>
<li><a href="NotEnoughSpaceException.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.exceptions.NotEnoughSpaceException" class="title">Uses of Class<br>de.epiceric.shopchest.exceptions.NotEnoughSpaceException</h2>
</div>
<div class="classUseContainer">No usage of de.epiceric.shopchest.exceptions.NotEnoughSpaceException</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/exceptions/NotEnoughSpaceException.html" title="class in de.epiceric.shopchest.exceptions">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/exceptions/class-use/NotEnoughSpaceException.html" target="_top">Frames</a></li>
<li><a href="NotEnoughSpaceException.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,126 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.exceptions.WorldNotFoundException (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.exceptions.WorldNotFoundException (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/exceptions/WorldNotFoundException.html" title="class in de.epiceric.shopchest.exceptions">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/exceptions/class-use/WorldNotFoundException.html" target="_top">Frames</a></li>
<li><a href="WorldNotFoundException.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.exceptions.WorldNotFoundException" class="title">Uses of Class<br>de.epiceric.shopchest.exceptions.WorldNotFoundException</h2>
</div>
<div class="classUseContainer">No usage of de.epiceric.shopchest.exceptions.WorldNotFoundException</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/exceptions/WorldNotFoundException.html" title="class in de.epiceric.shopchest.exceptions">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/exceptions/class-use/WorldNotFoundException.html" target="_top">Frames</a></li>
<li><a href="WorldNotFoundException.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,23 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.exceptions (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<h1 class="bar"><a href="../../../../de/epiceric/shopchest/exceptions/package-summary.html" target="classFrame">de.epiceric.shopchest.exceptions</a></h1>
<div class="indexContainer">
<h2 title="Exceptions">Exceptions</h2>
<ul title="Exceptions">
<li><a href="ChestNotFoundException.html" title="class in de.epiceric.shopchest.exceptions" target="classFrame">ChestNotFoundException</a></li>
<li><a href="NotEnoughSpaceException.html" title="class in de.epiceric.shopchest.exceptions" target="classFrame">NotEnoughSpaceException</a></li>
<li><a href="WorldNotFoundException.html" title="class in de.epiceric.shopchest.exceptions" target="classFrame">WorldNotFoundException</a></li>
</ul>
</div>
</body>
</html>

View File

@ -0,0 +1,152 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.exceptions (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="de.epiceric.shopchest.exceptions (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/package-summary.html">Prev&nbsp;Package</a></li>
<li><a href="../../../../de/epiceric/shopchest/external/package-summary.html">Next&nbsp;Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/exceptions/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Package" class="title">Package&nbsp;de.epiceric.shopchest.exceptions</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Exception Summary table, listing exceptions, and an explanation">
<caption><span>Exception Summary</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Exception</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/exceptions/ChestNotFoundException.html" title="class in de.epiceric.shopchest.exceptions">ChestNotFoundException</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/exceptions/NotEnoughSpaceException.html" title="class in de.epiceric.shopchest.exceptions">NotEnoughSpaceException</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/exceptions/WorldNotFoundException.html" title="class in de.epiceric.shopchest.exceptions">WorldNotFoundException</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/package-summary.html">Prev&nbsp;Package</a></li>
<li><a href="../../../../de/epiceric/shopchest/external/package-summary.html">Next&nbsp;Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/exceptions/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,149 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.exceptions Class Hierarchy (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="de.epiceric.shopchest.exceptions Class Hierarchy (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/package-tree.html">Prev</a></li>
<li><a href="../../../../de/epiceric/shopchest/external/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/exceptions/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">Hierarchy For Package de.epiceric.shopchest.exceptions</h1>
<span class="packageHierarchyLabel">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="../../../../overview-tree.html">All Packages</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a>
<ul>
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Throwable</span></a> (implements java.io.<a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>)
<ul>
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Exception</span></a>
<ul>
<li type="circle">de.epiceric.shopchest.exceptions.<a href="../../../../de/epiceric/shopchest/exceptions/ChestNotFoundException.html" title="class in de.epiceric.shopchest.exceptions"><span class="typeNameLink">ChestNotFoundException</span></a></li>
<li type="circle">de.epiceric.shopchest.exceptions.<a href="../../../../de/epiceric/shopchest/exceptions/NotEnoughSpaceException.html" title="class in de.epiceric.shopchest.exceptions"><span class="typeNameLink">NotEnoughSpaceException</span></a></li>
<li type="circle">de.epiceric.shopchest.exceptions.<a href="../../../../de/epiceric/shopchest/exceptions/WorldNotFoundException.html" title="class in de.epiceric.shopchest.exceptions"><span class="typeNameLink">WorldNotFoundException</span></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/event/package-tree.html">Prev</a></li>
<li><a href="../../../../de/epiceric/shopchest/external/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/exceptions/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,126 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:10 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package de.epiceric.shopchest.exceptions (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package de.epiceric.shopchest.exceptions (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Use</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/exceptions/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Uses of Package de.epiceric.shopchest.exceptions" class="title">Uses of Package<br>de.epiceric.shopchest.exceptions</h1>
</div>
<div class="contentContainer">No usage of de.epiceric.shopchest.exceptions</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Use</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/exceptions/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,383 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>PlotSquaredShopFlag.Group (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="PlotSquaredShopFlag.Group (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":9,"i1":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/PlotSquaredShopFlag.Group.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.html" title="class in de.epiceric.shopchest.external"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html" title="class in de.epiceric.shopchest.external"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" target="_top">Frames</a></li>
<li><a href="PlotSquaredShopFlag.Group.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.external</div>
<h2 title="Enum PlotSquaredShopFlag.Group" class="title">Enum PlotSquaredShopFlag.Group</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">java.lang.Enum</a>&lt;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a>&gt;</li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.external.PlotSquaredShopFlag.Group</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a>&gt;</dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.html" title="class in de.epiceric.shopchest.external">PlotSquaredShopFlag</a></dd>
</dl>
<hr>
<br>
<pre>public static enum <span class="typeNameLabel">PlotSquaredShopFlag.Group</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a>&lt;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a>&gt;</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="enum.constant.summary">
<!-- -->
</a>
<h3>Enum Constant Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation">
<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Enum Constant and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html#EVERYONE">EVERYONE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html#MEMBERS">MEMBERS</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html#NONE">NONE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html#OWNERS">OWNERS</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html#TRUSTED">TRUSTED</a></span></code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static <a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html#values--">values</a></span>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Enum">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#compareTo-E-" title="class or interface in java.lang">compareTo</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#getDeclaringClass--" title="class or interface in java.lang">getDeclaringClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#name--" title="class or interface in java.lang">name</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#ordinal--" title="class or interface in java.lang">ordinal</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#valueOf-java.lang.Class-java.lang.String-" title="class or interface in java.lang">valueOf</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ ENUM CONSTANT DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="enum.constant.detail">
<!-- -->
</a>
<h3>Enum Constant Detail</h3>
<a name="OWNERS">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>OWNERS</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a> OWNERS</pre>
</li>
</ul>
<a name="MEMBERS">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MEMBERS</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a> MEMBERS</pre>
</li>
</ul>
<a name="TRUSTED">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TRUSTED</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a> TRUSTED</pre>
</li>
</ul>
<a name="EVERYONE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>EVERYONE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a> EVERYONE</pre>
</li>
</ul>
<a name="NONE">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>NONE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a> NONE</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="values--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre>public static&nbsp;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a>[]&nbsp;values()</pre>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
<pre>
for (PlotSquaredShopFlag.Group c : PlotSquaredShopFlag.Group.values())
&nbsp; System.out.println(c);
</pre></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an array containing the constants of this enum type, in the order they are declared</dd>
</dl>
</li>
</ul>
<a name="valueOf-java.lang.String-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>valueOf</h4>
<pre>public static&nbsp;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a>&nbsp;valueOf(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
<div class="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>name</code> - the name of the enum constant to be returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the enum constant with the specified name</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if this enum type has no constant with the specified name</dd>
<dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang">NullPointerException</a></code> - if the argument is null</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/PlotSquaredShopFlag.Group.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.html" title="class in de.epiceric.shopchest.external"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html" title="class in de.epiceric.shopchest.external"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" target="_top">Frames</a></li>
<li><a href="PlotSquaredShopFlag.Group.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,331 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>PlotSquaredShopFlag.GroupFlag (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="PlotSquaredShopFlag.GroupFlag (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/PlotSquaredShopFlag.GroupFlag.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/external/WorldGuardShopFlag.html" title="class in de.epiceric.shopchest.external"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html" target="_top">Frames</a></li>
<li><a href="PlotSquaredShopFlag.GroupFlag.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.external</div>
<h2 title="Class PlotSquaredShopFlag.GroupFlag" class="title">Class PlotSquaredShopFlag.GroupFlag</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>com.intellectualcrafters.plot.flag.Flag&lt;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a>&gt;</li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.external.PlotSquaredShopFlag.GroupFlag</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>com.intellectualcrafters.plot.util.StringComparison.StringComparable</dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.html" title="class in de.epiceric.shopchest.external">PlotSquaredShopFlag</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">PlotSquaredShopFlag.GroupFlag</span>
extends com.intellectualcrafters.plot.flag.Flag&lt;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a>&gt;</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html#GroupFlag-java.lang.String-">GroupFlag</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html#getValueDescription--">getValueDescription</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html#parseValue-java.lang.String-">parseValue</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;s)</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html#valueToString-java.lang.Object-">valueToString</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.com.intellectualcrafters.plot.flag.Flag">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;com.intellectualcrafters.plot.flag.Flag</h3>
<code>getComparableString, getName, isReserved, isSet, register, reserve, toString, unreserve</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="GroupFlag-java.lang.String-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>GroupFlag</h4>
<pre>public&nbsp;GroupFlag(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="valueToString-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>valueToString</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;valueToString(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>valueToString</code>&nbsp;in class&nbsp;<code>com.intellectualcrafters.plot.flag.Flag&lt;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a>&gt;</code></dd>
</dl>
</li>
</ul>
<a name="parseValue-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>parseValue</h4>
<pre>public&nbsp;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a>&nbsp;parseValue(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;s)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>parseValue</code>&nbsp;in class&nbsp;<code>com.intellectualcrafters.plot.flag.Flag&lt;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a>&gt;</code></dd>
</dl>
</li>
</ul>
<a name="getValueDescription--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getValueDescription</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getValueDescription()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code>getValueDescription</code>&nbsp;in class&nbsp;<code>com.intellectualcrafters.plot.flag.Flag&lt;<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a>&gt;</code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/PlotSquaredShopFlag.GroupFlag.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/external/WorldGuardShopFlag.html" title="class in de.epiceric.shopchest.external"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html" target="_top">Frames</a></li>
<li><a href="PlotSquaredShopFlag.GroupFlag.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,358 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>PlotSquaredShopFlag (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="PlotSquaredShopFlag (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/PlotSquaredShopFlag.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/external/PlotSquaredShopFlag.html" target="_top">Frames</a></li>
<li><a href="PlotSquaredShopFlag.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.external</div>
<h2 title="Class PlotSquaredShopFlag" class="title">Class PlotSquaredShopFlag</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.external.PlotSquaredShopFlag</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">PlotSquaredShopFlag</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html" title="class in de.epiceric.shopchest.external">PlotSquaredShopFlag.GroupFlag</a></span></code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static com.intellectualcrafters.plot.flag.Flag</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.html#CREATE_SHOP">CREATE_SHOP</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static com.intellectualcrafters.plot.flag.Flag</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.html#USE_ADMIN_SHOP">USE_ADMIN_SHOP</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static com.intellectualcrafters.plot.flag.Flag</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.html#USE_SHOP">USE_SHOP</a></span></code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.html#PlotSquaredShopFlag--">PlotSquaredShopFlag</a></span>()</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.html#register-de.epiceric.shopchest.ShopChest-">register</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="CREATE_SHOP">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CREATE_SHOP</h4>
<pre>public static&nbsp;com.intellectualcrafters.plot.flag.Flag CREATE_SHOP</pre>
</li>
</ul>
<a name="USE_SHOP">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>USE_SHOP</h4>
<pre>public static&nbsp;com.intellectualcrafters.plot.flag.Flag USE_SHOP</pre>
</li>
</ul>
<a name="USE_ADMIN_SHOP">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>USE_ADMIN_SHOP</h4>
<pre>public static&nbsp;com.intellectualcrafters.plot.flag.Flag USE_ADMIN_SHOP</pre>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="PlotSquaredShopFlag--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>PlotSquaredShopFlag</h4>
<pre>public&nbsp;PlotSquaredShopFlag()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="register-de.epiceric.shopchest.ShopChest-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>register</h4>
<pre>public&nbsp;void&nbsp;register(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin)</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/PlotSquaredShopFlag.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/external/PlotSquaredShopFlag.html" target="_top">Frames</a></li>
<li><a href="PlotSquaredShopFlag.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,350 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>WorldGuardShopFlag (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="WorldGuardShopFlag (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":9,"i1":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/WorldGuardShopFlag.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html" title="class in de.epiceric.shopchest.external"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li>Next&nbsp;Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/external/WorldGuardShopFlag.html" target="_top">Frames</a></li>
<li><a href="WorldGuardShopFlag.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.external</div>
<h2 title="Class WorldGuardShopFlag" class="title">Class WorldGuardShopFlag</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.external.WorldGuardShopFlag</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">WorldGuardShopFlag</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static com.sk89q.worldguard.protection.flags.StateFlag</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/WorldGuardShopFlag.html#CREATE_SHOP">CREATE_SHOP</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static com.sk89q.worldguard.protection.flags.StateFlag</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/WorldGuardShopFlag.html#USE_ADMIN_SHOP">USE_ADMIN_SHOP</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static com.sk89q.worldguard.protection.flags.StateFlag</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/WorldGuardShopFlag.html#USE_SHOP">USE_SHOP</a></span></code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/WorldGuardShopFlag.html#WorldGuardShopFlag--">WorldGuardShopFlag</a></span>()</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/WorldGuardShopFlag.html#isLoaded--">isLoaded</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/external/WorldGuardShopFlag.html#register-de.epiceric.shopchest.ShopChest-boolean-">register</a></span>(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin,
boolean&nbsp;onLoad)</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="CREATE_SHOP">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CREATE_SHOP</h4>
<pre>public static final&nbsp;com.sk89q.worldguard.protection.flags.StateFlag CREATE_SHOP</pre>
</li>
</ul>
<a name="USE_SHOP">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>USE_SHOP</h4>
<pre>public static final&nbsp;com.sk89q.worldguard.protection.flags.StateFlag USE_SHOP</pre>
</li>
</ul>
<a name="USE_ADMIN_SHOP">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>USE_ADMIN_SHOP</h4>
<pre>public static final&nbsp;com.sk89q.worldguard.protection.flags.StateFlag USE_ADMIN_SHOP</pre>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="WorldGuardShopFlag--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>WorldGuardShopFlag</h4>
<pre>public&nbsp;WorldGuardShopFlag()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="isLoaded--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isLoaded</h4>
<pre>public static&nbsp;boolean&nbsp;isLoaded()</pre>
</li>
</ul>
<a name="register-de.epiceric.shopchest.ShopChest-boolean-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>register</h4>
<pre>public static&nbsp;void&nbsp;register(<a href="../../../../de/epiceric/shopchest/ShopChest.html" title="class in de.epiceric.shopchest">ShopChest</a>&nbsp;plugin,
boolean&nbsp;onLoad)</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/WorldGuardShopFlag.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html" title="class in de.epiceric.shopchest.external"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li>Next&nbsp;Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/external/WorldGuardShopFlag.html" target="_top">Frames</a></li>
<li><a href="WorldGuardShopFlag.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,179 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:10 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.external.PlotSquaredShopFlag.Group (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.external.PlotSquaredShopFlag.Group (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/external/class-use/PlotSquaredShopFlag.Group.html" target="_top">Frames</a></li>
<li><a href="PlotSquaredShopFlag.Group.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.external.PlotSquaredShopFlag.Group" class="title">Uses of Class<br>de.epiceric.shopchest.external.PlotSquaredShopFlag.Group</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.external">de.epiceric.shopchest.external</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="de.epiceric.shopchest.external">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a> in <a href="../../../../../de/epiceric/shopchest/external/package-summary.html">de.epiceric.shopchest.external</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../de/epiceric/shopchest/external/package-summary.html">de.epiceric.shopchest.external</a> that return <a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a></code></td>
<td class="colLast"><span class="typeNameLabel">PlotSquaredShopFlag.GroupFlag.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html#parseValue-java.lang.String-">parseValue</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;s)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a></code></td>
<td class="colLast"><span class="typeNameLabel">PlotSquaredShopFlag.Group.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">PlotSquaredShopFlag.Group.</span><code><span class="memberNameLink"><a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html#values--">values</a></span>()</code>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/external/class-use/PlotSquaredShopFlag.Group.html" target="_top">Frames</a></li>
<li><a href="PlotSquaredShopFlag.Group.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,126 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:10 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.external.PlotSquaredShopFlag.GroupFlag (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.external.PlotSquaredShopFlag.GroupFlag (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html" title="class in de.epiceric.shopchest.external">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/external/class-use/PlotSquaredShopFlag.GroupFlag.html" target="_top">Frames</a></li>
<li><a href="PlotSquaredShopFlag.GroupFlag.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.external.PlotSquaredShopFlag.GroupFlag" class="title">Uses of Class<br>de.epiceric.shopchest.external.PlotSquaredShopFlag.GroupFlag</h2>
</div>
<div class="classUseContainer">No usage of de.epiceric.shopchest.external.PlotSquaredShopFlag.GroupFlag</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html" title="class in de.epiceric.shopchest.external">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/external/class-use/PlotSquaredShopFlag.GroupFlag.html" target="_top">Frames</a></li>
<li><a href="PlotSquaredShopFlag.GroupFlag.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,126 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:10 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.external.PlotSquaredShopFlag (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.external.PlotSquaredShopFlag (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.html" title="class in de.epiceric.shopchest.external">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/external/class-use/PlotSquaredShopFlag.html" target="_top">Frames</a></li>
<li><a href="PlotSquaredShopFlag.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.external.PlotSquaredShopFlag" class="title">Uses of Class<br>de.epiceric.shopchest.external.PlotSquaredShopFlag</h2>
</div>
<div class="classUseContainer">No usage of de.epiceric.shopchest.external.PlotSquaredShopFlag</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.html" title="class in de.epiceric.shopchest.external">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/external/class-use/PlotSquaredShopFlag.html" target="_top">Frames</a></li>
<li><a href="PlotSquaredShopFlag.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,126 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:10 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.epiceric.shopchest.external.WorldGuardShopFlag (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class de.epiceric.shopchest.external.WorldGuardShopFlag (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/external/WorldGuardShopFlag.html" title="class in de.epiceric.shopchest.external">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/external/class-use/WorldGuardShopFlag.html" target="_top">Frames</a></li>
<li><a href="WorldGuardShopFlag.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class de.epiceric.shopchest.external.WorldGuardShopFlag" class="title">Uses of Class<br>de.epiceric.shopchest.external.WorldGuardShopFlag</h2>
</div>
<div class="classUseContainer">No usage of de.epiceric.shopchest.external.WorldGuardShopFlag</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../de/epiceric/shopchest/external/WorldGuardShopFlag.html" title="class in de.epiceric.shopchest.external">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?de/epiceric/shopchest/external/class-use/WorldGuardShopFlag.html" target="_top">Frames</a></li>
<li><a href="WorldGuardShopFlag.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,26 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.external (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<h1 class="bar"><a href="../../../../de/epiceric/shopchest/external/package-summary.html" target="classFrame">de.epiceric.shopchest.external</a></h1>
<div class="indexContainer">
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="PlotSquaredShopFlag.html" title="class in de.epiceric.shopchest.external" target="classFrame">PlotSquaredShopFlag</a></li>
<li><a href="WorldGuardShopFlag.html" title="class in de.epiceric.shopchest.external" target="classFrame">WorldGuardShopFlag</a></li>
</ul>
<h2 title="Enums">Enums</h2>
<ul title="Enums">
<li><a href="PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external" target="classFrame">PlotSquaredShopFlag.Group</a></li>
</ul>
</div>
</body>
</html>

View File

@ -0,0 +1,163 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.external (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="de.epiceric.shopchest.external (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/exceptions/package-summary.html">Prev&nbsp;Package</a></li>
<li><a href="../../../../de/epiceric/shopchest/language/package-summary.html">Next&nbsp;Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/external/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Package" class="title">Package&nbsp;de.epiceric.shopchest.external</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.html" title="class in de.epiceric.shopchest.external">PlotSquaredShopFlag</a></td>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/external/WorldGuardShopFlag.html" title="class in de.epiceric.shopchest.external">WorldGuardShopFlag</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Summary table, listing enums, and an explanation">
<caption><span>Enum Summary</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Enum</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/exceptions/package-summary.html">Prev&nbsp;Package</a></li>
<li><a href="../../../../de/epiceric/shopchest/language/package-summary.html">Next&nbsp;Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/external/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,157 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:09 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>de.epiceric.shopchest.external Class Hierarchy (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="de.epiceric.shopchest.external Class Hierarchy (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/exceptions/package-tree.html">Prev</a></li>
<li><a href="../../../../de/epiceric/shopchest/language/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/external/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">Hierarchy For Package de.epiceric.shopchest.external</h1>
<span class="packageHierarchyLabel">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="../../../../overview-tree.html">All Packages</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a>
<ul>
<li type="circle">com.intellectualcrafters.plot.flag.Flag&lt;V&gt; (implements com.intellectualcrafters.plot.util.StringComparison.StringComparable)
<ul>
<li type="circle">de.epiceric.shopchest.external.<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.GroupFlag.html" title="class in de.epiceric.shopchest.external"><span class="typeNameLink">PlotSquaredShopFlag.GroupFlag</span></a></li>
</ul>
</li>
<li type="circle">de.epiceric.shopchest.external.<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.html" title="class in de.epiceric.shopchest.external"><span class="typeNameLink">PlotSquaredShopFlag</span></a></li>
<li type="circle">de.epiceric.shopchest.external.<a href="../../../../de/epiceric/shopchest/external/WorldGuardShopFlag.html" title="class in de.epiceric.shopchest.external"><span class="typeNameLink">WorldGuardShopFlag</span></a></li>
</ul>
</li>
</ul>
<h2 title="Enum Hierarchy">Enum Hierarchy</h2>
<ul>
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a>
<ul>
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Enum</span></a>&lt;E&gt; (implements java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;T&gt;, java.io.<a href="http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>)
<ul>
<li type="circle">de.epiceric.shopchest.external.<a href="../../../../de/epiceric/shopchest/external/PlotSquaredShopFlag.Group.html" title="enum in de.epiceric.shopchest.external"><span class="typeNameLink">PlotSquaredShopFlag.Group</span></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/exceptions/package-tree.html">Prev</a></li>
<li><a href="../../../../de/epiceric/shopchest/language/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/external/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,159 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:10 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package de.epiceric.shopchest.external (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package de.epiceric.shopchest.external (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Use</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/external/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Uses of Package de.epiceric.shopchest.external" class="title">Uses of Package<br>de.epiceric.shopchest.external</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../de/epiceric/shopchest/external/package-summary.html">de.epiceric.shopchest.external</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#de.epiceric.shopchest.external">de.epiceric.shopchest.external</a></td>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="de.epiceric.shopchest.external">
<!-- -->
</a>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../de/epiceric/shopchest/external/package-summary.html">de.epiceric.shopchest.external</a> used by <a href="../../../../de/epiceric/shopchest/external/package-summary.html">de.epiceric.shopchest.external</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../de/epiceric/shopchest/external/class-use/PlotSquaredShopFlag.Group.html#de.epiceric.shopchest.external">PlotSquaredShopFlag.Group</a>&nbsp;</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li class="navBarCell1Rev">Use</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/external/package-use.html" target="_top">Frames</a></li>
<li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -0,0 +1,296 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>BookGenerationName (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="BookGenerationName (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/BookGenerationName.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/language/EnchantmentName.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/language/BookGenerationName.html" target="_top">Frames</a></li>
<li><a href="BookGenerationName.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.language</div>
<h2 title="Class BookGenerationName" class="title">Class BookGenerationName</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.language.BookGenerationName</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">BookGenerationName</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/BookGenerationName.html#BookGenerationName-de.epiceric.shopchest.nms.CustomBookMeta.Generation-java.lang.String-">BookGenerationName</a></span>(<a href="../../../../de/epiceric/shopchest/nms/CustomBookMeta.Generation.html" title="enum in de.epiceric.shopchest.nms">CustomBookMeta.Generation</a>&nbsp;generation,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;localizedName)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/nms/CustomBookMeta.Generation.html" title="enum in de.epiceric.shopchest.nms">CustomBookMeta.Generation</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/BookGenerationName.html#getGeneration--">getGeneration</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/BookGenerationName.html#getLocalizedName--">getLocalizedName</a></span>()</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="BookGenerationName-de.epiceric.shopchest.nms.CustomBookMeta.Generation-java.lang.String-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>BookGenerationName</h4>
<pre>public&nbsp;BookGenerationName(<a href="../../../../de/epiceric/shopchest/nms/CustomBookMeta.Generation.html" title="enum in de.epiceric.shopchest.nms">CustomBookMeta.Generation</a>&nbsp;generation,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;localizedName)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getGeneration--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getGeneration</h4>
<pre>public&nbsp;<a href="../../../../de/epiceric/shopchest/nms/CustomBookMeta.Generation.html" title="enum in de.epiceric.shopchest.nms">CustomBookMeta.Generation</a>&nbsp;getGeneration()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Generation linked to the name</dd>
</dl>
</li>
</ul>
<a name="getLocalizedName--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getLocalizedName</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getLocalizedName()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Name linked to the book generation</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/BookGenerationName.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/language/EnchantmentName.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/language/BookGenerationName.html" target="_top">Frames</a></li>
<li><a href="BookGenerationName.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>EnchantmentName.EnchantmentLevelName (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>EnchantmentName.EnchantmentLevelName (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="EnchantmentName.EnchantmentLevelName (ShopChest 1.10.4 API)";
parent.document.title="EnchantmentName.EnchantmentLevelName (ShopChest 1.12 API)";
}
}
catch(err) {
@ -295,6 +295,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>EnchantmentName (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>EnchantmentName (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="EnchantmentName (ShopChest 1.10.4 API)";
parent.document.title="EnchantmentName (ShopChest 1.12 API)";
}
}
catch(err) {
@ -50,7 +50,7 @@ var activeTableTab = "activeTableTab";
</div>
<div class="subNav">
<ul class="navList">
<li>Prev&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/language/BookGenerationName.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/language/EnchantmentName.EnchantmentLevelName.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
@ -269,7 +269,7 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</div>
<div class="subNav">
<ul class="navList">
<li>Prev&nbsp;Class</li>
<li><a href="../../../../de/epiceric/shopchest/language/BookGenerationName.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/language/EnchantmentName.EnchantmentLevelName.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
@ -310,6 +310,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>EntityName (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>EntityName (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="EntityName (ShopChest 1.10.4 API)";
parent.document.title="EntityName (ShopChest 1.12 API)";
}
}
catch(err) {
@ -291,6 +291,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ItemName (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>ItemName (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ItemName (ShopChest 1.10.4 API)";
parent.document.title="ItemName (ShopChest 1.12 API)";
}
}
catch(err) {
@ -324,6 +324,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:34 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>LanguageUtils (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>LanguageUtils (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,13 +13,13 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="LanguageUtils (ShopChest 1.10.4 API)";
parent.document.title="LanguageUtils (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9};
var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -149,27 +149,35 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LanguageUtils.html#getEnchantmentName-org.bukkit.enchantments.Enchantment-int-">getEnchantmentName</a></span>(org.bukkit.enchantments.Enchantment&nbsp;enchantment,
int&nbsp;level)</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LanguageUtils.html#getBookGenerationName-de.epiceric.shopchest.nms.CustomBookMeta.Generation-">getBookGenerationName</a></span>(<a href="../../../../de/epiceric/shopchest/nms/CustomBookMeta.Generation.html" title="enum in de.epiceric.shopchest.nms">CustomBookMeta.Generation</a>&nbsp;generation)</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LanguageUtils.html#getItemName-org.bukkit.inventory.ItemStack-">getItemName</a></span>(org.bukkit.inventory.ItemStack&nbsp;stack)</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LanguageUtils.html#getEnchantmentName-org.bukkit.enchantments.Enchantment-int-">getEnchantmentName</a></span>(org.bukkit.enchantments.Enchantment&nbsp;enchantment,
int&nbsp;level)</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LanguageUtils.html#getMessage-de.epiceric.shopchest.language.LocalizedMessage.Message-de.epiceric.shopchest.language.LocalizedMessage.ReplacedRegex...-">getMessage</a></span>(<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a>&nbsp;message,
<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html" title="class in de.epiceric.shopchest.language">LocalizedMessage.ReplacedRegex</a>...&nbsp;replacedRegexes)</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LanguageUtils.html#getEnchantmentString-java.util.Map-">getEnchantmentString</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;org.bukkit.enchantments.Enchantment,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&gt;&nbsp;enchantmentMap)</code>&nbsp;</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LanguageUtils.html#getMusicDiscName-org.bukkit.Material-">getMusicDiscName</a></span>(org.bukkit.Material&nbsp;musicDiscMaterial)</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LanguageUtils.html#getItemName-org.bukkit.inventory.ItemStack-">getItemName</a></span>(org.bukkit.inventory.ItemStack&nbsp;stack)</code>&nbsp;</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LanguageUtils.html#getPotionEffectName-org.bukkit.inventory.ItemStack-">getPotionEffectName</a></span>(org.bukkit.inventory.ItemStack&nbsp;itemStack)</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LanguageUtils.html#getMessage-de.epiceric.shopchest.language.LocalizedMessage.Message-de.epiceric.shopchest.language.LocalizedMessage.ReplacedPlaceholder...-">getMessage</a></span>(<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a>&nbsp;message,
<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html" title="class in de.epiceric.shopchest.language">LocalizedMessage.ReplacedPlaceholder</a>...&nbsp;replacedPlaceholders)</code>&nbsp;</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LanguageUtils.html#getMusicDiscName-org.bukkit.Material-">getMusicDiscName</a></span>(org.bukkit.Material&nbsp;musicDiscMaterial)</code>&nbsp;</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LanguageUtils.html#getPotionEffectName-org.bukkit.inventory.ItemStack-">getPotionEffectName</a></span>(org.bukkit.inventory.ItemStack&nbsp;itemStack)</code>&nbsp;</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LanguageUtils.html#load--">load</a></span>()</code>&nbsp;</td>
</tr>
@ -253,6 +261,21 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</dl>
</li>
</ul>
<a name="getEnchantmentString-java.util.Map-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getEnchantmentString</h4>
<pre>public static&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getEnchantmentString(<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;org.bukkit.enchantments.Enchantment,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&gt;&nbsp;enchantmentMap)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>enchantmentMap</code> - Map of enchantments of an item</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Comma separated list of localized enchantments</dd>
</dl>
</li>
</ul>
<a name="getPotionEffectName-org.bukkit.inventory.ItemStack-">
<!-- -->
</a>
@ -283,18 +306,33 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</dl>
</li>
</ul>
<a name="getMessage-de.epiceric.shopchest.language.LocalizedMessage.Message-de.epiceric.shopchest.language.LocalizedMessage.ReplacedRegex...-">
<a name="getBookGenerationName-de.epiceric.shopchest.nms.CustomBookMeta.Generation-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBookGenerationName</h4>
<pre>public static&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getBookGenerationName(<a href="../../../../de/epiceric/shopchest/nms/CustomBookMeta.Generation.html" title="enum in de.epiceric.shopchest.nms">CustomBookMeta.Generation</a>&nbsp;generation)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>generation</code> - Generation of the book</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Localized title of the generation</dd>
</dl>
</li>
</ul>
<a name="getMessage-de.epiceric.shopchest.language.LocalizedMessage.Message-de.epiceric.shopchest.language.LocalizedMessage.ReplacedPlaceholder...-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getMessage</h4>
<pre>public static&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getMessage(<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a>&nbsp;message,
<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html" title="class in de.epiceric.shopchest.language">LocalizedMessage.ReplacedRegex</a>...&nbsp;replacedRegexes)</pre>
<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html" title="class in de.epiceric.shopchest.language">LocalizedMessage.ReplacedPlaceholder</a>...&nbsp;replacedPlaceholders)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>message</code> - Message which should be translated</dd>
<dd><code>replacedRegexes</code> - Regexes which might be required to be replaced in the message</dd>
<dd><code>replacedPlaceholders</code> - Placeholders which might be required to be replaced in the message</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Localized Message</dd>
</dl>
@ -369,6 +407,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:35 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>LocalizedMessage.Message (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>LocalizedMessage.Message (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="LocalizedMessage.Message (ShopChest 1.10.4 API)";
parent.document.title="LocalizedMessage.Message (ShopChest 1.12 API)";
}
}
catch(err) {
@ -51,7 +51,7 @@ var activeTableTab = "activeTableTab";
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/language/LocalizedMessage.Message.html" target="_top">Frames</a></li>
@ -143,8 +143,20 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
<th class="colOne" scope="col">Enum Constant and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#ADMIN_SHOP_CREATED">ADMIN_SHOP_CREATED</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#ALL_SHOPS_REMOVED">ALL_SHOPS_REMOVED</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#AMOUNT_IS_ZERO">AMOUNT_IS_ZERO</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#AMOUNT_PRICE_NOT_NUMBER">AMOUNT_PRICE_NOT_NUMBER</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#BUY_PRICE_TOO_HIGH">BUY_PRICE_TOO_HIGH</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#BUY_PRICE_TOO_LOW">BUY_PRICE_TOO_LOW</a></span></code>&nbsp;</td>
</tr>
@ -155,7 +167,7 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#BUY_SUCCESS">BUY_SUCCESS</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#BUY_SUCESS_ADMIN">BUY_SUCESS_ADMIN</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#BUY_SUCCESS_ADMIN">BUY_SUCCESS_ADMIN</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#BUYING_DISABLED">BUYING_DISABLED</a></span></code>&nbsp;</td>
@ -197,14 +209,26 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#CLICK_CHEST_INFO">CLICK_CHEST_INFO</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#CLICK_CHEST_REMOVE">CLICK_CHEST_REMOVE</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#CLICK_CHEST_OPEN">CLICK_CHEST_OPEN</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#COMMAND_DESC_CONFIG">COMMAND_DESC_CONFIG</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#CLICK_CHEST_REMOVE">CLICK_CHEST_REMOVE</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#COMMAND_DESC_CONFIG">COMMAND_DESC_CONFIG</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#COMMAND_DESC_CREATE">COMMAND_DESC_CREATE</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#COMMAND_DESC_CREATE_ADMIN">COMMAND_DESC_CREATE_ADMIN</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#COMMAND_DESC_FOOTER">COMMAND_DESC_FOOTER</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#COMMAND_DESC_HEADER">COMMAND_DESC_HEADER</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#COMMAND_DESC_INFO">COMMAND_DESC_INFO</a></span></code>&nbsp;</td>
</tr>
@ -212,11 +236,17 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#COMMAND_DESC_LIMITS">COMMAND_DESC_LIMITS</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#COMMAND_DESC_RELOAD">COMMAND_DESC_RELOAD</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#COMMAND_DESC_OPEN">COMMAND_DESC_OPEN</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#COMMAND_DESC_RELOAD">COMMAND_DESC_RELOAD</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#COMMAND_DESC_REMOVE">COMMAND_DESC_REMOVE</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#COMMAND_DESC_REMOVEALL">COMMAND_DESC_REMOVEALL</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#COMMAND_DESC_UPDATE">COMMAND_DESC_UPDATE</a></span></code>&nbsp;</td>
</tr>
@ -227,37 +257,31 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#ERROR_OCCURRED">ERROR_OCCURRED</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#HOLOGRAM_BUY">HOLOGRAM_BUY</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#HOLOGRAM_BUY_SELL">HOLOGRAM_BUY_SELL</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#HOLOGRAM_FORMAT">HOLOGRAM_FORMAT</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#HOLOGRAM_SELL">HOLOGRAM_SELL</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_ITEM_IN_HAND">NO_ITEM_IN_HAND</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_BUY">NO_PERMISSION_BUY</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_BUY_HERE">NO_PERMISSION_BUY_HERE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_CONFIG">NO_PERMISSION_CONFIG</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_CREATE">NO_PERMISSION_CREATE</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_CREATE_ADMIN">NO_PERMISSION_CREATE_ADMIN</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_CREATE_PROTECTED">NO_PERMISSION_CREATE_PROTECTED</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_EXTEND_OTHERS">NO_PERMISSION_EXTEND_OTHERS</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_LIMITS">NO_PERMISSION_LIMITS</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_EXTEND_PROTECTED">NO_PERMISSION_EXTEND_PROTECTED</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_OPEN_OTHERS">NO_PERMISSION_OPEN_OTHERS</a></span></code>&nbsp;</td>
@ -266,11 +290,17 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_RELOAD">NO_PERMISSION_RELOAD</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_REMOVE_OTHERS">NO_PERMISSION_REMOVE_OTHERS</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_REMOVE_ADMIN">NO_PERMISSION_REMOVE_ADMIN</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_REMOVE_OTHERS">NO_PERMISSION_REMOVE_OTHERS</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_SELL">NO_PERMISSION_SELL</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_SELL_HERE">NO_PERMISSION_SELL_HERE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#NO_PERMISSION_UPDATE">NO_PERMISSION_UPDATE</a></span></code>&nbsp;</td>
</tr>
@ -299,13 +329,19 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#RELOADED_SHOPS">RELOADED_SHOPS</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#REVENUE_WHILE_OFFLINE">REVENUE_WHILE_OFFLINE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SELL_PRICE_TOO_HIGH">SELL_PRICE_TOO_HIGH</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SELL_PRICE_TOO_LOW">SELL_PRICE_TOO_LOW</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SELL_SUCESS">SELL_SUCESS</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SELL_SUCCESS">SELL_SUCCESS</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SELL_SUCESS_ADMIN">SELL_SUCESS_ADMIN</a></span></code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SELL_SUCCESS_ADMIN">SELL_SUCCESS_ADMIN</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SELLING_DISABLED">SELLING_DISABLED</a></span></code>&nbsp;</td>
@ -320,68 +356,77 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_INFO_ADMIN">SHOP_INFO_ADMIN</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_INFO_BOOK_GENERATION">SHOP_INFO_BOOK_GENERATION</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_INFO_DISABLED">SHOP_INFO_DISABLED</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_INFO_ENCHANTMENTS">SHOP_INFO_ENCHANTMENTS</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_INFO_EXTENDED">SHOP_INFO_EXTENDED</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_INFO_MUSIC_TITLE">SHOP_INFO_MUSIC_TITLE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_INFO_NONE">SHOP_INFO_NONE</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_INFO_NORMAL">SHOP_INFO_NORMAL</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_INFO_POTION_EFFECT">SHOP_INFO_POTION_EFFECT</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_INFO_PRICE">SHOP_INFO_PRICE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_INFO_PRODUCT">SHOP_INFO_PRODUCT</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_INFO_STOCK">SHOP_INFO_STOCK</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_INFO_VENDOR">SHOP_INFO_VENDOR</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_LIMIT_REACHED">SHOP_LIMIT_REACHED</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SHOP_REMOVED">SHOP_REMOVED</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SOMEONE_BOUGHT">SOMEONE_BOUGHT</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#SOMEONE_SOLD">SOMEONE_SOLD</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#UPDATE_AVAILABLE">UPDATE_AVAILABLE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#UPDATE_CHECKING">UPDATE_CHECKING</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#UPDATE_CLICK_TO_DOWNLOAD">UPDATE_CLICK_TO_DOWNLOAD</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#UPDATE_ERROR">UPDATE_ERROR</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#UPDATE_NO_UPDATE">UPDATE_NO_UPDATE</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#USE_IN_CREATIVE">USE_IN_CREATIVE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#VENDOR_NOT_ENOUGH_MONEY">VENDOR_NOT_ENOUGH_MONEY</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html#VENDOR_OUT_OF_STOCK">VENDOR_OUT_OF_STOCK</a></span></code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
@ -448,6 +493,15 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> SHOP_CREATED</pre>
</li>
</ul>
<a name="ADMIN_SHOP_CREATED">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ADMIN_SHOP_CREATED</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> ADMIN_SHOP_CREATED</pre>
</li>
</ul>
<a name="CHEST_ALREADY_SHOP">
<!-- -->
</a>
@ -484,6 +538,15 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> SHOP_REMOVED</pre>
</li>
</ul>
<a name="ALL_SHOPS_REMOVED">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ALL_SHOPS_REMOVED</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> ALL_SHOPS_REMOVED</pre>
</li>
</ul>
<a name="CHEST_NO_SHOP">
<!-- -->
</a>
@ -556,6 +619,15 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> SHOP_INFO_MUSIC_TITLE</pre>
</li>
</ul>
<a name="SHOP_INFO_BOOK_GENERATION">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SHOP_INFO_BOOK_GENERATION</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> SHOP_INFO_BOOK_GENERATION</pre>
</li>
</ul>
<a name="SHOP_INFO_NONE">
<!-- -->
</a>
@ -628,31 +700,31 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> BUY_SUCCESS</pre>
</li>
</ul>
<a name="BUY_SUCESS_ADMIN">
<a name="BUY_SUCCESS_ADMIN">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BUY_SUCESS_ADMIN</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> BUY_SUCESS_ADMIN</pre>
<h4>BUY_SUCCESS_ADMIN</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> BUY_SUCCESS_ADMIN</pre>
</li>
</ul>
<a name="SELL_SUCESS">
<a name="SELL_SUCCESS">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SELL_SUCESS</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> SELL_SUCESS</pre>
<h4>SELL_SUCCESS</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> SELL_SUCCESS</pre>
</li>
</ul>
<a name="SELL_SUCESS_ADMIN">
<a name="SELL_SUCCESS_ADMIN">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SELL_SUCESS_ADMIN</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> SELL_SUCESS_ADMIN</pre>
<h4>SELL_SUCCESS_ADMIN</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> SELL_SUCCESS_ADMIN</pre>
</li>
</ul>
<a name="SOMEONE_BOUGHT">
@ -673,6 +745,15 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> SOMEONE_SOLD</pre>
</li>
</ul>
<a name="REVENUE_WHILE_OFFLINE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>REVENUE_WHILE_OFFLINE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> REVENUE_WHILE_OFFLINE</pre>
</li>
</ul>
<a name="NOT_ENOUGH_INVENTORY_SPACE">
<!-- -->
</a>
@ -727,6 +808,15 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> OUT_OF_STOCK</pre>
</li>
</ul>
<a name="VENDOR_OUT_OF_STOCK">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>VENDOR_OUT_OF_STOCK</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> VENDOR_OUT_OF_STOCK</pre>
</li>
</ul>
<a name="ERROR_OCCURRED">
<!-- -->
</a>
@ -745,6 +835,15 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> AMOUNT_PRICE_NOT_NUMBER</pre>
</li>
</ul>
<a name="AMOUNT_IS_ZERO">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>AMOUNT_IS_ZERO</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> AMOUNT_IS_ZERO</pre>
</li>
</ul>
<a name="PRICES_CONTAIN_DECIMALS">
<!-- -->
</a>
@ -790,6 +889,15 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> CLICK_CHEST_INFO</pre>
</li>
</ul>
<a name="CLICK_CHEST_OPEN">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CLICK_CHEST_OPEN</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> CLICK_CHEST_OPEN</pre>
</li>
</ul>
<a name="OPENED_SHOP">
<!-- -->
</a>
@ -835,6 +943,24 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> SELL_PRICE_TOO_LOW</pre>
</li>
</ul>
<a name="BUY_PRICE_TOO_HIGH">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BUY_PRICE_TOO_HIGH</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> BUY_PRICE_TOO_HIGH</pre>
</li>
</ul>
<a name="SELL_PRICE_TOO_HIGH">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SELL_PRICE_TOO_HIGH</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> SELL_PRICE_TOO_HIGH</pre>
</li>
</ul>
<a name="BUYING_DISABLED">
<!-- -->
</a>
@ -889,6 +1015,15 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> CANNOT_SELL_ITEM</pre>
</li>
</ul>
<a name="USE_IN_CREATIVE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>USE_IN_CREATIVE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> USE_IN_CREATIVE</pre>
</li>
</ul>
<a name="UPDATE_AVAILABLE">
<!-- -->
</a>
@ -934,42 +1069,6 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> UPDATE_ERROR</pre>
</li>
</ul>
<a name="HOLOGRAM_FORMAT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HOLOGRAM_FORMAT</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> HOLOGRAM_FORMAT</pre>
</li>
</ul>
<a name="HOLOGRAM_BUY_SELL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HOLOGRAM_BUY_SELL</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> HOLOGRAM_BUY_SELL</pre>
</li>
</ul>
<a name="HOLOGRAM_BUY">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HOLOGRAM_BUY</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> HOLOGRAM_BUY</pre>
</li>
</ul>
<a name="HOLOGRAM_SELL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HOLOGRAM_SELL</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> HOLOGRAM_SELL</pre>
</li>
</ul>
<a name="NO_PERMISSION_CREATE">
<!-- -->
</a>
@ -1024,6 +1123,24 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> NO_PERMISSION_SELL</pre>
</li>
</ul>
<a name="NO_PERMISSION_BUY_HERE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NO_PERMISSION_BUY_HERE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> NO_PERMISSION_BUY_HERE</pre>
</li>
</ul>
<a name="NO_PERMISSION_SELL_HERE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NO_PERMISSION_SELL_HERE</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> NO_PERMISSION_SELL_HERE</pre>
</li>
</ul>
<a name="NO_PERMISSION_REMOVE_OTHERS">
<!-- -->
</a>
@ -1033,6 +1150,15 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> NO_PERMISSION_REMOVE_OTHERS</pre>
</li>
</ul>
<a name="NO_PERMISSION_REMOVE_ADMIN">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NO_PERMISSION_REMOVE_ADMIN</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> NO_PERMISSION_REMOVE_ADMIN</pre>
</li>
</ul>
<a name="NO_PERMISSION_RELOAD">
<!-- -->
</a>
@ -1051,15 +1177,6 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> NO_PERMISSION_UPDATE</pre>
</li>
</ul>
<a name="NO_PERMISSION_LIMITS">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NO_PERMISSION_LIMITS</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> NO_PERMISSION_LIMITS</pre>
</li>
</ul>
<a name="NO_PERMISSION_CONFIG">
<!-- -->
</a>
@ -1069,6 +1186,42 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> NO_PERMISSION_CONFIG</pre>
</li>
</ul>
<a name="NO_PERMISSION_EXTEND_OTHERS">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NO_PERMISSION_EXTEND_OTHERS</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> NO_PERMISSION_EXTEND_OTHERS</pre>
</li>
</ul>
<a name="NO_PERMISSION_EXTEND_PROTECTED">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NO_PERMISSION_EXTEND_PROTECTED</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> NO_PERMISSION_EXTEND_PROTECTED</pre>
</li>
</ul>
<a name="COMMAND_DESC_HEADER">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>COMMAND_DESC_HEADER</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> COMMAND_DESC_HEADER</pre>
</li>
</ul>
<a name="COMMAND_DESC_FOOTER">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>COMMAND_DESC_FOOTER</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> COMMAND_DESC_FOOTER</pre>
</li>
</ul>
<a name="COMMAND_DESC_CREATE">
<!-- -->
</a>
@ -1078,6 +1231,15 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> COMMAND_DESC_CREATE</pre>
</li>
</ul>
<a name="COMMAND_DESC_CREATE_ADMIN">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>COMMAND_DESC_CREATE_ADMIN</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> COMMAND_DESC_CREATE_ADMIN</pre>
</li>
</ul>
<a name="COMMAND_DESC_REMOVE">
<!-- -->
</a>
@ -1096,6 +1258,15 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> COMMAND_DESC_INFO</pre>
</li>
</ul>
<a name="COMMAND_DESC_REMOVEALL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>COMMAND_DESC_REMOVEALL</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> COMMAND_DESC_REMOVEALL</pre>
</li>
</ul>
<a name="COMMAND_DESC_RELOAD">
<!-- -->
</a>
@ -1123,6 +1294,15 @@ the order they are declared.</div>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> COMMAND_DESC_LIMITS</pre>
</li>
</ul>
<a name="COMMAND_DESC_OPEN">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>COMMAND_DESC_OPEN</h4>
<pre>public static final&nbsp;<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a> COMMAND_DESC_OPEN</pre>
</li>
</ul>
<a name="COMMAND_DESC_CONFIG">
<!-- -->
</a>
@ -1238,7 +1418,7 @@ not permitted.)</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/language/LocalizedMessage.Message.html" target="_top">Frames</a></li>
@ -1278,6 +1458,6 @@ not permitted.)</div>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:35 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>LocalizedMessage.ReplacedRegex (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>LocalizedMessage.ReplacedPlaceholder (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="LocalizedMessage.ReplacedRegex (ShopChest 1.10.4 API)";
parent.document.title="LocalizedMessage.ReplacedPlaceholder (ShopChest 1.12 API)";
}
}
catch(err) {
@ -41,7 +41,7 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/LocalizedMessage.ReplacedRegex.html">Use</a></li>
<li><a href="class-use/LocalizedMessage.ReplacedPlaceholder.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
@ -54,8 +54,8 @@ var activeTableTab = "activeTableTab";
<li><a href="../../../../de/epiceric/shopchest/language/MusicDiscName.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html" target="_top">Frames</a></li>
<li><a href="LocalizedMessage.ReplacedRegex.html" target="_top">No&nbsp;Frames</a></li>
<li><a href="../../../../index.html?de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html" target="_top">Frames</a></li>
<li><a href="LocalizedMessage.ReplacedPlaceholder.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
@ -94,14 +94,14 @@ var activeTableTab = "activeTableTab";
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">de.epiceric.shopchest.language</div>
<h2 title="Class LocalizedMessage.ReplacedRegex" class="title">Class LocalizedMessage.ReplacedRegex</h2>
<h2 title="Class LocalizedMessage.ReplacedPlaceholder" class="title">Class LocalizedMessage.ReplacedPlaceholder</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>de.epiceric.shopchest.language.LocalizedMessage.ReplacedRegex</li>
<li>de.epiceric.shopchest.language.LocalizedMessage.ReplacedPlaceholder</li>
</ul>
</li>
</ul>
@ -114,7 +114,7 @@ var activeTableTab = "activeTableTab";
</dl>
<hr>
<br>
<pre>public static class <span class="typeNameLabel">LocalizedMessage.ReplacedRegex</span>
<pre>public static class <span class="typeNameLabel">LocalizedMessage.ReplacedPlaceholder</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
</li>
</ul>
@ -134,8 +134,8 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html#ReplacedRegex-de.epiceric.shopchest.config.Regex-java.lang.String-">ReplacedRegex</a></span>(<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>&nbsp;regex,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;replace)</code>&nbsp;</td>
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html#ReplacedPlaceholder-de.epiceric.shopchest.config.Placeholder-java.lang.String-">ReplacedPlaceholder</a></span>(<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>&nbsp;placeholder,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;replace)</code>&nbsp;</td>
</tr>
</table>
</li>
@ -153,12 +153,12 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html#getRegex--">getRegex</a></span>()</code>&nbsp;</td>
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html#getPlaceholder--">getPlaceholder</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html#getReplace--">getReplace</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html#getReplace--">getReplace</a></span>()</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
@ -182,14 +182,14 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ReplacedRegex-de.epiceric.shopchest.config.Regex-java.lang.String-">
<a name="ReplacedPlaceholder-de.epiceric.shopchest.config.Placeholder-java.lang.String-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ReplacedRegex</h4>
<pre>public&nbsp;ReplacedRegex(<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>&nbsp;regex,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;replace)</pre>
<h4>ReplacedPlaceholder</h4>
<pre>public&nbsp;ReplacedPlaceholder(<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>&nbsp;placeholder,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;replace)</pre>
</li>
</ul>
</li>
@ -209,20 +209,20 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getReplace()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>String which will replace the regex</dd>
<dd>String which will replace the placeholder</dd>
</dl>
</li>
</ul>
<a name="getRegex--">
<a name="getPlaceholder--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getRegex</h4>
<pre>public&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>&nbsp;getRegex()</pre>
<h4>getPlaceholder</h4>
<pre>public&nbsp;<a href="../../../../de/epiceric/shopchest/config/Placeholder.html" title="enum in de.epiceric.shopchest.config">Placeholder</a>&nbsp;getPlaceholder()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Regex that will be replaced</dd>
<dd>Placeholder that will be replaced</dd>
</dl>
</li>
</ul>
@ -245,7 +245,7 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/LocalizedMessage.ReplacedRegex.html">Use</a></li>
<li><a href="class-use/LocalizedMessage.ReplacedPlaceholder.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
@ -258,8 +258,8 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<li><a href="../../../../de/epiceric/shopchest/language/MusicDiscName.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html" target="_top">Frames</a></li>
<li><a href="LocalizedMessage.ReplacedRegex.html" target="_top">No&nbsp;Frames</a></li>
<li><a href="../../../../index.html?de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html" target="_top">Frames</a></li>
<li><a href="LocalizedMessage.ReplacedPlaceholder.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
@ -295,6 +295,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:35 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>LocalizedMessage (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>LocalizedMessage (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,13 +13,13 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="LocalizedMessage (ShopChest 1.10.4 API)";
parent.document.title="LocalizedMessage (ShopChest 1.12 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10};
var methods = {"i0":10,"i1":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -136,7 +136,7 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html" title="class in de.epiceric.shopchest.language">LocalizedMessage.ReplacedRegex</a></span></code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html" title="class in de.epiceric.shopchest.language">LocalizedMessage.ReplacedPlaceholder</a></span></code>&nbsp;</td>
</tr>
</table>
</li>
@ -156,11 +156,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.html#LocalizedMessage-de.epiceric.shopchest.language.LocalizedMessage.Message-java.lang.String-">LocalizedMessage</a></span>(<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;localizedString)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.html#LocalizedMessage-de.epiceric.shopchest.language.LocalizedMessage.Message-java.lang.String-de.epiceric.shopchest.config.Regex...-">LocalizedMessage</a></span>(<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;localizedString,
<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>...&nbsp;regexes)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
@ -184,10 +179,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.html#getMessage--">getMessage</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code><a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.html#getRegexes--">getRegexes</a></span>()</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
@ -210,17 +201,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="LocalizedMessage-de.epiceric.shopchest.language.LocalizedMessage.Message-java.lang.String-de.epiceric.shopchest.config.Regex...-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>LocalizedMessage</h4>
<pre>public&nbsp;LocalizedMessage(<a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.Message.html" title="enum in de.epiceric.shopchest.language">LocalizedMessage.Message</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;localizedString,
<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>...&nbsp;regexes)</pre>
</li>
</ul>
<a name="LocalizedMessage-de.epiceric.shopchest.language.LocalizedMessage.Message-java.lang.String-">
<!-- -->
</a>
@ -252,19 +232,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</dl>
</li>
</ul>
<a name="getRegexes--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRegexes</h4>
<pre>public&nbsp;<a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config">Regex</a>[]&nbsp;getRegexes()</pre>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>Array of <a href="../../../../de/epiceric/shopchest/config/Regex.html" title="enum in de.epiceric.shopchest.config"><code>Regex</code></a>, which are required by the message</dd>
</dl>
</li>
</ul>
<a name="getLocalizedString--">
<!-- -->
</a>
@ -347,6 +314,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:35 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>MusicDiscName (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>MusicDiscName (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="MusicDiscName (ShopChest 1.10.4 API)";
parent.document.title="MusicDiscName (ShopChest 1.12 API)";
}
}
catch(err) {
@ -50,7 +50,7 @@ var activeTableTab = "activeTableTab";
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/language/PotionEffectName.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
@ -250,7 +250,7 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedRegex.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/language/LocalizedMessage.ReplacedPlaceholder.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../de/epiceric/shopchest/language/PotionEffectName.html" title="class in de.epiceric.shopchest.language"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
@ -291,6 +291,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:35 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>PotionEffectName (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>PotionEffectName (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="PotionEffectName (ShopChest 1.10.4 API)";
parent.document.title="PotionEffectName (ShopChest 1.12 API)";
}
}
catch(err) {
@ -291,6 +291,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:35 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>PotionName.PotionItemType (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>PotionName.PotionItemType (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="PotionName.PotionItemType (ShopChest 1.10.4 API)";
parent.document.title="PotionName.PotionItemType (ShopChest 1.12 API)";
}
}
catch(err) {
@ -366,6 +366,6 @@ not permitted.)</div>
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

View File

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_74) on Tue Sep 06 12:08:35 CEST 2016 -->
<!-- Generated by javadoc (1.8.0_74) on Thu Jun 08 15:19:08 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>PotionName (ShopChest 1.10.4 API)</title>
<meta name="date" content="2016-09-06">
<title>PotionName (ShopChest 1.12 API)</title>
<meta name="date" content="2017-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -13,7 +13,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="PotionName (ShopChest 1.10.4 API)";
parent.document.title="PotionName (ShopChest 1.12 API)";
}
}
catch(err) {
@ -329,6 +329,6 @@ extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More