Inheritance: GLib.Object, TreeModelImplementor
コード例 #1
0
ファイル: Node.cs プロジェクト: mono/emveepee
 public Node(ProfileStore store, Node parent)
 {
     this.store = store;
         this.parent = parent;
         gch = GCHandle.Alloc (this, GCHandleType.Weak);
 }
コード例 #2
0
ファイル: AllocationsView.cs プロジェクト: mono/emveepee
 public ClassNode(ProfileStore store, Node parent, ProfileData.ClassItem instance)
     : base(store, parent)
 {
     this.instance = instance;
 }
コード例 #3
0
ファイル: AllocationsView.cs プロジェクト: mono/emveepee
 public MethodNode(ProfileStore store, Node parent, StackItem allocator, uint count)
     : base(store, parent)
 {
     this.allocator = allocator;
     this.count = count;
 }
コード例 #4
0
ファイル: StackView.cs プロジェクト: mono/emveepee
 public StackNode(ProfileStore store, Node parent, StackItem item)
     : base(store, parent)
 {
     this.item = item;
 }