提供: Minecraft Modding Wiki
移動先: 案内検索
(新規作成)
 
1行目: 1行目:
The Configuration API is a set of tools to help developers quickly parse and emit configuration files that are human readable and editable. Despite the name, the API can easily be used to store plugin data in addition to plugin configuration. Presently only [http://en.wikipedia.org/wiki/YAML YAML] configurations can be used. The API however was designed to be extensible and allow for other implementations.
+
Configuration APIは、人が読み書き可能な形式のコンフィグファイルの、解析と出力を素早く行う機能のセットです。
  
The Configuration API can be found in the org.bukkit.configuration and org.bukkit.configuration.file packages. Plugins that were created before version 1.1-R5 may have used an older and different implmention that resided in org.bukkit.util.configuration. These implementations are not compatible and the old package has since been removed.
+
~APIという名前によらず、簡単にプラグインのデータを、コンフィグファイルへ保管する事が出来ます。
 +
[http://en.wikipedia.org/wiki/YAML YAML] 形式のファイルのみに対応しています。
 +
APIは、いかに独自の拡張に対応しやすくするかを考えて設計されています。
  
This introduction assumes that you have some knowledge about proper object oriented design, Java, and the core design of Bukkit plugins. This page is not a substitute for the JavaDocs for the [http://jd.bukkit.org/apidocs/index.html?org/bukkit/configuration/file/FileConfiguration.html FileConfiguration Class]
+
Configuration APIは、'''org.bukkit.configuration'''と'''org.bukkit.configuration.file''' パッケージの配下にあります。
 +
バージョン1.1-R5以前に作られたプラグインは、'''org.bukkit.util.configuration'''パッケージ配下にあった古い別の実装方法を採用しているかもしれません。
 +
この新旧の実装方法には互換性がありませんので、古いパッケージを使った機能は除去して下さい。
 +
 
 +
このページの解説は、オブジェクト指向とJava、Bukkitプラグインの基本的な設計に関する知識が、
 +
いくらかある読者に読まれる事を想定しています。
 +
このページは、BukkitのJavadoc内の[http://jd.bukkit.org/apidocs/index.html?org/bukkit/configuration/file/FileConfiguration.html FileConfiguration Class]に取って代わる内容ではありません。
  
 
== Basic Topics ==
 
== Basic Topics ==
 
== Advanced Topics ==
 
== Advanced Topics ==
 
== Example Use ==
 
== Example Use ==

2012年6月16日 (土) 20:03時点における版

Configuration APIは、人が読み書き可能な形式のコンフィグファイルの、解析と出力を素早く行う機能のセットです。

~APIという名前によらず、簡単にプラグインのデータを、コンフィグファイルへ保管する事が出来ます。 YAML 形式のファイルのみに対応しています。 APIは、いかに独自の拡張に対応しやすくするかを考えて設計されています。

Configuration APIは、org.bukkit.configurationorg.bukkit.configuration.file パッケージの配下にあります。 バージョン1.1-R5以前に作られたプラグインは、org.bukkit.util.configurationパッケージ配下にあった古い別の実装方法を採用しているかもしれません。 この新旧の実装方法には互換性がありませんので、古いパッケージを使った機能は除去して下さい。

このページの解説は、オブジェクト指向とJava、Bukkitプラグインの基本的な設計に関する知識が、 いくらかある読者に読まれる事を想定しています。 このページは、BukkitのJavadoc内のFileConfiguration Classに取って代わる内容ではありません。

Basic Topics

Advanced Topics

Example Use