Exemplo n.º 1
0
 /// <summary>
 /// Try to get a stackframe from the given node.
 /// </summary>
 private static bool TryGetStackFrame(TreeNode node, out DalvikStackFrame stackFrame)
 {
     stackFrame = (node != null) ? node.Tag as DalvikStackFrame : null;
     return (stackFrame != null);
 }
Exemplo n.º 2
0
 internal FrameWrapper(DalvikStackFrame frame)
 {
     this.frame = frame;
 }