diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/glossary/webidl/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/glossary/webidl/index.html')
-rw-r--r-- | files/ja/glossary/webidl/index.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/files/ja/glossary/webidl/index.html b/files/ja/glossary/webidl/index.html new file mode 100644 index 0000000000..f5a9a1da69 --- /dev/null +++ b/files/ja/glossary/webidl/index.html @@ -0,0 +1,23 @@ +--- +title: WebIDL +slug: Glossary/WebIDL +tags: + - CodingScripting + - Glossary + - WebIDL +translation_of: Glossary/WebIDL +--- +<p><strong>WebIDL</strong> は、ウェブアプリケーションプログラミングインターフェイス ({{Glossary("API")}}) を構成する{{Glossary("type", "データ型")}}、{{Glossary("interface", "インターフェイス")}}、{{Glossary("method", "メソッド")}}、{{Glossary("property", "プロパティ")}}、およびその他のコンポーネントを記述するために使用されるインターフェイス記述言語です。これは、特定のプログラミング言語に依存しないやや定式化された構文を使用しているため、API のコンポーネントを JavaScript 互換の構造にマップすることが可能な一方で、各 API を構築するために使用される基礎となるコードは、どの言語であっても最適に記述できます。</p> + +<p>WebIDL はウェブのほぼすべての API {{Glossary("specification", "仕様")}}で使用されており、その標準的な形式および構文のため、ウェブブラウザーを作成するプログラマーは、どのように API を実装するコードを書くかにかかわらず、ブラウザーが相互に互換性があることを容易に確認できます。</p> + +<h2 id="Learn_more" name="Learn_more">関連項目</h2> + +<h3 id="Technical_reference" name="Technical_reference">技術情報</h3> + +<ul> + <li><a href="http://www.w3.org/TR/WebIDL/">Specification</a></li> + <li><a href="/docs/MDN/Contribute/Howto/Write_an_API_reference/Information_contained_in_a_WebIDL_file">Information contained in a WebIDL file</a></li> + <li><a href="/docs/Mozilla/WebIDL_bindings">WebIDL bindings</a></li> + <li>{{interwiki("wikipedia", "WebIDL")}}</li> +</ul> |