本文整理匯總了Java中org.intellij.plugins.xsltDebugger.XsltDebuggerSession類的典型用法代碼示例。如果您正苦於以下問題:Java XsltDebuggerSession類的具體用法?Java XsltDebuggerSession怎麽用?Java XsltDebuggerSession使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
XsltDebuggerSession類屬於org.intellij.plugins.xsltDebugger包,在下文中一共展示了XsltDebuggerSession類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: init
import org.intellij.plugins.xsltDebugger.XsltDebuggerSession; //導入依賴的package包/類
public void init(Debugger client) {
myDebuggerSession = XsltDebuggerSession.getInstance(myProcessHandler);
myDebuggerSession.addListener(new XsltDebuggerSession.Listener() {
@Override
public void debuggerSuspended() {
final Debugger c = myDebuggerSession.getClient();
getSession().positionReached(new MySuspendContext(myDebuggerSession, c.getCurrentFrame(), c.getSourceFrame()));
}
@Override
public void debuggerResumed() {
}
@Override
public void debuggerStopped() {
myBreakpointManager = new BreakpointManagerImpl();
}
});
final BreakpointManager mgr = client.getBreakpointManager();
if (myBreakpointManager != mgr) {
final List<Breakpoint> breakpoints = myBreakpointManager.getBreakpoints();
for (Breakpoint breakpoint : breakpoints) {
final Breakpoint bp = mgr.setBreakpoint(breakpoint.getUri(), breakpoint.getLine());
bp.setEnabled(breakpoint.isEnabled());
bp.setLogMessage(breakpoint.getLogMessage());
bp.setTraceMessage(breakpoint.getTraceMessage());
bp.setCondition(breakpoint.getCondition());
bp.setSuspend(breakpoint.isSuspend());
}
myBreakpointManager = mgr;
}
}
示例2: init
import org.intellij.plugins.xsltDebugger.XsltDebuggerSession; //導入依賴的package包/類
public void init(Debugger client) {
myDebuggerSession = XsltDebuggerSession.getInstance(myProcessHandler);
myDebuggerSession.addListener(new XsltDebuggerSession.Listener() {
@Override
public void debuggerSuspended() {
final XDebugSession session = XsltDebugProcess.this.getSession();
final Debugger c = myDebuggerSession.getClient();
session.positionReached(new MySuspendContext(myDebuggerSession, c.getCurrentFrame(), c.getSourceFrame()));
}
@Override
public void debuggerResumed() {
}
@Override
public void debuggerStopped() {
myBreakpointManager = new BreakpointManagerImpl();
}
});
final BreakpointManager mgr = client.getBreakpointManager();
if (myBreakpointManager != mgr) {
final List<Breakpoint> breakpoints = myBreakpointManager.getBreakpoints();
for (Breakpoint breakpoint : breakpoints) {
final Breakpoint bp = mgr.setBreakpoint(breakpoint.getUri(), breakpoint.getLine());
bp.setEnabled(breakpoint.isEnabled());
bp.setLogMessage(breakpoint.getLogMessage());
bp.setTraceMessage(breakpoint.getTraceMessage());
bp.setCondition(breakpoint.getCondition());
bp.setSuspend(breakpoint.isSuspend());
}
myBreakpointManager = mgr;
}
}
示例3: navigate
import org.intellij.plugins.xsltDebugger.XsltDebuggerSession; //導入依賴的package包/類
public void navigate(boolean requestFocus) {
final OutputEventQueue.NodeEvent event = getUserObject();
final Project project = (Project)DataManager.getInstance().getDataContext().getData(CommonDataKeys.PROJECT.getName());
XsltDebuggerSession.openLocation(project, event.getURI(), event.getLineNumber() - 1);
}
示例4: MySuspendContext
import org.intellij.plugins.xsltDebugger.XsltDebuggerSession; //導入依賴的package包/類
public MySuspendContext(XsltDebuggerSession debuggerSession, Debugger.StyleFrame styleFrame, Debugger.SourceFrame sourceFrame) {
myDebuggerSession = debuggerSession;
myStyleFrame = styleFrame;
mySourceFrame = sourceFrame;
}
示例5: XsltExecutionStack
import org.intellij.plugins.xsltDebugger.XsltDebuggerSession; //導入依賴的package包/類
public XsltExecutionStack(String name, Debugger.Frame topFrame, XsltDebuggerSession debuggerSession) {
super(name);
myDebuggerSession = debuggerSession;
myTopFrame = new XsltStackFrame(topFrame, myDebuggerSession);
}
示例6: XsltStackFrame
import org.intellij.plugins.xsltDebugger.XsltDebuggerSession; //導入依賴的package包/類
public XsltStackFrame(Debugger.Frame frame, XsltDebuggerSession debuggerSession) {
myFrame = frame;
myDebuggerSession = debuggerSession;
myPosition = XsltSourcePosition.create(frame);
}
示例7: navigate
import org.intellij.plugins.xsltDebugger.XsltDebuggerSession; //導入依賴的package包/類
public void navigate(boolean requestFocus) {
final OutputEventQueue.NodeEvent event = getUserObject();
final Project project = (Project)DataManager.getInstance().getDataContext().getData(PlatformDataKeys.PROJECT.getName());
XsltDebuggerSession.openLocation(project, event.getURI(), event.getLineNumber() - 1);
}
示例8: navigate
import org.intellij.plugins.xsltDebugger.XsltDebuggerSession; //導入依賴的package包/類
public void navigate(boolean requestFocus) {
final OutputEventQueue.NodeEvent event = getUserObject();
final Project project = DataManager.getInstance().getDataContext().getData(PlatformDataKeys.PROJECT);
XsltDebuggerSession.openLocation(project, event.getURI(), event.getLineNumber() - 1);
}
示例9: XsltExecutionStack
import org.intellij.plugins.xsltDebugger.XsltDebuggerSession; //導入依賴的package包/類
public XsltExecutionStack(String name, Debugger.Frame topFrame, XsltDebuggerSession debuggerSession)
{
super(name);
myDebuggerSession = debuggerSession;
myTopFrame = new XsltStackFrame(topFrame, myDebuggerSession);
}
示例10: XsltStackFrame
import org.intellij.plugins.xsltDebugger.XsltDebuggerSession; //導入依賴的package包/類
public XsltStackFrame(Debugger.Frame frame, XsltDebuggerSession debuggerSession)
{
myFrame = frame;
myDebuggerSession = debuggerSession;
myPosition = XsltSourcePosition.create(frame);
}