Ejemplo n.º 1
0
 public SetDelayedOperation(PersistentList enclosingInstance, int index, object value, object old)
 {
     this.enclosingInstance = enclosingInstance;
     this.index             = index;
     this.value             = value;
     this.old = old;
 }
Ejemplo n.º 2
0
 public SimpleRemoveDelayedOperation(PersistentList enclosingInstance, object value)
 {
     this.enclosingInstance = enclosingInstance;
     this.value             = value;
 }
Ejemplo n.º 3
0
 public RemoveDelayedOperation(PersistentList enclosingInstance, int index, object old)
 {
     this.enclosingInstance = enclosingInstance;
     this.index             = index;
     this.old = old;
 }
Ejemplo n.º 4
0
 public ClearDelayedOperation(PersistentList enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
Ejemplo n.º 5
0
 public AddDelayedOperation(PersistentList enclosingInstance, int index, object value)
 {
     this.enclosingInstance = enclosingInstance;
     this.index             = index;
     this.value             = value;
 }
Ejemplo n.º 6
0
			public SimpleRemoveDelayedOperation(PersistentList enclosingInstance, object value)
			{
				this.enclosingInstance = enclosingInstance;
				this.value = value;
			}
Ejemplo n.º 7
0
			public RemoveDelayedOperation(PersistentList enclosingInstance, int index, object old)
			{
				this.enclosingInstance = enclosingInstance;
				this.index = index;
				this.old = old;
			}
Ejemplo n.º 8
0
			public SetDelayedOperation(PersistentList enclosingInstance, int index, object value, object old)
			{
				this.enclosingInstance = enclosingInstance;
				this.index = index;
				this.value = value;
				this.old = old;
			}
Ejemplo n.º 9
0
			public AddDelayedOperation(PersistentList enclosingInstance, int index, object value)
			{
				this.enclosingInstance = enclosingInstance;
				this.index = index;
				this.value = value;
			}
Ejemplo n.º 10
0
			public ClearDelayedOperation(PersistentList enclosingInstance)
			{
				this.enclosingInstance = enclosingInstance;
			}