Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アプリケーションにRadioGroupFieldEditorフィールドがあり、このフィールドはメソッドをFieldEditorPreferencePage使用して内部的に追加されaddField()ます。
RadioGroupFieldEditor
FieldEditorPreferencePage
addField()
フィールドに追加しましたが、値を選択してsetPropertyChangeListener(new IPropertyChangeListener()もコントロールが移動しません。IPropertyChangeListener
setPropertyChangeListener(new IPropertyChangeListener()
IPropertyChangeListener
はFieldEditorPreferencePageすでにIPropertyChangeListenerインターフェースを実装しており、PreferencePageに追加するすべてのFieldEditorのリスナーとしてセットを取得します。propertyChange(PropertyChangeEvent event)メソッドをオーバーライドするだけです。super.propertyChange(event)特定のイベントをチェックするので、そこに電話することを忘れないでください。
propertyChange(PropertyChangeEvent event)
super.propertyChange(event)