Javadoc/JDK7 のバックアップ(No.3)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Javadoc/JDK7 へ行く。
- 1 (2012-06-29 (金) 14:52:30)
- 2 (2012-06-29 (金) 17:50:10)
- 3 (2012-06-30 (土) 04:13:37)
- 4 (2012-07-01 (日) 06:40:30)
- 5 (2012-07-02 (月) 20:39:33)
- 6 (2012-07-09 (月) 19:07:28)
- 7 (2012-11-23 (金) 04:36:56)
- 8 (2013-05-14 (火) 20:34:44)
- 9 (2013-05-14 (火) 22:43:10)
- 10 (2013-05-17 (金) 17:12:52)
- 11 (2013-05-28 (火) 20:38:36)
- 12 (2013-05-29 (水) 00:53:11)
- 13 (2013-06-07 (金) 19:12:13)
- 14 (2014-01-09 (木) 13:57:23)
- 15 (2014-01-10 (金) 13:50:19)
- 16 (2014-05-16 (金) 20:23:46)
- 17 (2014-09-02 (火) 16:29:20)
- 18 (2014-10-31 (金) 18:58:50)
- 19 (2015-08-14 (金) 16:43:14)
- 20 (2015-09-16 (水) 15:38:39)
- 21 (2017-04-04 (火) 14:17:08)
- 22 (2018-02-27 (火) 14:35:27)
- 23 (2018-03-08 (木) 16:40:46)
- 24 (2018-03-08 (木) 18:05:15)
- 25 (2018-12-10 (月) 16:50:56)
TITLE:JDK 7 - Javadoc
Posted by aterai at 2012-06-29
JDK 7
メモ
Java SE 7 API のドキュメント翻訳プロジェクトについて
- 続:旧 Java SE API リファレンスへの新しいリンク先変更について « 寺田 佳央 – Yoshio Teradaから引用
また、Java SE 7 API のドキュメント翻訳プロジェクトにつきましては、諸事情がございまして、5月中旬位まで御待ち頂けませんでしょうか。5月中旬移行に本件についてのアップデートをさせて頂きたいと考えております。
- 重箱の隅:「5月中旬
移行以降」
概要
上の翻訳プロジェクトはどうなるのか不明だし、個人的に興味があるというか必要なのは Swing 関係だけなので、「諸事情」などは無視して勝手(自分用)に翻訳することにしました。誤訳や、用語の一貫性などはあまり気にしていません。おかしな訳が気になる場合は、自由(適当)に修正してください。
JLayer
- JLayer is a universal decorator for Swing components which enables you to implement various advanced painting effects as well as receive notifications of all AWTEvents generated within its borders.
- JLayerは、Swingコンポーネントのための普遍的なデコレータであり、様々な高度なペイント効果を実装するだけでなく、その境界内に生成されたすべてのAWTEventsの通知を受け取ることができます。
- JLayer delegates the handling of painting and input events to a LayerUI object, which performs the actual decoration.
- JLayerは描画と入力イベントの処理をLayerUIオブジェクトに移譲し、そしてそれが実際の装飾を実行します。
- The custom painting implemented in the LayerUI and events notification work for the JLayer itself and all its subcomponents.
- LayerUIで実装されるカスタム描画とイベント通知は、JLayer自体とそのすべての下位コンポーネントのために働きます。
- This combination enables you to enrich existing components by adding new advanced functionality such as temporary locking of a hierarchy, data tips for compound components, enhanced mouse scrolling etc and so on.
- この組み合わせは、新しい先進的な機能、例えば階層の一時ロックや、複合コンポーネント用のデータヒント、強化されたマウスのスクロールなどを、既存のコンポーネントに追加して豊かにすることができます。
- JLayer is a good solution if you only need to do custom painting over compound component or catch input events from its subcomponents.
- 複合コンポーネント上にカスタム描画を行ったり、そのサブコンポーネントからの入力イベントをキャッチする必要があるだけなら、JLayerは良いソリューションです。
LayerUI
- The base class for all JLayer's UI delegates.
- すべてのJLayerのUI委譲の基本クラスです。
- paint(java.awt.Graphics, javax.swing.JComponent) method performs the painting of the JLayer and eventDispatched(AWTEvent, JLayer) method is notified about any AWTEvents which have been generated by a JLayer or any of its subcomponents.
- paint(java.awt.Graphics, javax.swing.JComponent)メソッドは、JLayerの描画を実行し、eventDispatched(AWTEvent, JLayer)メソッドは、JLayer、またはそのサブコンポーネントによって生成された任意のAWTEventsの通知を受け取ります。
- The LayerUI differs from the UI delegates of the other components, because it is LookAndFeel independent and is not updated by default when the system LookAndFeel is changed.
- LayerUIは、他のコンポーネントのUI委譲とは異なり、LookAndFeelから独立であり、システムのLook&Feelが変更されてもデフォルトでは更新されません。
- The subclasses of LayerUI can either be stateless and shareable by multiple JLayers or not shareable.
- LayerUIのサブクラスをステートレスにして複数JLayersで共有することも可能ですが、共有しなくても構いません。
SecondaryLoop
SecondaryLoop (Java Platform SE 7 )
- A helper interface to run the nested event loop.
- 入れ子になったイベントループを実行するヘルパーインターフェースです。
- Objects that implement this interface are created with the EventQueue.createSecondaryLoop() method.
- このインターフェイスを実装するオブジェクトは、EventQueue.createSecondaryLoop()メソッドを使用して作成されます。
- The interface provides two methods, enter() and exit(), which can be used to start and stop the event loop.
- このインタフェースは、enter() と exit() の2つのメソッドを提供し、イベントループを起動、停止するために使用することができます。
- When the enter() method is called, the current thread is blocked until the loop is terminated by the exit() method.
- enter() メソッドが呼び出されると、ループが exit() メソッドによって終了されるまで現在のスレッドはブロックされます。
- Also, a new event loop is started on the event dispatch thread, which may or may not be the current thread.
- また、新しいイベントループがイベントディスパッチスレッド上で開始されます(それがカレントスレッドかどうかは不明)。
- The loop can be terminated on any thread by calling its exit() method.
- ループは、exit() メソッドを呼び出すことによって、任意のスレッド上から終了することができます。
- After the loop is terminated, the SecondaryLoop object can be reused to run a new nested event loop.
- ループが終了した後、SecondaryLoop オブジェクトは新しい入れ子になったイベントループを実行するために再利用することが可能です。
- A typical use case of applying this interface is AWT and Swing modal dialogs.
- このインターフェースの典型的な使用例は、AWTとSwingのモーダルダイアログです。
- When a modal dialog is shown on the event dispatch thread, it enters a new secondary loop.
- モーダルダイアログがイベントディスパッチスレッド上で表示されたら、それは新しい二次ループに入ります。
- Later, when the dialog is hidden or disposed, it exits the loop, and the thread continues its execution.
- その後、ダイアログが非表示または破棄されると、ループを終了し、スレッドは実行を継続します。
- The following example illustrates a simple use case of secondary loops:
- 以下の例は、第二のループの単純な使用例を示しています: