0
votes
4answers
64 views
Class implementations in interface dll?
Hello,
my problem: Inside an application, all interfaces are declared inside an own dll(project "interfaces", for example).
Inside project interfaces, there are many class implementations, too.
Now …
0
votes
5answers
92 views
Where should interfaces and other dependencies go in C#?
By other dependencies I mean abstract classes, and anything else.
I have a project in the form of a dll which needs a certain interface, IInput. A test project requires this interface as well, so I …
4
votes
1answer
65 views
Forcing F# type inference on generics and interfaces to stay loose
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 …
1
vote
2answers
67 views
Why? Redeclare things to implement interfaces?! in VB.NET
Hello, experts.
I work in VB.NET v2
I have an interface IMyInterface and this interface implements a method MyMethod.
I have an object MyObjectBase. This object contains a(the same) method …
2
votes
4answers
57 views
.NET Framework built-in interfaces, recommendations when building a custom data structure?
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 …
2
votes
1answer
83 views
Using is operator with Interface to Generics
Guys,
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 …
1
vote
4answers
53 views
How to get a base class method return type to be the subclass type?
I have a copy function that I'd like to override in subclasses to return the type of the subclass. Here are my interfaces:
Public Interface IBase(Of T)
Function Copy() As T
End Interface
Public …
0
votes
5answers
147 views
Connection and Collection Interfaces in Java
Which class implements all the Connection Interfaces which are in javax.microedition.io package and how?
And in the same way which class implements the some of Collection interfaces like Iterator …
1
vote
2answers
43 views
C#: Generic interfaces and understanding “type parameter declaration must be an identifier not a type”
I'm trying to understand the generic interface as described in this
My example has an interface:
public interface ITest<T> where T: class
{
T GetByID(int id);
}
I have a class that …
0
votes
1answer
27 views
Serializable class inheriting from an Interface with a property of its own type
I have an interface, with a definintion for a property that is the same type as the interface.
public interface IMyInterface
{
IMyInterface parent
{
get;
set;
}
}
Now …
0
votes
1answer
32 views
Abstract enum a annotation attribute type
Hi,
I have an interface which multiple enums are implementing, i.e
public interface MinorCodes {
public abstract int code();
public abstract String description();
}
public enum …
0
votes
1answer
35 views
are scenarios/stories the new interface in BDD/TDD?
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 …
0
votes
1answer
63 views
Creating good interfaces, what should be included and what should be left out
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 …
6
votes
7answers
111 views
Where to put the interfaces in a component based architecture?
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 …
0
votes
1answer
39 views
Dynamically implement interface in Groovy using invokeMethod
Groovy offers some really neat language features for dealing with and implementing Java interfaces, but I seem kind of stuck.
I want to dynamically implement an Interface on a Groovy class and …
