本文整理汇总了Java中com.intellij.refactoring.wrapreturnvalue.WrapReturnValueProcessor类的典型用法代码示例。如果您正苦于以下问题:Java WrapReturnValueProcessor类的具体用法?Java WrapReturnValueProcessor怎么用?Java WrapReturnValueProcessor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
WrapReturnValueProcessor类属于com.intellij.refactoring.wrapreturnvalue包,在下文中一共展示了WrapReturnValueProcessor类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: doTest
import com.intellij.refactoring.wrapreturnvalue.WrapReturnValueProcessor; //导入依赖的package包/类
private void doTest(final boolean existing, String exceptionMessage, final boolean createInnerClass) {
try {
doTest((rootDir, rootAfter) -> {
PsiClass aClass = myJavaFacade.findClass("Test", GlobalSearchScope.projectScope(getProject()));
assertNotNull("Class Test not found", aClass);
PsiMethod method = aClass.findMethodsByName("foo", false)[0];
String wrapperClassName = "Wrapper";
PsiClass wrapperClass = myJavaFacade.findClass(wrapperClassName, GlobalSearchScope.projectScope(getProject()));
assertTrue(!existing || wrapperClass != null);
PsiField delegateField = existing ? wrapperClass.findFieldByName("myField", false) : null;
new WrapReturnValueProcessor(wrapperClassName, "", null, method, existing, createInnerClass, delegateField).run();
});
}
catch (BaseRefactoringProcessor.ConflictsInTestsException e) {
if (exceptionMessage != null) {
assertEquals(exceptionMessage, e.getMessage());
return;
}
throw e;
}
if (exceptionMessage != null) {
fail("Conflict was not found");
}
}
示例2: doTest
import com.intellij.refactoring.wrapreturnvalue.WrapReturnValueProcessor; //导入依赖的package包/类
private void doTest(final boolean existing, String exceptionMessage, final boolean createInnerClass) throws Exception {
try {
doTest(new PerformAction() {
@Override
public void performAction(final VirtualFile rootDir, final VirtualFile rootAfter) throws Exception {
PsiClass aClass = myJavaFacade.findClass("Test", GlobalSearchScope.projectScope(getProject()));
assertNotNull("Class Test not found", aClass);
final PsiMethod method = aClass.findMethodsByName("foo", false)[0];
@NonNls final String wrapperClassName = "Wrapper";
final PsiClass wrapperClass = myJavaFacade.findClass(wrapperClassName, GlobalSearchScope.projectScope(getProject()));
assertTrue(!existing || wrapperClass != null);
final PsiField delegateField = existing ? wrapperClass.findFieldByName("myField", false) : null;
WrapReturnValueProcessor processor = new WrapReturnValueProcessor(wrapperClassName, "",
null, method, existing, createInnerClass,
delegateField);
processor.run();
/*LocalFileSystem.getInstance().refresh(false);
FileDocumentManager.getInstance().saveAllDocuments();*/
}
});
}
catch (BaseRefactoringProcessor.ConflictsInTestsException e) {
if (exceptionMessage != null) {
assertEquals(exceptionMessage, e.getMessage());
return;
}
throw e;
}
if (exceptionMessage != null) {
fail("Conflict was not found");
}
}