active questions tagged interface - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T07:10:39Zhttp://stackoverflow.com/feeds/tag/interfacehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1635943/any-hints-on-programming-dia-with-python-extensions0Any hints on programming Dia with Python extensions?Eric2009-10-28T08:53:34Z2009-11-29T04:00:06Z
<p>I'm searching for documentation on how to do it properly. Any hints?</p>
http://stackoverflow.com/questions/1813643/how-do-you-name-your-reference-implementations-of-an-interface2How do you name your "reference" implementations of an interface?Malax2009-11-28T20:10:09Z2009-11-29T01:09:08Z
<p>Hi StackOverflow!</p>
<p>My question is rather simple and the title states it perfectly: How do you name your "reference" or "basic" implementations of an interface? I saw some naming conventions:</p>
<ul>
<li>FooBarImpl</li>
<li>DefaultFooBar</li>
<li>BasicFooBar</li>
</ul>
<p>What do you use? What are the pros and cons? And where do you put those "reference" implementations? Currently i create an .impl package where the implementations go. More complex implementations which may contain multiple classes go into a .impl.complex package, where "complex" is a short name describing the implementation.</p>
<p>Thank you,
Malax</p>
http://stackoverflow.com/questions/1813902/documenting-interfaces-and-their-implementation4Documenting Interfaces and their implementationMike Gleason jr Couturier2009-11-28T22:00:24Z2009-11-28T22:30:24Z
<p>Hi,</p>
<p>I'm decorating my C# code with comments so I can produce HTML help files.</p>
<p>I often declare and document interfaces. But classes implementing those interfaces can throw specific exceptions depending on the implementation.</p>
<p>Sometimes, the client is only aware of the interfaces he's using. Should I document my interfaces by adding the possible exceptions that could be thrown by its implementors?</p>
<p>Should I create/document custom exceptions so that interfaces implementors throw these instead of those of the framework?</p>
<p>I hope this is clear!</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1813912/does-a-reference-work-with-human-behavior-perception-patterns-exist3Does a reference work with human behavior/perception patterns exist?Domus2009-11-28T22:02:59Z2009-11-28T22:02:59Z
<p>In all current and future projects I pledged to concentrate all the ground work around interaction design.</p>
<p>I'm aware of Alan Cooper's work, and it's excellent, but what I'm looking for is a reference work with observed human behavior when confronted with certain visual elements and usage scenarios.</p>
<p>Some kind of "user psychology for developers." Which colors convey which feelings, where is the eye led, and how. How much can a user remember, which approach to take to map the user's mental model onto the interface as closely as possible (or rather the opposite).</p>
<p>I developed a design steps framework in order to work out interaction scenarios and user goals, taking into consideration several factors such as fun, confusion, and fulfilment.</p>
<p>What is lacking is an exhaustive guide to human interaction behavior and perception, so that one doesn't have to rely on one's own (often faulty) intuition.</p>
<p>My goal, basically, is to achieve a rule-testable interaction design framework.</p>
http://stackoverflow.com/questions/1812329/anyone-has-an-alternative-to-using-static-methods-in-a-c-interface0Anyone has an alternative to using static methods in a C# interface?unknown (google)2009-11-28T11:40:33Z2009-11-28T15:00:11Z
<p>I want to implement a collection, whose items need to be tested for emptiness.
In case of a reference type, one would test for being null. For value types, one has to implement empty testing, and probably choose a specific value that represents emptyness.</p>
<p>My generic collection of T should be usable for both value and reference type values (meaning that <code>Coll<MyCalss></code> and <code>Coll<int></code> should both be possible). But I have to test reference and value types differently.</p>
<p>Wouldn't it be nice to have an interface that implements an IsEmpty() method, to exclude this logic from my generic type? But of course, this IsEmpty() method cannot be a member function: it could not be called on empty objects.</p>
<p>One workaround I found is to have collection items stored as objects, rather then T-s, but it gives me a headache (around boxing and being strongly typed). In good old C++ it was no problem :-)</p>
<p>The code below demonstrates what I'd like to achieve:</p>
<pre><code>using System;
using System.Collections.Generic;
namespace StaticMethodInInterfaceDemo
{
public interface IEmpty<T>
{
static T GetEmpty(); // or static T Empty;
static bool IsEmpty(T ItemToTest);
}
public class Coll<T> where T : IEmpty<T>
{
protected T[] Items;
protected int Count;
public Coll(int Capacity)
{
this.Items = new T[Capacity];
this.Count = 0;
}
public void Remove(T ItemToRemove)
{
int Index = Find(ItemToRemove);
// Problem spot 1: This throws a compiler error: "Cannot convert null to type parameter 'T'
// because it could be a non-nullable value type. Consider using 'default(T)' instead."
this.Items[Index] = null;
// To overcome, I'd like to write this:
this.Items[Index] = T.Empty; // or T.GetEmpty(), whatever.
this.Count--;
}
public T[] ToArray()
{
T[] ret = new T[this.Count];
int TargetIndex = 0;
for(int Index = 0; Index < this.Items.GetLength(0); Index++)
{
T Item = this.Items[Index];
// Problem spot 2: This test is not correct for value types.
if (Item != null)
ret[TargetIndex++] = Item;
// I'd like to do this:
if (!T.IsEmpty(Item))
ret[TargetIndex++] = Item;
}
return ret;
}
protected int Find(T ItemToFind)
{
return 1; // Not implemented in the sample.
}
}
}
</code></pre>
http://stackoverflow.com/questions/1169571/adding-a-set-accessor-to-a-property-in-a-class-that-derives-from-an-abstract-clas2Adding a set accessor to a property in a class that derives from an abstract class with only a get accessorEric2009-07-23T04:14:51Z2009-11-26T19:14:02Z
<p>I have an abstract class, <strong>AbsClass</strong> that implements an interface, <strong>IClass</strong>. <strong>IClass</strong> has a couple properties with only Get accessors. <strong>AbsClass</strong> implements the properties of <strong>IClass</strong> as abstract properties to be defined in the classes that derive from <strong>AbsClass</strong>. </p>
<p>So all of the classes that derive from <strong>AbsClass</strong> will also need to satisfy <strong>IClass</strong> by having the same properties with Get accessors. However, in some cases I want to be able to add set accessors to the properties from <strong>IClass</strong>. Yet if I try to override the abstract properties in <strong>AbsClass</strong> with a set accessor I get this error</p>
<p><em>ConcClassA.Bottom.Set cannot override because AbsClass.Bottom does not have an overridable set accessor</em></p>
<p>See <strong>ConcClassA</strong> below.</p>
<p>If I have a class that is only implementing the <strong>IClass</strong> interface, but not inheriting from AbsClass then I am able to add a set accessor with out problems. See <strong>ConcClassB</strong> below.</p>
<p>I could just implement IClass at each derivation of AbsClass rather then directly for AbsClass. Yet I know from my design that every AbsClass needs to also be an IClass so I'd rather specify that higher up in the hierarchy.</p>
<pre><code>public interface IClass
{
double Top
{
get;
}
double Bottom
{
get;
}
}
abstract class AbsClass:IClass
{
public abstract double Top
{
get;
}
public abstract double Bottom
{
get;
}
}
class ConcClassA : AbsClass
{
public override double Top
{
get { return 1; }
}
public override double Bottom
{
get { return 1; }
//adding a Set accessor causes error:
//ConcClassA.Bottom.Set cannot override because AbsClass.Bottom does not have an overridable set accessor
//set { }
}
}
class ConcClassB : IClass
{
public double Top
{
get { return 1; }
//added a set accessor to an interface does not cause problem
set { }
}
public double Bottom
{
get { return 1; }
}
}
</code></pre>
<p><hr></p>
<p><strong>Update</strong></p>
<p>So I think this will make more sense if I explain exactly what I'm trying to do rather then using the abstract example. I work for an Architecture firm and these are business objects related to an architectural design project. </p>
<p>I have an abstract class <strong>RhNodeBuilding</strong> that represents one type of building on a project. There is some general functionality, like the ability to have floors, that is defined in <strong>RhNodeBuilding</strong>. <strong>RhNodeBuilding</strong> also inherits from another abstract classes that allow it be part of a larger project tree structure.</p>
<p><strong>RhNodeBuilding</strong> implements from an interface <strong>IBuilding</strong> which defines a number of read only properties that all buildings should be able to provide such as <strong>TopElevation</strong>, <strong>BottomElevation</strong>, <strong>Height</strong>, <strong>NumberOfFloors</strong>, etc..etc.. Keep in mind there are other building types that do not derive from <strong>RhNodeBuilding</strong>, but still need to implement <strong>IBuilding</strong>.</p>
<p>Right now I have two types that derive from <strong>RhNodeBuilding</strong>: <strong>MassBuilding</strong> and <strong>FootPrintBuilding</strong>. <strong>MassBuilding</strong> is defined by a 3D shape created by the user. That shape has a <strong>TopElevation</strong> and a <strong>BottomElevation</strong> that should be accessible through the corresponding properties, but you shouldn't be able to edit the 3D volume by changing the properties.</p>
<p><strong>FootPrintBuilding</strong> on the other hand is defined by a closed curve and a height range to extrude that curve through. So not only should the class be able to return what the current elevations are but these elevations should also be able to be changed to redefine the height range.</p>
<p>So in summary. All buildings (<strong>IBuildings</strong>) need to be able to return a <strong>TopElevation</strong> and <strong>BottomElevation</strong>, but not all buildings should allow <strong>TopElevation</strong> or <strong>BottomElevation</strong> to be set directly. All <strong>RhNodeBuildings</strong> are <strong>IBuildings</strong>, and classes that derive from <strong>RhNodeBuilding</strong> may or may not need to be able to directly set <strong>TopElevation</strong> and <strong>BottomElevation</strong>.</p>
<pre><code>public interface IBuilding
{
double Top
{
get;
}
double Bottom
{
get;
}
}
abstract class RhNodeBuilding:IBuilding
{
public abstract double Top
{
get;
}
public abstract double Bottom
{
get;
}
}
class MassBuilding: AbsClass
{
//mass building only returns Top and Bottom properties so it works fine
public override double Bottom
{
get { return 1; }
}
public override double Top
{
get { return 1; }
}
}
class FootPrintBuilding: AbsClass
{
//Top and Bottom of FootPrintBuilding can both be retrieved and set
public override double Top
{
get { return 1; }
//adding a Set accessor causes error:
//cannot override because RhNodeBuilding.Top does not have an overridable set accessor
//set { }
}
public override double Bottom
{
get { return 1; }
//adding a Set accessor causes error:
//cannot override because RhNodeBuilding.Bottom does not have an overridable set accessor
//set { }
}
}
</code></pre>
<p>Right now it seems like the best option is to not have <strong>RhNodeBuilding</strong> implement <strong>IBuilding</strong>, but rather have every class that derives from <strong>RhNodeBuilding</strong> implement IBuilding. That way I can define the properties from <strong>IBuilding</strong> directly rather then as overrides.</p>
<pre><code>abstract class AltRhNodeBuilding
{
public abstract double Top
{
get;
}
}
class AltFootPrintBuilding: IClass
{
public override double Top
{
get { return 1; }
//Can't add set access to overridden abstract property
set { }
}
//No problem adding set accessor to interface property
public double Bottom
{
get { return 1; }
set { }
}
}
</code></pre>
http://stackoverflow.com/questions/1799154/serializable-class-inheriting-from-an-interface-with-a-property-of-its-own-type0Serializable class inheriting from an Interface with a property of its own typeJeremy2009-11-25T18:50:12Z2009-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/1802444/how-to-use-an-interface-as-maps-key0 How to use an Interface as Map’s KeyMargrethe2009-11-26T09:03:51Z2009-11-26T14:38:55Z
<p>I am looking for help on the subject how to use an Interface as Maps Key. I tried to implement a solution, and get no compiletime errors but runtime errors when running my integration tests. Is it not possible to use an Interface as a Key, or is it my tests there is something wrong with?</p>
<p>My code looks something like this</p>
<pre><code>private Map<AInterface, Values> myMap = new HashMap<AInterface, Values>();
</code></pre>
<p>Upon retreiving the set of keys from myMap they do contain objects with expected Id, but are compared to not-equal. So when using myMap.get(Object key) i get null, eventhough an object with the same id is there. When using the concrete class instead of the interface all tests pass:</p>
<pre><code>private Map<AClass, Values> myMap = new HashMap<AClass, Values>();
</code></pre>
<p>I've read
<a href="http://java.sun.com/developer/technicalArticles/J2SE/generics/" rel="nofollow">http://java.sun.com/developer/technicalArticles/J2SE/generics/</a>
where it states that for a Map, you are required to replace the type variables K and V by concrete types that are subtypes of Object. </p>
<p>Since the compiler does not give me any warnings when using an Interface for K, my guess would have been that the tests have errors.</p>
<p>Does anybody have any experience with using Interfaces as Key in a Map? And could give me any hints on what I am doing wrong?</p>
http://stackoverflow.com/questions/1796655/cast-interface-in-generic-method0Cast Interface in generic methodPankaj2009-11-25T12:37:34Z2009-11-25T22:22:51Z
<p>Hello All
I am new user of interface. My problem is i have create a Generic class which have two parameter
one is object type another is interface type. Now within class i can cast object using Reflection but i am not getting the way to cast interface. </p>
http://stackoverflow.com/questions/1799690/when-doing-a-extract-to-interface-why-doesnt-it-modify-the-interface-previously0when doing a extract to interface, why doesn't it modify the interface previously created?mrblah2009-11-25T20:18:07Z2009-11-25T21:01:55Z
<p>I created an interface in a file, then a class that implements the interface in another file.</p>
<p>If i add a property to the implementation class, is it possible to pass that method signature down to the interface automatically using resharper?</p>
<p>I tried, and it seemed to just create another interface in the same file?</p>
http://stackoverflow.com/questions/1798956/c-is-it-possible-to-extend-an-existing-built-in-class-with-a-new-interface0C# - Is it possible to extend an existing built-in class with a new Interfacemrbamboo2009-11-25T18:21:24Z2009-11-25T18:26:23Z
<p>Hi,</p>
<p>I am just learning C# and I have a problem now. :-)
In C++ I loved to use "const reference" as a parameter to avoid that
the called method changes my passed object.</p>
<p>I read somewhere that I can do sth. similar in C# by using Interfaces.
In the interface I would just put some "getters" to allow the method a readonly access
to my object.</p>
<p>Now guess, that I want to pass my C# method a built-in container like "List".
But I want to avoid that the method changes something in that list.
Just read only!</p>
<p>My first thought was:
- I create a new Interface called IMyOwnInterface, which uses the interface IList as well</p>
<ul>
<li><p>My new interface IMyOwnInterface contains only "getters"</p></li>
<li><p>I change my method to sth. like that MyLittleMethod(IMyOwnInterface if)</p></li>
<li><p>Now the method "MyLittleMethod" can just see the "getters", which I put in my own interface and not the "setters" of IList</p></li>
</ul>
<p>Is this possible?
Can someone give me a hint?</p>
http://stackoverflow.com/questions/639592/why-are-interfaces-preferred-to-abstract-classes16Why are interfaces preferred to abstract classes?Techmaddy2009-03-12T17:15:23Z2009-11-25T13:03:26Z
<p>I recently attended an interview and they asked me the question "Why Interfaces are preferred over Abstract classes?"</p>
<p>I tried giving a few answers like:</p>
<ul>
<li>We can get only one Extends functionality</li>
<li>they are 100% Abstract</li>
<li>Implementation is not hard-coded</li>
</ul>
<p>They asked me take any of the JDBC api that you use. "Why are they Interfaces?".</p>
<p>Can I get a better answer for this?</p>
http://stackoverflow.com/questions/1793110/net-2-0-creating-an-interface-to-allow-for-editing-adding-to-be-handled-by-the1.NET 2.0 - Creating an interface to allow for editing/adding to be handled by the object itself?synhershko2009-11-24T21:42:12Z2009-11-25T01:12:02Z
<p>Hi all,</p>
<p>I have this code structure:</p>
<pre><code>public abstract class ContentEntryBase
{
public string UniqueIdentifier;
public string Title;
public abstract ContentType contentType { get;}
}
public class TextArticle : ContentEntryBase
{
// Holds plain / HTML text as content
public override ContentType contentType {
get { return ContentType.TextArticle; } }
}
public class Series : ContentEntryBase
{
// Holds a series of TextArticles, Separators
// and Prefaces as content
ContentEntryBase[] Articles = null;
public override ContentType contentType {
get { return ContentType.Series; } }
}
</code></pre>
<p>ContentEntryBase isn't an interface as so to allow me to perform basic actions valid to all descendant types from the base class.</p>
<p>I have a WinForms application utilizing these classes, and I want it to be able to call a method on ContentEntryBase (meaning, without realizing the exact type of the object at hand) for both displaying the content, and editing it.</p>
<p>So for example, TextArticle would show a TextBox / WYSIWYG editor when accessed for editing, and return a string when accessed for display. When Series is accessed for editing, it would show a list of all elements it contains (derived from ContentEntryBase) where those items could be edited or sorted. When accessed for display, it would show a list of all children.
I also have several more derived types, but these are the basic ones.</p>
<p>I tried thinking of the best contract to define for this, but came with no good solution. Can this be made in a way where it could be used in both WinForms and WebForms or MVC? Can display and edit functionalities use the same contract / function (GetContent() or something)?</p>
<p>I know using .NET 2.0 only limiting this even further, but this is what I have to use...</p>
<p>Thanks in advance!</p>
<p>Itamar.</p>
http://stackoverflow.com/questions/1694325/xcode-possible-to-auto-create-stubs-for-methods-required-by-protocol-interface5XCode: Possible to auto-create stubs for methods required by Protocol interface?Eric Farraro2009-11-07T20:35:49Z2009-11-24T21:03:41Z
<p>Coming from an Eclipse / Java background, one of my favorite features is the ability to quickly stub out all the methods required by an interface. In Eclipse, I can choose 'Override / implement' from the source menu to generate stub methods for any method of the Interface.</p>
<p>I'd like to do the same thing in Objective-C. For instance, if I declare a class that implements the 'NSCoding' protocol, I'd like to have XCode automatically generate the methods required to implement this Protocol. It's frustrating to have to look-up and then copy/paste the signatures of the required methods every Protocol that I'm trying to implement.</p>
<p>I've been trying for awhile to find out if this is possible, but haven't found anything promising yet. Is this possible in XCode?</p>
http://stackoverflow.com/questions/1791359/c-interface-inheritance-getters-setters2C#: interface inheritance getters/settersEamon Nerbonne2009-11-24T16:49:37Z2009-11-24T17:12:21Z
<p>I have a set of interfaces which are used in close conjunction with particular mutable object.</p>
<p>Many users of the object only need the ability to read values from the object, and then only a few properties. To avoid namespace pollution (easier intellisense) and to get across the usage intent, I'd like to have a small base interface which only exposes a few "key" properties in a read-only fashion.</p>
<p>However, almost all implementations will support the full interface, which includes modifiability.</p>
<p>Unfortunately, I ran into a roadblock expressing that concept in C#:</p>
<pre><code>interface IBasicProps {
public int Priority { get; }
public string Name {get;}
//... whatever
}
interface IBasicPropsWriteable:IBasicProps {
public int Priority { set; } //warning CS0108: [...] hides inherited member [...]
public string Name { set; }
//... whatever
}
</code></pre>
<p>I certainly wasn't intending to hide any members, so that aint good!</p>
<p>Of course, I can solve this using methods just fine, but what's the <em>right</em> choice? I'd like to keep the "core" interface as small as possible even if splitting the interfaces serves no purpose other than communicating intent. With split interfaces, it's just really obvious which methods aren't going to do any updating, and it makes writing code a bit clearer (not to mention also allows nice-n-simple static singleton stubs that suffice for quite a few simple cases).</p>
<p>I'd like to avoid any abstract classes and the like; they make reimplementation or quick single-purpose shims all that more complex and hard-to-grok.</p>
<p>So, ideas?</p>
http://stackoverflow.com/questions/1789078/how-to-find-all-classes-of-a-particular-interface-within-an-assembly-in-net2How to find all classes of a particular interface within an assembly in .netMax2009-11-24T10:00:20Z2009-11-24T11:05:00Z
<p>I have a scenario whereby I want n amount of classes to look at the same data and decide if any work needs to be done. Work is done by a team, and multiple teams can work on the data at the same time. I was thinking of creating a class for every team that would implement the CreateWork interface. All CreateWork classes must have their say. At the moment there are only a few but in the future there will be many more.</p>
<p>Sudo code for my planned solution</p>
<pre><code>For each CreateWork class in assembly
class.CheckAndCreateWork(dataIn,returnedCollectionOfWorkToBeDone)
Next
</code></pre>
<p>Is there a design pattern that can accomplish this in an elegant way? Seems a bit messy to loop round every class in the assembly.</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1785862/what-is-the-value-of-interfaces3What is the value of Interfaces?donde2009-11-23T20:51:35Z2009-11-23T23:53:25Z
<p>Sorry to ask sich a generic question, but I've been studying these and, outside of say the head programming conveying what member MUST be in a class, I just don't see any benefits.</p>
http://stackoverflow.com/questions/1786274/is-an-abstract-class-a-type-of-interface2is an abstract class a type of interface?mrblah2009-11-23T21:50:35Z2009-11-23T23:18:25Z
<p>In my /interfaces folder I put all my interfaces.</p>
<p>Is an abstract class a type of interface?</p>
http://stackoverflow.com/questions/1785545/iphone-interface-question0Iphone interface questionjohn2009-11-23T19:56:13Z2009-11-23T22:21:38Z
<p>Just curious if I need to implement a way for the user to get back to the main screen of a program. It's actually essential in my app for the user not to be able to get back. Will this get rejected if I don't add a back button?</p>
http://stackoverflow.com/questions/1681287/remove-middleman-intellij-refactoring-on-an-empty-interface1'Remove middleman' IntelliJ refactoring on an empty interfaceripper2342009-11-05T15:28:41Z2009-11-23T19:58:57Z
<p>I have an interface which is now empty, and extends another interface. I'd like to remove the empty interface and use the base interface, and am trying to find the correct refactoring in IntelliJ.</p>
<p>I've tried "remove middleman" but got "cannot perform the refactoring. The caret should be positioned at the name of the field to be refactored".</p>
http://stackoverflow.com/questions/849664/fluent-nhibernate-how-do-i-map-an-entity-with-a-property-whos-type-is-an-interf1Fluent nhibernate: How do I map an entity with a property who's type is an interface?TheDeeno2009-05-11T19:29:27Z2009-11-23T19:51:33Z
<p>I have an entity like:</p>
<pre><code>public class Employee
{
public int ID { get; set; }
public IAccountManager AccountManager { get; set; }
...
}
</code></pre>
<p>I also have a mapping defined for "DefaultAccountManager" - a concrete implementation of IAccountManager. When mapping the above "Employee" entity, how do I tell NHibernate to persist/load the AccountManager property using the mapping defined in "DefaultAccountManager"?</p>
<p><strong>Edit:</strong>
Actually if I could setup a mapping for IAccountManager so that NHibernate could just infer which implementer to load/persist that would be even better. I'd rather not have to break polymorphism by forcing all implementers to use the same mapping.</p>
http://stackoverflow.com/questions/1784485/how-to-centrally-define-icomparable-on-abstract-interface-types-in-f1How to centrally define IComparable on abstract (interface) types in F#Dan Fitch2009-11-23T16:57:03Z2009-11-23T17:24:54Z
<p>This question is kind of the next level of <a href="http://stackoverflow.com/questions/895769/f-set-using-custom-class">http://stackoverflow.com/questions/895769/f-set-using-custom-class</a> -- I want to define IComparable for a generic interface.</p>
<p>I have an arbitrary set of types which implement a shared metadata exchange interface, <code>ITree</code>. I want to compare across these types, using only the exposed data in <code>ITree</code>.</p>
<p>I realize this stuff is not exactly idiomatic F#, but I'm trying to interop with existing C# and VB code, so I want to use .NET interfaces and comparison where possible.</p>
<pre><code>open System
open System.Collections.Generic
// Simplified "generic" metadata type that all implementers agree on
type ITree =
abstract Path: string with get, set
abstract ModifyDate: DateTime with get, set
type Thing1(path, date) =
interface ITree with
member x.Path = path
member x.ModifyDate = date
// In reality, the types implementing ITree are going to
// come from different external assemblies
type Thing2(path, date) =
interface ITree with
member x.Path = path
member x.ModifyDate = date
let d1 = DateTime.Now
let d2 = DateTime.Now.AddMinutes(-2.0)
let xs : seq<ITree> = Seq.cast [ Thing1("/stuff", d1); Thing1("/dupe", d1); Thing1("/dupe", d1) ]
let ys : seq<ITree> = Seq.cast [ Thing2("/stuff", d2); Thing2("/dupe", d1) ]
// Then I would like to take advantage of F# Sets
// to do comparison across these things
let xset = Set.ofSeq xs
let yset = Set.ofSeq ys
let same = Set.intersect xset yset
let diffs = (xset + yset) - same
</code></pre>
<p>Now the actual problem: this does not compile because <code>ITree</code> doesn't yet implement <code>IComparable</code>. I need a custom comparison that helps with clock skew and eventually other things.</p>
<p>Is there a way I can define the comparison function <strong>on <code>ITree</code> directly</strong> so that all the other assemblies don't need to think about it, and can just provide their data?</p>
<p>If I try to do</p>
<pre><code>type ITree =
abstract Path: string with get, set
abstract ModifyDate: DateTime with get, set
interface IComparable<ITree> with
let Subtract (this: ITree) (that: ITree) =
this.ModifyDate.Subtract(that.ModifyDate)
match compare (this.Path, this.ParentPath) (that.Path, this.ParentPath) with
| 0 ->
// Paths are identical, so now for a stupid timespan comparison
match abs (Subtract this that).TotalSeconds with
| x when x > 60.0 -> int x
| _ -> 0
| x -> x
</code></pre>
<p>The compiler thinks <code>ITree</code> is no longer an abstract interface, or something confusing.</p>
<p>Now, I could create a base type that all of the implementors must share, but I don't want to do that because those other types really just need to expose their data on this interface, they already exist, and may already have a base class for some other reason.</p>
<p>Possibly I can use <code>IComparer<T></code>, like</p>
<pre><code>type ITreeComparer =
interface IComparer<ITree> with
member x.Compare(this, that) = ...
</code></pre>
<p>But then I have no idea how to tell the <code>Set...</code> functions to use that IComparer.</p>
<p>(I assume that once I figure out how to apply <code>IComparer<T></code>, the same methods will work for <code>IEqualityComparer<T></code> as needed.)</p>
<p><hr></p>
<p><strong>Edit:</strong> I can do</p>
<pre><code>let x = new HashSet<ITree>(a |> Seq.cast<ITree>, new ITreeEqualityComparer())
</code></pre>
<p>To use the normal .NET collections, which should be good enough for this problem; however, I would still like to know if there's a better way to do what I'm trying to do.</p>
http://stackoverflow.com/questions/1109441/how-do-i-use-c-generics-for-this-implementation-when-the-generic-decision-is-bas2How do I use C# Generics for this implementation when the Generic Decision is based on a DB ValueEoin Campbell2009-07-10T13:12:39Z2009-11-23T13:37:12Z
<p>We have a content delivery system that delivers many different content types to devices.
All the content is stored in a database with a <code>contentID</code> & <code>mediaTypeID</code>.</p>
<p>For this example lets assume the <code>MediaType</code> can be one of these 2 but in reality theres many more of them.</p>
<pre><code>Gif
MP3
</code></pre>
<p>Because the content is stored in different places based on mediatype and requires different headers to be sent, theres a big nasty piece of legacy code that essentially switches on each mediatype and sets the correct parameters. *I'd like to change this into a more generic implementation. So heres what I've got so far in my wireframe</p>
<pre><code>public interface IContentTypeDownloader
{
MemoryStream GetContentStream();
Dictionary<string, string> GetHeaderInfo();
}
public class GifDownloader : IContentTypeDownloader
{
public MemoryStream GetContentStream(int contentID)
{
//Retrieve Specific Content gif
}
public Dictionary<string, string> GetHeaderInfo()
{
//Retrieve Header Info Specific To gifs
}
}
public class MP3Downloader : IContentTypeDownloader
{
public MemoryStream GetContentStream(int contentID)
{
//Retrieve Specific Content mp3
}
public Dictionary<string, string> GetHeaderInfo()
{
//Retrieve Header Info Specific To mp3s
}
}
</code></pre>
<p>Which all seems sensible... Until I get to the Manager Class.</p>
<pre><code>public class ContentManager<T> where T : IContentTypeDownloader
{
public int ContentID { get; set; }
public MemoryStream GetContent()
{
IContentTypeDownloader ictd = default(T);
return ictd.GetContentStream(this.ContentID);
}
... etc
}
</code></pre>
<p>The problem is, I still need to initialise this type with the specific IContentTypeDownloader for that mediaTypeID.</p>
<p>And I'm back to square 1, with a situation like</p>
<pre><code>if(mediaTypeID == 1)
ContentManager<GifDownloader> cm = new ContentManager<GifDownloader>();
else if (mediaTypeID == 2)
ContentManager<MP3Downloader> cm = new ContentManager<MP3Downloader>();
</code></pre>
<p>etc...</p>
<p>Anyone any idea on how to make this last decision generic based on the value of the <code>mediaTyepID</code> that comes out of the Database</p>
http://stackoverflow.com/questions/1783035/how-to-access-derived-class-members-from-an-interface0How to access derived class members from an interface?RK2009-11-23T13:04:00Z2009-11-23T13:18:58Z
<p>I have three classes; Stamp, Letter and Parcel that implement an interface IProduct and they also have some of their own functionality. </p>
<pre><code>public interface IProduct
{
string Name { get; }
int Quantity { get; set; }
float Amount { get; }
}
public class Stamp : IProduct
{
public string Name { get { return "Stamp"; } }
public int Quantity { get; set; }
public float Amount { get; set; }
public float UnitPrice { get; set; }
}
public class Letter : IProduct
{
public string Name { get { return "Letter"; } }
public int Quantity { get; set; }
public float Amount { get; set; }
public float Weight { get; set; }
public string Destination { get; set; }
}
public class Parcel : IProduct
{
public string Name { get { return "Parcel"; } }
public int Quantity { get; set; }
public float Amount { get; set; }
public float Weight { get; set; }
public string Destination { get; set; }
public int Size { get; set; }
}
public static class ShoppingCart
{
private static List<IProduct> products = new List<IProduct>();
public static List<IProduct> Items { get { return products; } }
}
</code></pre>
<p><strong>Why can't I access the additional members of derived classes from a <code>List<IProduct></code> ?</strong> </p>
<pre><code>ShoppingCart.Items.Add(new Stamp { Quantity = 5, UnitPrice = 10, Amount = 50 });
ShoppingCart.Items.Add(new Letter { Destination = "US", Quantity = 1, Weight = 3.5f });
ShoppingCart.Items.Add(new Parcel { Destination = "UK", Quantity = 3, Weight = 4.2f, Size = 5 });
foreach (IProduct product in ShoppingCart.Items)
{
Console.WriteLine("Name: {0}, Quantity: {1}, Amount: {2}", product.Name, product.Quantity, product.Amount);
}
</code></pre>
<p>I thought of using generics, but in that case I will have to write separate code for each specific type of product. </p>
<pre><code>public static class ShoppingCart<T> where T : IProduct
{
private static List<T> items = new List<T>();
public static List<T> Items { get { return items; } }
}
ShoppingCart<Stamp>.Items.Add(new Stamp { Quantity = 5, Amount = 10, UnitPrice = 50 });
ShoppingCart<Letter>.Items.Add(new Letter { Destination = "US", Quantity = 1, Weight = 3.5f });
foreach (Stamp s in ShoppingCart<Stamp>.Items)
{
Console.WriteLine("Name: {0}, Quantity: {1}, Amount: {2}", s.Name, s.Quantity, s.Amount);
}
foreach (Letter l in ShoppingCart<Letter>.Items)
{
Console.WriteLine("Name: {0}, Destination: {1}, Weight: {2}", l.Name, l.Destination, l.Weight);
}
</code></pre>
<p>Isn't there any kind of design pattern for this kind of problem. Factory Pattern?</p>
http://stackoverflow.com/questions/1778030/cast-concrete-class-to-generic-base-interface1Cast concrete class to generic base interfaceSameer Shariff2009-11-22T06:46:56Z2009-11-23T06:45:11Z
<p>Here's the scenario i am faced with:</p>
<pre><code>public abstract class Record { }
public abstract class TableRecord : Record { }
public abstract class LookupTableRecord : TableRecord { }
public sealed class UserRecord : LookupTableRecord { }
public abstract class DataAccessLayer<TRecord> : IDataAccessLayer<TRecord>
where TRecord : Record, new() { }
public abstract class TableDataAccessLayer<TTableRecord> : DataAccessLayer<TTableRecord>, ITableDataAccessLayer<TTableRecord>
where TTableRecord : TableRecord, new() { }
public abstract class LookupTableDataAccessLayer<TLookupTableRecord> : TableDataAccessLayer<TLookupTableRecord>, ILookupTableDataAccessLayer<TLookupTableRecord>
where TLookupTableRecord : LookupTableRecord, new() { }
public sealed class UserDataAccessLayer : LookupTableDataAccessLayer<UserRecord> { }
public interface IDataAccessLayer<TRecord>
where TRecord : Record { }
public interface ITableDataAccessLayer<TTableRecord> : IDataAccessLayer<TTableRecord>
where TTableRecord : TableRecord { }
public interface ILookupTableDataAccessLayer<TLookupTableRecord> : ITableDataAccessLayer<TLookupTableRecord>
where TLookupTableRecord : LookupTableRecord { }
</code></pre>
<p>Now, when i try to do the following cast, it does not compile:</p>
<pre><code>UserDataAccessLayer udal = new UserDataAccessLayer();
ITableDataAccessLayer<TableRecord> itdal = (ITableDataAccessLayer<TableRecord>)udal;
</code></pre>
<p>However, when i do the following cast it compiles with no runtime errors:</p>
<pre><code>UserDataAccessLayer udal = new UserDataAccessLayer();
ITableDataAccessLayer<UserRecord> itdal = (ITableDataAccessLayer<UserRecord>)udal;
</code></pre>
<p>I really need to work with the base <code>ITableDataAccessLayer<TableRecord></code> interface, as i don't know the concrete type.</p>
<p>Hope this is descriptive and helpfull enough to answer my question.</p>
http://stackoverflow.com/questions/1778848/how-to-use-generic-class-or-interface-in-another-generic-class-or-interface-w1How to use generic class (or interface) in another generic class (or interface) with the same data type parameters without castingSergey2009-11-22T14:30:30Z2009-11-22T15:26:51Z
<p>I need the Cache class that keep the <code><TKey key, TValue value></code> pairs. And it is desirable that <code>TKey</code> can be any class that supports <code>Serializable</code> interface and <code>TValue</code> can be any class that supports <code>Serializable</code> and my own <code>ICacheable</code> interfaces.</p>
<p>There is another <code>CacheItem</code> class that keeps <code><TKey key, TValue value></code> pair.
I want the Cache class has the <code>void add(CacheItem cacheItem)</code> method. Here is my code:</p>
<pre><code>public class Cache<TKey extends Serializable,
TValue extends Serializable & ICacheable >
{
private Map<TKey, TValue> cacheStore =
Collections.synchronizedMap(new HashMap<TKey, TValue>());
public void add(TKey key, TValue value)
{
cacheStore.put(key, value);
}
public void add(CacheItem cacheItem)
{
TKey key = cacheItem.getKey();
//Do not compiles. Incompatible types. Required: TValue. Found: java.io.Serializable
TValue value = (TValue) cacheItem.getValue();
//I need to cast to (TValue) here to compile
//but it gets the Unchecked cast: 'java.io.Serializable' to 'TValue'
add(key, value);
}
}
</code></pre>
<p>In another file:</p>
<pre><code>public class CacheItem<TKey extends Serializable,
TValue extends Serializable & ICacheable>
{
TKey key;
TValue value;
public TValue getValue()
{
return value;
}
public TKey getKey()
{
return key;
}
}
</code></pre>
<p>Is there anything I could do to avoid casting? Many thanks for answers.</p>
http://stackoverflow.com/questions/1778818/what-is-the-class-of-listfoo-in-java2What is the Class Of List<Foo> in Java?ripper2342009-11-22T14:20:33Z2009-11-22T14:46:18Z
<pre><code>Class c = List<Foo>.class
</code></pre>
<p>doesn't seem to work.</p>
http://stackoverflow.com/questions/1776224/server-command-via-ajax-interface0Server command via AJAX interfaceLopoc2009-11-21T18:01:44Z2009-11-22T13:09:58Z
<p>Hi</p>
<p>I'm new on AJAX. Just for fun I'm trying to control my sever via an AJAX interface.
It's quite easy, for instance in PHP, to send a command to the server by the system() function and just a text field and a submit button.</p>
<p>The thing I'd like to do is to control in realtime some action, for example controlling music volume by a web interface, with a simple slide without any submit button.</p>
<p>Don't care about the way to control volume, is just a piece of example, imagine it like a php system() function.</p>
<p>WELL the question is:
How can I implement such a remote control system**?** (The server is the machine that in this single case hosts the webserver).</p>
http://stackoverflow.com/questions/90851/is-it-just-me-or-are-interfaces-overused75Is it just me or are interfaces overused?Mike Stone2008-09-18T08:07:18Z2009-11-21T16:04:15Z
<p>Ok, I may resort to a tad ranting here, so let me apologize in advance, but I'm really curious if others find this pattern annoying too (and I wonder if it is a justifiable pattern)…</p>
<p>So, after just looking at a <a href="http://stackoverflow.com/questions/90657/mocking-method-results">particular question</a>, I noticed that almost all of the responses suggested creating an interface for injecting a mock in some test code.</p>
<p>I don't mind using interfaces, and sometimes they can really help in static typed languages like C# and Java… but I do mind seeing interfaces for almost every class in a system (or in general being used where they aren't really needed).</p>
<p>I have 2 major problems with using an interface when it isn't called for:</p>
<ul>
<li>You abstract away where the implementation is coming from. This problem has a couple consequences… in an IDE, it means that when I try to browse to the source of this method being called… I get taken to an interface instead of some code that I can look at and see what is going on. This bothers me a lot, but also this is a real problem to me to hide where the implementation is coming from (sometimes it can be in non-obvious locations).</li>
<li>It adds ANOTHER file to the system. I tend to be a minimalist in my programming… if I don't really need another method, or another class, or even another file… not unless that extra thing is justified (flexibility that is going to be used, or makes the design cleaner, or provides some real benefit).</li>
</ul>
<p>Now… if you are testing something, and you create an interface JUST TO ALLOW MOCKING… this seems to be adding a layer of minor headaches for no real benefit. What does creating the interface do that just overriding the class won't do? What is so bad about having a mock that merely overrides some methods of the single implementation class?</p>
<p>I guess it should be no surprise then that I much prefer Java's default virtual methods (ie requiring a final keyword to have a method that CAN'T be overriden) to C#'s default final methods… and I also tend to avoid the final keyword on methods and classes too.</p>
<p>So is there something to using interfaces that I am missing? Is there some hidden benefit of using an interface when you have 1 version of a class and no immediate need to create an interface?</p>
http://stackoverflow.com/questions/1500632/does-an-abstract-class-work-with-structuremap-like-an-interface-does0Does an abstract class work with StructureMap like an interface does?Andrew Siemer2009-09-30T20:59:24Z2009-11-21T15:00:03Z
<p>I am a big fan of StructureMap and use it in just about everything I do. I have only ever used it with interfaces though. I was wondering if anyone had any experience using with abstract classes? or...does it not support that type of wiring? If you got this to work can you post an example?</p>
<p>Thanks!</p>