2011-06-25 8 views
0

選択したファイルを読み取り専用に変更するためのEclipseプラグインを作成しようとしています。実行時に「新しいアクションが実行されました」というメッセージが表示されたポップアップメニューのサンプルプラグインプロジェクトを作成しましたEclipseプラグインの開発:選択したファイルのファイル属性を変更する方法は?

次のステップにはまっています。

選択したファイルのリストを取得し、ファイル属性を変更するにはどうすればよいですか?

答えて

1

私が正しく、次のテストする時間を持っていないが、それはおそらく良い出発点である:

public class SetFileToROHandler extends AbstractHandler implements IHandler { 
    @Override 
    public Object execute(ExecutionEvent event) throws ExecutionException { 
    final ISelection s = HandlerUtil.getCurrentSelectionChecked(event); 
    if (!(s instanceof IStructuredSelection)) 
     return null; 
    final IStructuredSelection ss = (IStructuredSelection) s; 
    for (final Object o : ss.toArray()) { 
     if (!(o instanceof IFile)) { 
     continue; 
     } 
     IFile f = (IFile) o; 
     f.setReadOnly(true); 
    } 
    return null; 
    } 
}