public void Visit(object obj)
			{
				int id = ((int)obj);
				TreeInt newNode = new TreeInt(id);
				duplicates.value = Tree.Add(((Tree)duplicates.value), newNode);
				if (newNode.Size() != 0)
				{
					this._enclosing.Add(id);
				}
			}
Exemplo n.º 2
0
 public static void Write(ByteArrayBuffer buffer, Db4objects.Db4o.Internal.TreeInt
                          tree)
 {
     Write(buffer, tree, tree == null ? 0 : tree.Size());
 }
Exemplo n.º 3
0
 public static void Write(ByteArrayBuffer buffer, TreeInt
     tree)
 {
     Write(buffer, tree, tree == null ? 0 : tree.Size());
 }
Exemplo n.º 4
0
 public static void Write(ByteArrayBuffer buffer, TreeInt
                          tree)
 {
     Write(buffer, tree, tree == null ? 0 : tree.Size());
 }