Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
12answers
2k views

internal member in an interface

I have a list of objects implementing an interface, and a list of that interface: public interface IAM { int ID { get; set; } void Save(); } public class concreteIAM : IAM { public int ...
4
votes
3answers
3k views

Mocking a concrete class using easymock

Is it possible? How do I do it?
2
votes
4answers
35 views

Returning interface but concrete may have properties not on the interface, can I get them with a cast?

I have a feeling that my use of an interface is incorrect. I know that an interface is a contract that the concrete class has to adhere to. So I will explain the problem I am trying to solve and ...
1
vote
4answers
320 views

.NET: Select concrete classes using config file

(This question specifically in C#, but applies generally to .NET) I have a largish application that has a fairly good design, and is broken into major sections over interfaces (this was done to ...
0
votes
2answers
192 views

Concrete Class implements a interface. Typecasted to Interface later. How does JVM recognize the Typecasted instance?

A Concrete class typecasted to interface, does JVM still consider it a instance of concrete class ?