Adding WCF Integration.
[castle.git] / Facilities / Synchronize / Castle.Facilities.Synchronize.Tests / DummyClasses.cs
blob31732a1beaa80e85d169403727fb88dc5fd5811c
1 // Copyright 2004-2007 Castle Project - http://www.castleproject.org/
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle.Facilities.Synchronize.Tests
17 using System;
18 using System.Reflection;
19 using System.Threading;
20 using System.Windows.Forms;
21 using Castle.MicroKernel.Proxy;
23 public interface IDummyForm
25 void AddControl(Control control);
28 public class DummyForm : Form, IDummyForm
30 public DummyForm()
32 IntPtr handle = Handle;
35 public virtual void AddControl(Control control)
37 Controls.Add(control);
41 public class ClassUsingForm
43 [Synchronize]
44 public virtual void DoWork(Form form)
46 form.Controls.Add(new Button());
50 [Synchronize(typeof(WindowsFormsSynchronizationContext))]
51 public class ClassUsingFormInContext : ClassUsingForm
55 [Synchronize(typeof(WindowsFormsSynchronizationContext))]
56 public class ClassInContextWithoutVirtualMethod
58 [Synchronize]
59 public void DoWork(Form form)
61 form.Controls.Add(new Button());
65 [Synchronize(typeof(SynchronizationContext))]
66 public class ClassInContextWithMissingDependency
68 [Synchronize("foo")]
69 public virtual void DoWork(Form form)
71 form.Controls.Add(new Button());
75 public interface IClassUsingContext<T> where T : Control
77 void DoWork(T work);
80 [Synchronize]
81 public class ClassUsingContext<T> : IClassUsingContext<T> where T : Control
83 [Synchronize(typeof(WindowsFormsSynchronizationContext))]
84 public void DoWork(T work)
86 work.Controls.Add(new Button());
90 public class DummyProxyHook : IProxyHook
92 public bool ShouldInterceptMethod(Type type, MethodInfo methodInfo)
94 return false;
97 public void NonVirtualMemberNotification(Type type, MemberInfo memberInfo)
101 public void MethodsInspected()