本文整理匯總了Java中com.intellij.debugger.engine.jdi.VirtualMachineProxy類的典型用法代碼示例。如果您正苦於以下問題:Java VirtualMachineProxy類的具體用法?Java VirtualMachineProxy怎麽用?Java VirtualMachineProxy使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
VirtualMachineProxy類屬於com.intellij.debugger.engine.jdi包,在下文中一共展示了VirtualMachineProxy類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: findNested
import com.intellij.debugger.engine.jdi.VirtualMachineProxy; //導入依賴的package包/類
@Nullable
private ReferenceType findNested(ReferenceType fromClass, final GroovyPsiElement toFind, SourcePosition classPosition) {
final VirtualMachineProxy vmProxy = myDebugProcess.getVirtualMachineProxy();
if (fromClass.isPrepared()) {
final List<ReferenceType> nestedTypes = vmProxy.nestedTypes(fromClass);
for (ReferenceType nested : nestedTypes) {
final ReferenceType found = findNested(nested, toFind, classPosition);
if (found != null) {
return found;
}
}
try {
final int lineNumber = classPosition.getLine() + 1;
if (!fromClass.locationsOfLine(lineNumber).isEmpty()) {
return fromClass;
}
//noinspection LoopStatementThatDoesntLoop
for (Location location : fromClass.allLineLocations()) {
final SourcePosition candidateFirstPosition = SourcePosition.createFromLine(toFind.getContainingFile(), location.lineNumber() - 1)
;
if (toFind.equals(findReferenceTypeSourceImage(candidateFirstPosition))) {
return fromClass;
}
break; // isApplicable only the first location
}
}
catch (AbsentInformationException ignored) {
}
}
return null;
}
示例2: findNested
import com.intellij.debugger.engine.jdi.VirtualMachineProxy; //導入依賴的package包/類
@Nullable
private ReferenceType findNested(ReferenceType fromClass, final GroovyPsiElement toFind, SourcePosition classPosition) {
final VirtualMachineProxy vmProxy = myDebugProcess.getVirtualMachineProxy();
if (fromClass.isPrepared()) {
final List<ReferenceType> nestedTypes = vmProxy.nestedTypes(fromClass);
for (ReferenceType nested : nestedTypes) {
final ReferenceType found = findNested(nested, toFind, classPosition);
if (found != null) {
return found;
}
}
try {
final int lineNumber = classPosition.getLine() + 1;
if (fromClass.locationsOfLine(lineNumber).size() > 0) {
return fromClass;
}
//noinspection LoopStatementThatDoesntLoop
for (Location location : fromClass.allLineLocations()) {
final SourcePosition candidateFirstPosition = SourcePosition.createFromLine(toFind.getContainingFile(), location.lineNumber() - 1)
;
if (toFind.equals(findReferenceTypeSourceImage(candidateFirstPosition))) {
return fromClass;
}
break; // isApplicable only the first location
}
}
catch (AbsentInformationException ignored) {
}
}
return null;
}
示例3: getVirtualMachineProxy
import com.intellij.debugger.engine.jdi.VirtualMachineProxy; //導入依賴的package包/類
VirtualMachineProxy getVirtualMachineProxy();