0

我为 Eclipse 创建了一个无头插件,需要访问工作区。有人有 API 文档或其他信息吗?

4

1 回答 1

2

ResourcesPlugin.getWorkspace()会给你IWorkspace

您需要为-data <workspacelocation>无头应用指定参数。您可以检查是否已使用以下内容指定:

  final Location instanceLoc = Platform.getInstanceLocation();
  if (instanceLoc == null || !instanceLoc.isSet()) {
    // handle error here
  }
于 2013-08-30T08:54:37.137 回答