本文整理汇总了Java中com.intellij.openapi.module.ModifiableModuleModel.dispose方法的典型用法代码示例。如果您正苦于以下问题:Java ModifiableModuleModel.dispose方法的具体用法?Java ModifiableModuleModel.dispose怎么用?Java ModifiableModuleModel.dispose使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.openapi.module.ModifiableModuleModel
的用法示例。
在下文中一共展示了ModifiableModuleModel.dispose方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: hasChanges
import com.intellij.openapi.module.ModifiableModuleModel; //导入方法依赖的package包/类
/**
* Allows to answer if any file that belongs to the given project has changes in comparison with VCS.
*
* @param project target project to check
* @return <code>true</code> if any file that belongs to the given project has changes in comparison with VCS
* <code>false</code> otherwise
*/
public static boolean hasChanges(@NotNull final Project project) {
final ModifiableModuleModel moduleModel = new ReadAction<ModifiableModuleModel>() {
@Override
protected void run(@NotNull Result<ModifiableModuleModel> result) throws Throwable {
result.setResult(ModuleManager.getInstance(project).getModifiableModel());
}
}.execute().getResultObject();
try {
for (Module module : moduleModel.getModules()) {
if (hasChanges(module)) {
return true;
}
}
return false;
}
finally {
moduleModel.dispose();
}
}
示例2: hasChanges
import com.intellij.openapi.module.ModifiableModuleModel; //导入方法依赖的package包/类
/**
* Allows to answer if any file that belongs to the given project has changes in comparison with VCS.
*
* @param project target project to check
* @return <code>true</code> if any file that belongs to the given project has changes in comparison with VCS
* <code>false</code> otherwise
*/
public static boolean hasChanges(@NotNull final Project project) {
final ModifiableModuleModel moduleModel = new ReadAction<ModifiableModuleModel>() {
@Override
protected void run(Result<ModifiableModuleModel> result) throws Throwable {
result.setResult(ModuleManager.getInstance(project).getModifiableModel());
}
}.execute().getResultObject();
try {
for (Module module : moduleModel.getModules()) {
if (hasChanges(module)) {
return true;
}
}
return false;
}
finally {
moduleModel.dispose();
}
}
示例3: testDisposePointerFromUncommitedModifiableModel
import com.intellij.openapi.module.ModifiableModuleModel; //导入方法依赖的package包/类
public void testDisposePointerFromUncommitedModifiableModel() throws Exception {
final NamedPointer<Module> pointer = ModuleUtilCore.createPointer(getProject(), "xxx");
final ModifiableModuleModel modifiableModel = getModuleManager().getModifiableModel();
final Module module = modifiableModel.newModule("xxx", myProject.getBaseDir().getPath());
assertSame(pointer, ModuleUtilCore.createPointer(module));
assertSame(pointer, ModuleUtilCore.createPointer(getProject(), "xxx"));
assertSame(module, pointer.get());
assertEquals("xxx", pointer.getName());
modifiableModel.dispose();
assertNull(pointer.get());
assertEquals("xxx", pointer.getName());
}
示例4: hasChanges
import com.intellij.openapi.module.ModifiableModuleModel; //导入方法依赖的package包/类
/**
* Allows to answer if any file that belongs to the given project has changes in comparison with VCS.
*
* @param project target project to check
* @return <code>true</code> if any file that belongs to the given project has changes in comparison with VCS
* <code>false</code> otherwise
*/
public static boolean hasChanges(@Nonnull final Project project) {
final ModifiableModuleModel moduleModel = new ReadAction<ModifiableModuleModel>() {
@Override
protected void run(@Nonnull Result<ModifiableModuleModel> result) throws Throwable {
result.setResult(ModuleManager.getInstance(project).getModifiableModel());
}
}.execute().getResultObject();
try {
for (Module module : moduleModel.getModules()) {
if (hasChanges(module)) {
return true;
}
}
return false;
}
finally {
moduleModel.dispose();
}
}