本文整理匯總了Java中com.intellij.refactoring.typeCook.deductive.builder.Result類的典型用法代碼示例。如果您正苦於以下問題:Java Result類的具體用法?Java Result怎麽用?Java Result使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
Result類屬於com.intellij.refactoring.typeCook.deductive.builder包,在下文中一共展示了Result類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: findUsages
import com.intellij.refactoring.typeCook.deductive.builder.Result; //導入依賴的package包/類
@NotNull
protected UsageInfo[] findUsages() {
final SystemBuilder systemBuilder = new SystemBuilder(myProject, mySettings);
final ReductionSystem commonSystem = systemBuilder.build(myElements);
myResult = new Result(commonSystem);
final ReductionSystem[] systems = commonSystem.isolate();
for (final ReductionSystem system : systems) {
if (system != null) {
final ResolverTree tree = new ResolverTree(system);
tree.resolve();
final Binding solution = tree.getBestSolution();
if (solution != null) {
myResult.incorporateSolution(solution);
}
}
}
final Set<PsiElement> changedItems = myResult.getCookedElements();
final UsageInfo[] usages = new UsageInfo[changedItems.size()];
int i = 0;
for (final PsiElement element : changedItems) {
if (!(element instanceof PsiTypeCastExpression)) {
usages[i++] = new UsageInfo(element) {
public String getTooltipText() {
return myResult.getCookedType(element).getCanonicalText();
}
};
}
else {
usages[i++] = new UsageInfo(element);
}
}
return usages;
}
示例2: findUsages
import com.intellij.refactoring.typeCook.deductive.builder.Result; //導入依賴的package包/類
@NotNull
protected UsageInfo[] findUsages() {
final SystemBuilder systemBuilder = new SystemBuilder(myProject, mySettings);
final ReductionSystem commonSystem = systemBuilder.build(myElements);
myResult = new Result(commonSystem);
final ReductionSystem[] systems = commonSystem.isolate();
for (final ReductionSystem system : systems) {
if (system != null) {
final ResolverTree tree = new ResolverTree(system);
tree.resolve();
final Binding solution = tree.getBestSolution();
if (solution != null) {
myResult.incorporateSolution(solution);
}
}
}
final HashSet<PsiElement> changedItems = myResult.getCookedElements();
final UsageInfo[] usages = new UsageInfo[changedItems.size()];
int i = 0;
for (final PsiElement element : changedItems) {
if (!(element instanceof PsiTypeCastExpression)) {
usages[i++] = new UsageInfo(element) {
public String getTooltipText() {
return myResult.getCookedType(element).getCanonicalText();
}
};
}
else {
usages[i++] = new UsageInfo(element);
}
}
return usages;
}