当前位置: 首页>>代码示例>>Java>>正文


Java XsltDebuggerSession类代码示例

本文整理汇总了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;
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:35,代码来源:XsltDebugProcess.java

示例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;
  }
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:36,代码来源:XsltDebugProcess.java

示例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);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:6,代码来源:GeneratedStructureModel.java

示例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;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:6,代码来源:XsltDebugProcess.java

示例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);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:6,代码来源:XsltExecutionStack.java

示例6: XsltStackFrame

import org.intellij.plugins.xsltDebugger.XsltDebuggerSession; //导入依赖的package包/类
public XsltStackFrame(Debugger.Frame frame, XsltDebuggerSession debuggerSession) {
  myFrame = frame;
  myDebuggerSession = debuggerSession;
  myPosition = XsltSourcePosition.create(frame);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:6,代码来源:XsltStackFrame.java

示例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);
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:6,代码来源:GeneratedStructureModel.java

示例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);
}
 
开发者ID:consulo,项目名称:consulo-xslt,代码行数:6,代码来源:GeneratedStructureModel.java

示例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);
}
 
开发者ID:consulo,项目名称:consulo-xslt,代码行数:7,代码来源:XsltExecutionStack.java

示例10: XsltStackFrame

import org.intellij.plugins.xsltDebugger.XsltDebuggerSession; //导入依赖的package包/类
public XsltStackFrame(Debugger.Frame frame, XsltDebuggerSession debuggerSession)
{
	myFrame = frame;
	myDebuggerSession = debuggerSession;
	myPosition = XsltSourcePosition.create(frame);
}
 
开发者ID:consulo,项目名称:consulo-xslt,代码行数:7,代码来源:XsltStackFrame.java


注:本文中的org.intellij.plugins.xsltDebugger.XsltDebuggerSession类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。