Changeset 93 for trunk/test
- Timestamp:
- 03/22/10 11:20:10 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/test/expectations/cs/asdoclet/test/TestProxyInterfaceProxy.cs
r86 r93 4 4 #region AsDoclet generated code 5 5 public class TestProxyInterfaceProxy : asdoclet.test.TestProxyInterface { 6 protected virtual T DispatchCall<T>(string methodName, params object[] args) {7 return default(T);6 protected virtual object DispatchCall(System.Type type, string methodName, params object[] args) { 7 return null; 8 8 } 9 9 10 protected virtual void BeginDispatchCall <T>(string methodName, object async, params object[] args) {10 protected virtual void BeginDispatchCall(System.Type type, string methodName, object async, params object[] args) { 11 11 } 12 12 13 13 virtual public void Foo(AsyncCallback<System.Collections.Generic.ICollection<java.sql.Date>> async, java.sql.Date bar) { 14 BeginDispatchCall <System.Collections.Generic.ICollection<java.sql.Date>>("foo", async, bar);14 BeginDispatchCall(typeof(System.Collections.Generic.ICollection<java.sql.Date>), "foo", async, bar); 15 15 } 16 16 virtual public void Foo(AsyncCallback async, string bar) { 17 BeginDispatchCall <object>("foo", async, bar);17 BeginDispatchCall(typeof(object), "foo", async, bar); 18 18 } 19 19 }