/// <summary>
 /// Default ctor
 /// </summary>
 public DebugConstProperty(string name, string value, string type, DebugProperty parent)
     : base(parent)
 {
     Name = name;
     Type = type;
     this.Value = value;
 }
 /// <summary>
 /// Default ctor
 /// </summary>
 public DebugArrayLengthProperty(int length, DebugProperty parent)
     : base(parent)
 {
     this.length = length;
 }
 /// <summary>
 /// Default ctor
 /// </summary>
 public DebugValueProperty(DalvikValue value, DebugProperty parent)
     : base(parent)
 {
     this.Value = value;
 }
 public DebugStackFrameValueProperty(DalvikValue value, DebugProperty parent, DebugStackFrame stackFrame, string forceName=null)
     : base(value, parent)
 {
     _stackFrame = stackFrame;
     _forceName = forceName;
 }
 /// <summary>
 /// Default ctor
 /// </summary>
 public DebugBaseClassProperty(DalvikObjectReference objectReference, DalvikReferenceType superClass, DebugProperty parent)
     : base(parent)
 {
     this.objectReference = objectReference;
     this.superClass = superClass;
 }
Exemple #6
0
 /// <summary>
 /// Default ctor
 /// </summary>
 protected DebugProperty(DebugProperty parent)
 {
     this.parent = parent;
 }
Exemple #7
0
 /// <summary>
 /// Default ctor
 /// </summary>
 public DebugExpression(DebugProperty property)
 {
     this.property = property;
 }