// // Copyright (c) ZeroC, Inc. All rights reserved. // using System.Collections.Generic; using Test; public class TestFacetI : TestFacetDisp_ { public TestFacetI() { } override public Dictionary getChanges(Ice.Current current) { return _changes; } public void updated(Dictionary changes) { lock(this) { _changes = changes; } } private Dictionary _changes; }