RCPで設定ページを作成する場合、たとえば次のようになります。
public class MyPreferencePage extends org.eclipse.jface.preference.PreferencePage implements IWorkbenchPreferencePage
デフォルトで追加される「デフォルト値に戻す」ボタンと「適用」ボタンを削除するにはどうすればよいですか。使用する
this.getDefaultsButton().setVisible(false);
this.getApplyButton().setVisible(false);
エラーが発生します。