Trail:

Changeset 93 for trunk/test

Show
Ignore:
Timestamp:
03/22/10 11:20:10 (2 years ago)
Author:
harald
Message:
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/test/expectations/cs/asdoclet/test/TestProxyInterfaceProxy.cs

    r86 r93  
    44#region AsDoclet generated code 
    55        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; 
    88        } 
    99 
    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) { 
    1111        } 
    1212 
    1313                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); 
    1515                } 
    1616                virtual public void Foo(AsyncCallback async, string bar) { 
    17                         BeginDispatchCall<object>("foo", async, bar); 
     17                        BeginDispatchCall(typeof(object), "foo", async, bar); 
    1818                } 
    1919        }