active questions tagged interfaces - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:20:18Z http://stackoverflow.com/feeds/tag/interfaces http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1742057/connection-and-collection-interfaces-in-java 0 Connection and Collection Interfaces in Java Bhupi 2009-11-16T12:59:47Z 2009-11-30T12:02:07Z <p>Which class implements all the <code>Connection</code> Interfaces which are in <code>javax.microedition.io</code> package and how?</p> <p>And in the same way which class implements the some of <code>Collection</code> interfaces like <code>Iterator</code> interface. I saw a code: - </p> <pre><code>Iterator it; ArrayList list = new ArrayList(); it = list.iterator(); </code></pre> <p>The <code>iterator()</code> return type is "<code>Iterator</code>" which is an interface. </p> <p>Please tell me what this code is doing is it returning an object of type <code>Iterator</code>? but as far as I know, interface can't be initialized.</p> http://stackoverflow.com/questions/1809405/forcing-f-type-inference-on-generics-and-interfaces-to-stay-loose 4 Forcing F# type inference on generics and interfaces to stay loose Dan Fitch 2009-11-27T15:40:26Z 2009-11-27T17:11:36Z <p>We're gettin' hairy here. I've tested a bunch of tree-synchronizing code on concrete representations of data, and now I need to abstract it so that it can run with any source and target that support the right methods. [In practice, this will be sources like Documentum, SQL hierarchies, and filesystems; with destinations like Solr and a custom SQL cross-reference store.]</p> <p>The tricky part is that when I'm recursing down a tree of type <code>T</code> and synchronizing into a tree of type <code>U</code>, at certain files I need to do a "sub-sync" of a second type <code>V</code> to that type <code>U</code> at the current node. (<code>V</code> represents hierarchal structure <em>inside</em> a file...) And the type inference engine in F# is driving me around in circles on this, as soon as I try to add the sub-syncing to <code>V</code>.</p> <p>I'm representing this in a <code>TreeComparison&lt;'a,'b&gt;</code>, so the above stuff results in a <code>TreeComparison&lt;T,U&gt;</code> and a sub-comparison of <code>TreeComparison&lt;V,U&gt;</code>.</p> <p>The problem is, as soon as I supply a concrete <code>TreeComparison&lt;V,'b&gt;</code> in one of the class methods, the <code>V</code> type propagates through all of the inferring, when I want that first type parameter to stay generic (<code>when 'a :&gt; ITree</code>). Perhaps there is some typing I can do on the <code>TreeComparison&lt;V,'b&gt;</code> value? Or, more likely, the inference is actually telling me something is inherently broken in the way I'm thinking about this problem.</p> <p>This was really tricky to compress, but I want to give working code you can paste into a script and experiment with, so there are a ton of types at the beginning... core stuff is right at the end if you want to skip. Most of the actual comparison and recursion across the types via ITree has been chopped because it's unnecessary to see the inference problem that I'm banging my head against.</p> <pre><code>open System type TreeState&lt;'a,'b&gt; = //' | TreeNew of 'a | TreeDeleted of 'b | TreeBoth of 'a * 'b type TreeNodeType = TreeFolder | TreeFile | TreeSection type ITree = abstract NodeType: TreeNodeType abstract Path: string with get, set type ITreeProvider&lt;'a when 'a :&gt; ITree&gt; = //' abstract Children : 'a -&gt; 'a seq abstract StateForPath : string -&gt; 'a type ITreeWriterProvider&lt;'a when 'a :&gt; ITree&gt; = //' inherit ITreeProvider&lt;'a&gt; //' abstract Create: ITree -&gt; 'a //' // In the real implementation, this supports: // abstract AddChild : 'a -&gt; unit // abstract ModifyChild : 'a -&gt; unit // abstract DeleteChild : 'a -&gt; unit // abstract Commit : unit -&gt; unit /// Comparison varies on two types and takes a provider for the first and a writer provider for the second. /// Then it synchronizes them. The sync code is added later because some of it is dependent on the concrete types. type TreeComparison&lt;'a,'b when 'a :&gt; ITree and 'b :&gt; ITree&gt; = { State: TreeState&lt;'a,'b&gt; //' ATree: ITreeProvider&lt;'a&gt; //' BTree: ITreeWriterProvider&lt;'b&gt; //' } static member Create( atree: ITreeProvider&lt;'a&gt;, apath: string, btree: ITreeWriterProvider&lt;'b&gt;, bpath: string) = { State = TreeBoth (atree.StateForPath apath, btree.StateForPath bpath) ATree = atree BTree = btree } member tree.CreateSubtree&lt;'c when 'c :&gt; ITree&gt; (atree: ITreeProvider&lt;'c&gt;, apath: string, bpath: string) : TreeComparison&lt;'c,'b&gt; = //' TreeComparison.Create(atree, apath, tree.BTree, bpath) /// Some hyper-simplified state types: imagine each is for a different kind of heirarchal database structure or filesystem type T( data, path: string ) = class let mutable path = path let rand = (new Random()).NextDouble member x.Data = data // In the real implementations, these would fetch the child nodes for this state instance member x.Children() = Seq.empty&lt;T&gt; interface ITree with member tree.NodeType = if rand() &gt; 0.5 then TreeFolder else TreeFile member tree.Path with get() = path and set v = path &lt;- v end type U(data, path: string) = class inherit T(data, path) member x.Children() = Seq.empty&lt;U&gt; end type V(data, path: string) = class inherit T(data, path) member x.Children() = Seq.empty&lt;V&gt; interface ITree with member tree.NodeType = TreeSection end // Now some classes to spin up and query for those state types [gross simplification makes these look pretty stupid] type TProvider() = class interface ITreeProvider&lt;T&gt; with member this.Children x = x.Children() member this.StateForPath path = new T("documentum", path) end type UProvider() = class interface ITreeProvider&lt;U&gt; with member this.Children x = x.Children() member this.StateForPath path = new U("solr", path) interface ITreeWriterProvider&lt;U&gt; with member this.Create t = new U("whee", t.Path) end type VProvider(startTree: ITree, data: string) = class interface ITreeProvider&lt;V&gt; with member this.Children x = x.Children() member this.StateForPath path = new V(data, path) end type TreeComparison&lt;'a,'b when 'a :&gt; ITree and 'b :&gt; ITree&gt; with member x.UpdateState (a:'a option) (b:'b option) = { x with State = match a, b with | None, None -&gt; failwith "No state found in either A and B" | Some a, None -&gt; TreeNew a | None, Some b -&gt; TreeDeleted b | Some a, Some b -&gt; TreeBoth(a,b) } member x.ACurrent = match x.State with TreeNew a | TreeBoth (a,_) -&gt; Some a | _ -&gt; None member x.BCurrent = match x.State with TreeDeleted b | TreeBoth (_,b) -&gt; Some b | _ -&gt; None member x.CreateBFromA = match x.ACurrent with | Some a -&gt; x.BTree.Create a | _ -&gt; failwith "Cannot create B from null A node" member x.Compare() = // Actual implementation does a bunch of mumbo-jumbo to compare with a custom IComparable wrapper //if not (x.ACurrent.Value = x.BCurrent.Value) then x.SyncStep() // And then some stuff to move the right way in the tree member internal tree.UpdateRenditions (source: ITree) (target: ITree) = let vp = new VProvider(source, source.Path) :&gt; ITreeProvider&lt;V&gt; let docTree = tree.CreateSubtree(vp, source.Path, target.Path) docTree.Compare() member internal tree.UpdateITree (source: ITree) (target: ITree) = if not (source.NodeType = target.NodeType) then failwith "Nodes are incompatible types" if not (target.Path = source.Path) then target.Path &lt;- source.Path if source.NodeType = TreeFile then tree.UpdateRenditions source target member internal tree.SyncStep() = match tree.State with | TreeNew a -&gt; let target = tree.CreateBFromA tree.UpdateITree a target //tree.BTree.AddChild target | TreeBoth(a,b) -&gt; let target = b tree.UpdateITree a target //tree.BTree.ModifyChild target | TreeDeleted b -&gt; () //tree.BTree.DeleteChild b member t.Sync() = t.Compare() //t.BTree.Commit() // Now I want to synchronize between a tree of type T and a tree of type U let pt = new TProvider() let ut = new UProvider() let c = TreeComparison.Create(pt, "/start", ut , "/path") c.Sync() </code></pre> <p>The problem likely revolves around CreateSubtree. If you comment out either:</p> <ol> <li>The <code>docTree.Compare()</code> line</li> <li>The <code>tree.UpdateITree</code> calls</li> </ol> <p>and replace them with <code>()</code>, then the inference stays generic and everything is lovely.</p> <p>This has been quite a puzzle. I've tried moving the "comparison" functions in the second chunk out of the type and defining them as recursive functions; I've tried a million ways of annotating or forcing the typing. I just don't get it!</p> <p>The last solution I'm considering is making a completely separate (and duplicated) implementation of the comparison type and functions for the sub-syncing. But that's ugly and terrible.</p> <p>Thanks if you read this far! Sheesh!</p> http://stackoverflow.com/questions/1804108/why-redeclare-things-to-implement-interfaces-in-vb-net 1 Why? Redeclare things to implement interfaces?! in VB.NET serhio 2009-11-26T14:49:48Z 2009-11-26T22:00:43Z <p>Hello, experts.</p> <p>I work in VB.NET v2</p> <p>I have an interface <strong>IMyInterface</strong> and this interface implements a method <em>MyMethod</em>.</p> <p>I have an object <strong>MyObjectBase</strong>. This object contains a(the same) method <em>MyMethod</em>.</p> <p>1) If now I do <strong><em>MyObject</em></strong> <em>Inherits MyObjectBase Implements IMyInterface</em> <strong><em>need I to redefine?</em></strong> (shadow, override) <em>MyMethod</em> in the <em>MyObject</em> class?</p> <p>2) What now if instead the <em>MyMethod</em> method I have an <em>MyEvent</em> <em>event</em>?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1799154/serializable-class-inheriting-from-an-interface-with-a-property-of-its-own-type 0 Serializable class inheriting from an Interface with a property of its own type Jeremy 2009-11-25T18:50:12Z 2009-11-26T15:41:42Z <p>I have an interface, with a definintion for a property that is the same type as the interface. </p> <pre><code>public interface IMyInterface { IMyInterface parent { get; set; } } </code></pre> <p>Now if I declare a class and inherit from the interface, I need to create the property called parent. I want my class to be serializable to use in a web service, but Interfaces are not serializable when used that way, so what should I do about my property of type IMyInterface? I do want that property to serialize.</p> http://stackoverflow.com/questions/1798113/c-generic-interfaces-and-understanding-type-parameter-declaration-must-be-an-i 1 C#: Generic interfaces and understanding "type parameter declaration must be an identifier not a type" chris 2009-11-25T16:22:48Z 2009-11-25T16:29:44Z <p>I'm trying to understand the generic interface as described in <a href="http://mikehadlow.blogspot.com/2008/03/using-irepository-pattern-with-linq-to.html" rel="nofollow">this</a></p> <p>My example has an interface:</p> <pre><code> public interface ITest&lt;T&gt; where T: class { T GetByID(int id); } </code></pre> <p>I have a class that implements the interface, using LINQ to enties in project Data, which contains the class myClass:</p> <pre><code> public class Test&lt;myClass&gt; : ITest&lt;myClass&gt; where myClass : class { Data.myEntities _db = new Data.myEntities(); public myClass GetByID(int id) { var item = _db.myClass.First(m =&gt; m.ID == id); return item; } } </code></pre> <p>This produces an error saying "Cannot implicitly convert type 'Data.myClass' to 'myClass', but if I change public class Test&lt;myClass> to public class Test&lt;Data.myClass> I get the "Type parameter declaration must be an identifier not a type".</p> <p>I'm obviously missing something, because I don't understand what's going on here. Can anyone explain it, or point to somewhere that might explain it better?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1796903/net-framework-built-in-interfaces-recommendations-when-building-a-custom-data-s 2 .NET Framework built-in interfaces, recommendations when building a custom data structure? Ash 2009-11-25T13:27:51Z 2009-11-25T13:47:06Z <p>I'm implementing an AVL binary tree data structure in C# .NET 2.0 (possibly moving to 3.5). I've got it to the point where it is passing my initial unit tests without needing to implement any framework level interfaces. </p> <p>But now, just looking through the FCL I see a whole bunch of interfaces, both non-generic and generic that I <em>could</em> implement to ensure my class plays nicely with language features and other data structures. </p> <p>At the moment the only obvious choice (to me at least) is one of the Enumeration style interfaces to allow a caller to use the tree in a foreach loop and possibly with Linq later on. But which one (or more)? </p> <p>Here are the interfaces I'm considering at present: </p> <ul> <li>IEnumerable and IEnumerable<code>&lt;T&gt;</code></li> <li>IEnumerator and IEnumerator<code>&lt;T&gt;</code></li> <li>IComparable and IComparable<code>&lt;T&gt;</code></li> <li>IComparer and IComparer<code>&lt;T&gt;</code></li> <li>ICollection and ICollection<code>&lt;T&gt;</code></li> <li>IEquatable and IEquatable<code>&lt;T&gt;</code></li> <li>IEqualityComparer and IEqualityComparer<code>&lt;T&gt;</code></li> <li>ICloneable</li> <li>IConvertible</li> </ul> <p>Are there any published guidelines, either online or in book form, that provide recommendations regarding which framework interfaces to implement and when? </p> <p>Obviously for some interfaces, if you don't want to provide that functionality, just don't implement the entire interface. But it appears there are certain conventions in the FCL classes (such as Collection classes) that perhaps we should also follow when building custom data structures.</p> <p>Ideally the recommendations would provide guidance on such questions as when to use IComparer or IEqualityComparer, IEnumerable or IEnumerator? Or, if you implement a generic interface, should you also implement the non-geneic interface? etc.. </p> <p>Alternatively, if you have guidance to offer based on your own experiences, that would be equally useful.</p> http://stackoverflow.com/questions/1791228/abstract-enum-a-annotation-attribute-type 0 Abstract enum a annotation attribute type Alan Mc Kernan 2009-11-24T16:30:35Z 2009-11-24T16:41:02Z <p>Hi,</p> <p>I have an interface which multiple enums are implementing, i.e</p> <pre><code>public interface MinorCodes { public abstract int code(); public abstract String description(); } public enum IdentityMinorCodes implements MinorCodes { IDENTITY_UPLOAD_PICTURE_CODE(1, "Error while trying to upload a picture."), } </code></pre> <p>Now I want to have a custom annotation which has a value type of one of these concrete enum values, i.e</p> <pre><code>public @interface PokenService { MinorCodes[] exceptions(); } </code></pre> <p>But of course I cannot return an interface here.</p> <p>Does anyone know any solution or workaround to this?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1784805/how-to-get-a-base-class-method-return-type-to-be-the-subclass-type 1 How to get a base class method return type to be the subclass type? adam0101 2009-11-23T17:48:07Z 2009-11-24T15:35:47Z <p>I have a copy function that I'd like to override in subclasses to return the type of the subclass. Here are my interfaces:</p> <pre><code>Public Interface IBase(Of T) Function Copy() As T End Interface Public Interface ICar Inherits IBase(Of ICar) End Interface Public Interface IToyota Inherits ICar End Interface </code></pre> <p>And here are my classes. As you can see, when <strong>Car</strong> overrides <strong>Copy</strong> it return <strong>ICar</strong> which is what I want. But when <strong>Toyota</strong> overrides <strong>Copy</strong> it also wants to return <strong>ICar</strong> instead of <strong>IToyota</strong>. How do I write it to return <strong>IToyota</strong>?</p> <pre><code>Public MustInherit Class Base(Of T) Implements IBase(Of T) Protected MustOverride Function Copy() As T Implements IBase(Of T).Copy End Class Public Class Car Inherits Base(Of ICar) Implements ICar Protected Overrides Function Copy() As ICar Return Nothing //'TODO: Implement Copy End Function End Class Public Class Toyota Inherits Car Implements IToyota Protected Overrides Function Copy() As IToyota Implements IToyota.Copy //'I want this to return IToyota, but gives me a compile error End Function End Class </code></pre> http://stackoverflow.com/questions/1784766/using-is-operator-with-interface-to-generics 2 Using is operator with Interface to Generics Steve 2009-11-23T17:41:20Z 2009-11-23T17:49:49Z <p>Guys,</p> <p>I have a few generic classes that implement a common non-generic interface. I create my generic objects and add them to a list. How can I use LINQ, or any other method for that matter, to filter the list by the generic type. I do not need to know T at run-time. I added a type property to the interface and used LINQ to filter by it but I was hoping to use the is operator. Here's a simple example I threw together.</p> <p>Any Ideas?</p> <pre><code>interface IOperation { object GetValue(); } class Add&lt;T&gt; : IOperation { public object GetValue() { return 0.0; } } class Multiply&lt;T&gt; : IOperation { public object GetValue() { return 0.0; } } private void Form1_Load(object sender, EventArgs e) { //create some generics referenced by interface var operations = new List&lt;IOperation&gt; { new Add&lt;int&gt;(), new Add&lt;double&gt;(), new Multiply&lt;int&gt;() }; //how do I use LINQ to find all intances off Add&lt;T&gt; //without specifying T? var adds = from IOperation op in operations where op is Add&lt;&gt; //this line does not compile select op; } </code></pre> http://stackoverflow.com/questions/1751500/are-scenarios-stories-the-new-interface-in-bdd-tdd 0 are scenarios/stories the new interface in BDD/TDD? koen 2009-11-17T20:21:33Z 2009-11-23T10:59:06Z <p>PHP is somewhat crippled since it doesn't have return types (yet). I need my code to throw an exception when X already exists. I can write this in a scenario, but I'm not able to go from the scenarios to the interface my class should implement.</p> <p>Actually this problem is the same in TDD I guess. There seems more that I can tell through my 'tests' than through my interfaces. Yet my interfaces define what components can interact, what responsibilities they should take.</p> <p>The problem is bigger in PHP because it doesn't have return types but it also exists in other languages because there is no contract that says an exception should be thrown when x is the case.</p> <p>How can I best deal with this?</p> http://stackoverflow.com/questions/516148/why-cant-i-have-protected-interface-members 2 Why can't I have protected interface members? A J Lane 2009-02-05T14:36:58Z 2009-11-20T17:23:53Z <p>What is the argument against declaring protected-access members on interfaces? This, for example, is invalid:</p> <pre><code>public interface IOrange { public OrangePeel Peel { get; } protected OrangePips Seeds { get; } } </code></pre> <p>In this example, the interface <code>IOrange</code> would guarantee that implementors <em>at least</em> provide an <code>OrangePips</code> instance to their inheritors. If the implementor wanted to, they could expand the scope to full <code>public</code>:</p> <pre><code>public class NavelOrange : IOrange { public OrangePeel Peel { get { return new OrangePeel(); } } protected OrangePips Seeds { get { return null; } } } public class ValenciaOrange : IOrange { public OrangePeel Peel { get { return new OrangePeel(); } } public OrangePips Seeds { get { return new OrangePips(6); } } } </code></pre> <p>The intent of <code>protected</code> members on interfaces is to provide a support contract for <em>inheritors</em> (sub-classes), for example:</p> <pre><code>public class SpecialNavelOrange : NavelOrange { ... // Having a seed value is useful to me. OrangePips seeds = this.Seeds; ... } </code></pre> <p>(Admittedly, this wouldn't work for <code>struct</code>s)</p> <p>I can't see much of a case for <code>private</code> or <code>internal</code> modifiers in interfaces, but supporting both <code>public</code> and <code>protected</code> modifiers seems perfectly reasonable.</p> <p><hr/></p> <p>I'm going to try explaining the utility of <code>protected</code> members on <code>interface</code>s by separating them from <code>interface</code>s entirely:</p> <p>Let's imagine a new C# keyword, <code>support</code>, to enforce inheritor contracts, so that we declare things as follows:</p> <pre><code>public support IOrangeSupport { OrangePips Seeds { get; } } </code></pre> <p>This would allows us to contract classes to provide protected members to their inheritors:</p> <pre><code>public class NavelOrange : IOrange, IOrangeSupport { public OrangePeel Peel { get { return new OrangePeel(); } } protected OrangePips Seeds { get { return null; } } } </code></pre> <p>This is not particularly useful, because classes would already imply this contract by providing the <code>protected</code> members in the first place.</p> <p>But then we could also do this:</p> <pre><code>public interface IOrange : IOrangeSupport { ... } </code></pre> <p>Thereby applying <code>IOrangeSupport</code> to all classes which implement <code>IOrange</code> and requiring them to provide particular <code>protected</code> members - which is not something we can currently do.</p> http://stackoverflow.com/questions/334854/ioc-interfaces-best-practices 0 IoC & Interfaces Best Practices n8wrl 2008-12-02T17:57:57Z 2009-11-20T07:00:06Z <p>I'm experimenting with IoC on my way to TDD by fiddling with an existing project. In a nutshell, my question is this: what are the best practices around IoC when public and non-public methods are of interest?</p> <p>There are two classes:</p> <pre><code>public abstract class ThisThingBase { public virtual void Method1() {} public virtual void Method2() {} public ThatThing GetThat() { return new ThatThing(this); } internal virtual void Method3() {} internal virtual void Method4() {} } public class Thathing { public ThatThing(ThisThingBase thing) { m_thing = thing; } ... } </code></pre> <p>ThatThing does some stuff using its ThisThingBase reference to call methods that are often overloaded by descendents of ThisThingBase.</p> <p>Method1 and Method2 are public. Method3 and Method4 are internal and only used by ThatThings.</p> <p>I would like to test ThatThing without ThisThing and vice-versa.</p> <p>Studying up on IoC my first thought was that I should define an IThing interface, implement it by ThisThingBase and pass it to the ThatThing constructor. IThing would be the public interface clients could call but it doesn't include Method3 or Method4 that ThatThing also needs.</p> <p>Should I define a 2nd interface - IThingInternal maybe - for those two methods and pass BOTH interfaces to ThatThing?</p> http://stackoverflow.com/questions/1765469/dynamically-implement-interface-in-groovy-using-invokemethod 0 Dynamically implement interface in Groovy using invokeMethod Daff 2009-11-19T18:23:08Z 2009-11-19T21:56:58Z <p>Groovy offers some really neat language features for dealing with and implementing Java interfaces, but I seem kind of stuck.</p> <p>I want to dynamically implement an Interface on a Groovy class and intercept all method calls on that interface using GroovyInterceptable.invokeMethod. Here what I tried so far:</p> <pre><code>public interface TestInterface { public void doBla(); public String hello(String world); } import groovy.lang.GroovyInterceptable; class GormInterfaceDispatcher implements GroovyInterceptable { def invokeMethod(String name, args) { System.out.println ("Beginning $name with $args") def metaMethod = metaClass.getMetaMethod(name, args) def result = null if(!metaMethod) { // Do something cool here with the method call } else result = metaMethod.invoke(this, args) System.out.println ("Completed $name") return result } TestInterface getFromClosure() { // This works, but how do I get the method name from here? // I find that even more elegant than using invokeMethod return { Object[] args -&gt; System.out.println "An unknown method called with $args" }.asType(TestInterface.class) } TestInterface getThisAsInterface() { // I'm using asType because I won't know the interfaces // This returns null return this.asType(TestInterface.class) } public static void main(String[] args) { def gid = new GormInterfaceDispatcher() TestInterface ti = gid.getFromClosure() assert ti != null ti.doBla() // Works TestInterface ti2 = gid.getThisAsInterface() assert ti2 != null // Assertion failed ti2.doBla() } } </code></pre> <p>Returning the Closure works fine, but I couldn't figure a way to find out the name of the method being called there. </p> <p>Trying to make a Proxy to the this reference itself (so that method calls will call invokeMethod) returns null.</p> http://stackoverflow.com/questions/1763926/adding-functionality-by-adding-new-interfaces-instead-of-extending-existing-ones 0 Adding functionality by adding new interfaces instead of extending existing ones Trap 2009-11-19T15:05:41Z 2009-11-19T15:35:59Z <p>I need to add some new functionality to an existing interface. There are already a lot of classes in the project implementing it but a few of them wouldn't need the new set of features. My first approach was to just add the new functions to the existing interface and implementing it everywhere, adding do-nothing functions where applicable and the such. But now I wonder if there's a better way to do this. </p> <p>As an example:</p> <pre><code>// Everything able to produce a waveform must implement this interface. interface IWaveformResource { int Collect( Stream _target, int _sampleCount ); } // A waveform stored in a file class FileWaveform : IWaveformResource { public int Collect( Stream _target, int _sampleCount ) { // ... } } // A sine waveform. class SineWaveform : IWaveformResource { public int Collect( Stream _target, int _sampleCount ) { // ... } } // Added feature, we want to be able to specify the read position interface IWaveformResource { int Collect( Stream _target, int _sampleCount ); int ReadOffset { get; set; } } class FileWaveform : IWaveformResource { public int Collect( Stream _target, int _sampleCount ) { // ... } // Moves the associated file pointer accordingly. int ReadOffset { get; set; } } class SineWaveform : IWaveformResource { public int Collect( Stream _target, int _sampleCount ) { // ... } // There's no point in setting or retrieving a sine wave's read position. int ReadOffset { get; set; } } </code></pre> <p>Another option would be to create a new interface which will only be implemented by positionable waveform streams, eg. FileWaveform :</p> <pre><code>interface IPositionableWaveform { int ReadOffset { get; set; } } // A waveform stored in a file class FileWaveform : IWaveformResource, IPositionableWaveform { public int Collect( Stream _target, int _sampleCount ) { // ... } } </code></pre> <p>and use it like this:</p> <pre><code>private List&lt;IWaveformResource&gt; mResources; public int ReadOffset { set { foreach( IWaveformResource resource in mResources ) { if( resource is IPositionableWaveform ) { ((IPositionableWaveform)resource).ReadOffset = value; } } } } </code></pre> <p>Note that in this approach I'm not forcing a IPositionableWaveform to be also a IWaveformResource.</p> <p>I would like to know if there's a more elegant solution than this, thanks in advance.</p> http://stackoverflow.com/questions/1759059/creating-good-interfaces-what-should-be-included-and-what-should-be-left-out 0 Creating good interfaces, what should be included and what should be left out Max Fraser 2009-11-18T21:02:02Z 2009-11-18T21:07:03Z <p>I am in the process of updating a website for the third time in in 2 years, looks like this is going to happen all of the time and several websites are using the same DB. I want to use the same code for all of them and keep it easy to update in the future. So I plan on writing some interfaces and then place the business login in a service to keep things consistent across the board and add in some unit testing.</p> <p>So I am looking at my current repositories and I am not sure what should be in my Interface and what should be in my Service. </p> <p>For example I have an Add method - no brainer I have an Add in the interface and an add in the Service.</p> <p>Then I have an AuthenticateAccountManager method that takes 3 parameters, should this be in both or just the Service and have a simple Get method in my interface (say by Username) and then do the validation against th other 2 properties in the Service.</p> <p>I also have a QualifyPartner that sets a bool to true, should this just be in the Service and again have a simple Get method in my Interface, trying to keep that as small as possible?</p> http://stackoverflow.com/questions/143405/c-interfaces-implicit-and-explicit-implementation 34 C#: Interfaces - Implicit and Explicit implementation Seb Nilsson 2008-09-27T10:56:16Z 2009-11-18T07:22:28Z <p>What are the differences in implementing interfaces <strong>implicitly</strong> and <strong>explicitly</strong> in C#?</p> <p>When should you use implicit and when should you use explicit?</p> <p>Are there any pros and/or cons to one or the other?</p> http://stackoverflow.com/questions/1723558/where-to-put-the-interfaces-in-a-component-based-architecture 6 Where to put the interfaces in a component based architecture? JohnIdol 2009-11-12T16:34:30Z 2009-11-18T04:40:10Z <p>In a component based architecture where a large number of decoupled components communicate through a set of standardized interfaces - are there any guidelines for where-to-store / how-to-group the interfaces?</p> <p>Extreme solutions would be:</p> <ul> <li>All in the same assembly (and off you go)</li> <li>One assembly for each interface</li> </ul> <p>Both of these option seems wrong to me - the first being not flexible enough (for example if you want to change only one interface) the second being the other extreme, which could escalate to maintenance nightmare very quickly. </p> <p>In particular, <strong>I am looking for KILLER arguments not to adopt the two extremes above</strong> and obviously alternative approchaes.</p> <p>Any opinions appreciated.</p> http://stackoverflow.com/questions/1684150/c-inheritance-with-views-and-presenters 3 C# inheritance with views and presenters blu 2009-11-05T22:38:25Z 2009-11-14T08:36:45Z <p>I am working with MVP in ASP.NET and wanted see if there is an easier/cleaner way to do this.</p> <p>I have a presenter with a view. It turns out I can reuse some of the view properties and presenter methods in other views/presenters in the same application area.</p> <p>Lets say I have a Bar, which is logically a Foo. The base presenter, FooPresenter, has the common logic for Bar and its siblings. The IFoo view has common properties as well.</p> <p>I want to be able to treat the view as an IFooView in the FooPresenter, and the view as an IBarView in the BarPresenter and have it be the same instance so I get all of the Foo stuff in my view implementation, the aspx page.</p> <p>Here is what I have:</p> <pre><code>public interface IFooView { // foo stuff } public interface IBarView : IFooView { // bar stuff } public abstract class FooPresenter&lt;T&gt; where T : IFooView { public FooPresenter(T view) { this.view = view; } private IFooView view; public T View { get { return (T)view; } } public void SomeCommonFooStuff() { } } public class BarPresenter : FooPresenter&lt;IBarView&gt; { public BarPresenter (IBarView view) : base(view) { } public void LoadSomeBarStuff() { View.Stuff = SomeServiceCall(); } } </code></pre> <p>The interesting part is around accessing the view interface in the child class through the property in the base class that does the cast. Any thoughts about this, or recommendations on how I may be able to make this easier to maintain?</p> http://stackoverflow.com/questions/1728768/linqtosql-returning-custom-class-with-interface 0 Linqtosql - Returning custom class with interface monkeylee 2009-11-13T11:53:38Z 2009-11-13T12:02:29Z <p>Why can't I return as a new custom class (cms.bo.Site) which implements ISite?</p> <pre><code>public IQueryable&lt;ISite&gt; GetSites() { return (from site in Db.Sites select new cms.bo.Site(site.id, site.name)); } </code></pre> http://stackoverflow.com/questions/1725213/how-to-return-an-object-that-implements-an-interface-from-a-method 0 How to return an object that implements an interface from a method asp316 2009-11-12T20:39:09Z 2009-11-12T20:53:01Z <p>I'm trying to learn interfaces and want to try the following:</p> <p>Let's say I have an interface named ICustomer that defines basic properties (UserID, UserName, etc). Now, I have multiple concrete classes like ProductA_User, ProductB_User, ProductC_User. Each one has different properties but they all implement ICustomer as they are all customers.</p> <p>I want to invoke a shared method in a factory class named MemberFactory and tell it to new me up a user and I just give it a param of the enum value of which one I want. Since each concrete class is different but implements ICustomer, I should be able to return an instance that implements ICustomer. However, I'm not exactly sure how to do it in the factory class as my return type is ICustomer.</p> http://stackoverflow.com/questions/1715931/insertonsubmit-with-interfaces-linq-to-sql 0 InsertOnSubmit with interfaces (LINQ to SQL) Sasha 2009-11-11T15:28:13Z 2009-11-12T04:16:13Z <p>In our code we have:</p> <pre><code>public interface ILogMagazine { string Text { get; set; } DateTime DateAndTime { get; set; } string DetailMessage { get; set; } } SimpleDataContext: DataContext { public Table&lt;ILogMagazine&gt; LogMagaines { get { return GetTable&lt;ILogMagazine&gt;(); } } } </code></pre> <p>We try to:</p> <pre><code>DataContext db = new SimpleDataContext("..."); ILogMagazine lg = new LogMagazine() { Text = "test", DateAndTime = DateTime.Now, DetailMessage = "test", }; db.LogMagazines.InsertOnSubmit(lg); // Exception thrown db.SubmitChanges(); </code></pre> <p><strong>Exception:</strong> System.InvalidOperationException: The type 'DataLayer.ILogMagazine' is not mapped as a Table..</p> <p><hr></p> <p>How we can solve this problem?</p> http://stackoverflow.com/questions/1702384/interfaces-and-function-return-types-with-linq 0 Interfaces and function return types (with Linq) Cylindric 2009-11-09T17:09:46Z 2009-11-09T17:09:46Z <p>I have two interfaces:</p> <pre><code>Interface iContact Property ContactID As String Function Services() As System.Linq.IQueryable(Of iService) End Interface Interface iService Property ServiceID As String End Interface </code></pre> <p>I have a host app that implements these (properties skipped for brevity):</p> <pre><code>Class Contact Inherits iContact Function Service() As System.Linq.IQueryable(Of iService) Dim Records = _ From S In DB.Services _ Where S.ContactID.Equals(ContactID) _ Select New Service With {.ServiceID = T.ServiceID} Return Records End Function End Class Class Service Inherits iService End Class </code></pre> <p>These will be used in plug-ins in various ways, for example</p> <pre><code>Class MyOtherPluginDll Public Sub ProcessContact(ByRef C as iContact) Trace.WriteLine(C.ContactID) End Sub End Class </code></pre> <p><hr></p> <p>My problem is how to get a function defined in an Interface to return a particular value. Assuming that the host implementation of iContact retrieves a bunch of "Contact" objects from a database, how do I get those into the plugin? I do not have visibility to the Host's implementation "Service" of "iService". The following therefore doesn't work</p> <pre><code>Class MyOtherPluginDll Public Sub ProcessContact(ByRef C as iContact) Trace.WriteLine(C.ContactID) For Each S As iService In C.Services() ''# Can't get here, because C.Services() returns an actual Service, not an iService Next End Sub End Class </code></pre> http://stackoverflow.com/questions/1691989/how-to-expose-a-method-in-an-interface-without-making-it-public-to-all-classes 0 How to expose a method in an interface without making it public to all classes Mims H. Wright 2009-11-07T04:25:16Z 2009-11-07T20:19:11Z <p>I have a issue where I'm working with a particular interface for quite a lot of things. However, I have a particular method that I want to be available only to a particular group of classes (basically, an <code>internal</code> method). </p> <pre><code>interface IThing { function thisMethodIsPublic():void; function thisMethodShouldOnlyBeVisibleToCertainClasses():void; } </code></pre> <p>The problem is, there is no way to add access modifiers (i.e. public, private, internal) in an interface - at least not in ActionScript 3.0. </p> <p>So I'm wondering what would be the best practice here? It seems like bad form to make this internal method public, but I need it to be a part of the interface so I can guarantee that classes that implement it have this internal method. </p> <p>Thanks for your help!</p> http://stackoverflow.com/questions/1685976/how-can-i-create-an-interface-in-vbnet-with-implicit-implimentations 0 How can I create an interface in VBNet with implicit implimentations Kris Erickson 2009-11-06T07:24:38Z 2009-11-06T09:17:58Z <p>In C# I can create an interface, and when I use the interface the compiler knows that certain interface requirements are fulfilled by the base class. This is probably clearer with an example:</p> <pre><code>interface FormInterface { void Hide(); void Show(); void SetupForm(); } public partial class Form1 : Form , FormInterface { public Form1() { InitializeComponent(); } public void SetupForm() { } } </code></pre> <p>The compiler knows that Hide() and Show() are implimented in Form and the above code compiles just fine. I can't figure out how to do this in VB.Net. When I try:</p> <pre><code>Public Interface FormInterface Sub Hide() Sub Show() Sub SetupForm() End Interface Public Class Form1 Inherits System.Windows.Forms.Form Implements FormInterface Public Sub SetupForm() Implements FormInterface.SetupForm End Sub End Class </code></pre> <p>But the Compiler complains that Form1 must implement 'Sub Hide()' for interface 'FormInterface'. Do I actually have to add</p> <pre><code>Public Sub Hide1() Implements FormInterface.Hide Hide() End Sub </code></pre> <p>On all my forms, or is a better route creating an abstract base class that has SetupForm() (and how do you do that in VB.net)?</p> http://stackoverflow.com/questions/1682368/is-there-a-way-to-find-an-interface-implentation-based-on-a-generic-type-argument 1 Is there a way to find an interface implentation based on a generic type argument? AJ 2009-11-05T17:52:29Z 2009-11-05T20:04:00Z <p>I have a data access library that has a few classes that all implement the same interface, which has a generic type parameter:</p> <pre><code>public interface IGetByCommonStringRepository&lt;TEntity&gt; { TEntity GetByCommonStringColumn(string commonString); } public class Repository1&lt;Entity1&gt; : IGetByCommonStringRepository&lt;Entity1&gt; { public Entity1 GetByCommonStringColumn(string commonString) { //do stuff to get the entity } } public class Repository2&lt;Entity2&gt; : IGetByCommonStringRepository&lt;Entity2&gt; //...and so on </code></pre> <p>Rather than forcing consumers of this library to instantiate one of the four repository classes separately for each <code>&lt;TEntity&gt;</code>, I am hoping that there's some way that I can create a static method in a "helper/utility" class in the same assembly that will be able to discern which implementation to instantiate, create an instance, and execute the <code>GetByCommonStringColumn</code> method. Something like...</p> <pre><code>public static TEntity GetEntityByCommonStringColumn(string commonString) where TEntity : class { IGetByCommonStringRepository&lt;TEntity&gt; repository = DoMagicalReflectionToFindClassImplementingIGetByCommonString(typeof(TEntity)); //I know that there would have to an Activator.CreateInstance() //or something here as well. return repository.GetByCommonStringColumn(commonString) as TEntity; } </code></pre> <p>Is anything like this possible?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1674217/getting-nhibernate-to-generate-a-hilo-string-id 0 Getting NHibernate to generate a HiLo string ID Andy Clarke 2009-11-04T14:47:02Z 2009-11-05T16:07:23Z <p>Hi,</p> <p>We've got a large system that's loosely bound to its data source (Navision) via Unity - we're getting the opportunity to swap it out and have our own database.</p> <p>So we've had a look around and really like the look of Fluent NHibernate - we're trying to get a proof of concept going and swap out a couple of the services.</p> <p>We want to use NHibernates HiLo algorithm - Unfortunately we've inherited string ID's from Navision which prefixs its ID's (example COL00001) so to match the Interface we need to use string Id's.</p> <p>Does anyone know how I'd get something like ...</p> <pre><code>Id(x =&gt; x.ID).GeneratedBy.HiLo("100"); </code></pre> <p>working where ID is a string? We're currently getting Identity must be int, long etc</p> <p>Thanks,</p> <p>Andy</p> <p>------ Update ------</p> <p>I tried the example in the article suggested but this functionality has been removed from later versions of Fluent NHibernate - there is however a .Custom - but I can't seem to get it working!</p> <pre><code>public class ManufacturerMap : ClassMap&lt;Manufacturer&gt; { public ManufacturerMap() { Id(x =&gt; x.ID).GeneratedBy.Custom(typeof(StringTableHiLoGenerator)); Map(x =&gt; x.Name); } } public class StringTableHiLoGenerator : TableHiLoGenerator { public override object Generate(ISessionImplementor session, object obj) { return base.Generate(session, obj).ToString(); } } </code></pre> http://stackoverflow.com/questions/1679858/do-interfaces-solve-ddd-with-code-duplication 0 Do interfaces solve DDD with code duplication? Delirium tremens 2009-11-05T11:11:49Z 2009-11-05T11:56:03Z <p>AccountController can't extend BaseAccount and BaseController at the same time. If I make all BaseAccount or BaseController methods empty, I can have an interface, but if I implement that interface in two different places, that is, I make a contract to implement a method in two different places, I will have duplicated code. Do interfaces solve DDD with code duplication?</p> <pre><code>interface A { function doStuff() { } } class B implements A { function doStuff() { // a code } } class C implements A { function doStuff() { // the same code!!! } } </code></pre> http://stackoverflow.com/questions/1677427/auto-property-that-returns-an-interface 1 Auto Property that returns an interface Vaccano 2009-11-04T23:36:57Z 2009-11-04T23:54:12Z <p>This is something curious that I saw in my coding today.</p> <p>Here is the sample code:</p> <pre><code>public class SomeClass { public IUtils UtilitiesProperty { get; set; } } public interface IUtils { void DoSomething(); } public class Utils : IUtils { void DoSomething(); } </code></pre> <p>This compiles fine. </p> <p>So what is UtilitiesProperty? Is it a Util? What if more than one class implemented IUTil? Would it fail the compile then?</p> http://stackoverflow.com/questions/57054/how-to-solve-call-ambiguity-between-generic-ilistt-this-and-ilist-this 2 How to solve call ambiguity between Generic.IList<T>.this[] and IList.this[]? Will 2008-09-11T16:36:20Z 2009-11-03T20:25:24Z <p>I've got a collection that implements an interface that extends both IList&lt;T> and List. </p> <pre><code>public Interface IMySpecialCollection : IList&lt;MyObject&gt;, IList { ... } </code></pre> <p>That means I have two versions of the indexer. </p> <p>I wish the generic implementation to be used, so I implement that one normally:</p> <pre><code>public MyObject this[int index] { .... } </code></pre> <p>I only need the IList version for serialization, so I implement it explicitly, to keep it hidden:</p> <pre><code>object IList.this[int index] { ... } </code></pre> <p>However, in my unit tests, the following</p> <pre><code>MyObject foo = target[0]; </code></pre> <p>results in a compiler error</p> <blockquote> <p>The call is ambiguous between the following methods or properties</p> </blockquote> <p>I'm a bit surprised at this; I believe I've done it before and it works fine. What am I missing here? How can I get IList&lt;T> and IList to coexist within the same interface?</p> <p><strong>Edit</strong> IList&lt;T> does <em>not</em> implement IList, and I <strong>must</strong> implement IList for serialization. I'm not interested in workarounds, I want to know what I'm missing.</p> <p><strong>Edit again</strong>: I've had to drop IList from the interface and move it on my class. I don't want to do this, as classes that implement the interface are eventually going to be serialized to Xaml, which requires collections to implement IDictionary or IList...</p> http://stackoverflow.com/questions/1666383/c-how-to-generate-an-object-implementing-different-interfaces-dynamically-at-run 3 C# How to generate an object implementing different interfaces dynamically at runtime? Timo Kosig 2009-11-03T10:04:30Z 2009-11-03T10:32:08Z <p>Hello everyone,</p> <p>I'm looking at how to solve a problem and I'm not even sure this might be possible at all in C# &amp; .NET 3.5:</p> <p>Say I have a limited number of interfaces, each describing a specific, non-related set of methods. Now I have a number real-world devices which each may implement just a subset of these interfaces.</p> <p>During set-up of comms with these devices they will tell me which capabilities they have. I would now like to create an object implementing the interfaces (each resembling one capability of the device) so that higher up in my application architecture I'm able to:</p> <ul> <li>write code against the aforementioned interfaces</li> <li>test if that generated object implements a certain interface to see if certain actions are supported</li> </ul> <p>I'm not sure at all which approach to use towards this problem. Any comments or approaches most welcome!</p>