本文整理汇总了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);
}