0
votes
7answers
271 views
Java : How to create a function that can only accept object which is an Interface?
I need to write a function that accepts an object , but I want to enforce in the function call (not after the function is called) that the object is an interface.
Meaning , I want …
0
votes
6answers
94 views
C#-Events of interface practical use
Can you give a good example of the power of interface -events (declaring events inside interface)?Most of the times i have seen only public abstract methods inside interface.
Than …
3
votes
10answers
169 views
toString(), equals(), and hashCode() in an interface…
So, I have an interface with a bunch of methods that need to be implemented, the method names are irrelevant.
The objects that implement this interface are often put into collecti …
5
votes
4answers
106 views
XCode: Possible to auto-create stubs for methods required by Protocol interface?
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 'Overri …
0
votes
4answers
84 views
Java interface static method workaround?
We have a given REST interface:
POST /calculation
<data>abc</data>
This calculation can be implemented by different logical "calculators" depending on the server con …
0
votes
2answers
96 views
interface Vs abstractclass class [closed]
Possible Duplicates:
Abstract class and Interface class?
Why are interfaces preferred to abstract classes?
Java interface vs. abstract class
Need for abs …
0
votes
3answers
122 views
Interface Inheritance in C++
I have the following class structure:
class InterfaceA
{
virtual void methodA =0;
}
class ClassA : public InterfaceA
{
void methodA();
}
class InterfaceB : public Interfa …
0
votes
3answers
71 views
Useful Inheritance in Python resp. Alternative for interfaces
Hi as far as I see in Python variables are untyped. So now I want to have a baseclass
class baseClass:
def x():
print "yay"
and two subClasses
class sub1(baseClass):
def x …
0
votes
3answers
55 views
Determining child interface closest to a class
Lets say I have a inheritance tree of interfaces:
IParent > IChild > IGrandChild
How would I:
Find a class that implements IParent
Determine the closest ancestor of the class t …
2
votes
17answers
245 views
Compile a Java class against an interface even if none was specified
I'm teaching an intro to programming course and we're using Java. I want to help the students learn how to translate a written class specification into a working program. I will pr …
1
vote
1answer
18 views
Property & Private & extended class combination confusion of interface
I have downloaded a sample code of AA-Plot Chart.
One of the .h files:
@interface MainViewController : UIViewController <APYahooDataPullerDelegate, CPPlotDataSource> {
…
1
vote
3answers
58 views
Hibernate One-to-one Mapping with interface.i need advice
hello good people
i'm developping an application where all the pojos are exposed as interface but we map the real implementation class.we are using spring and JPA annotation.i'm ab …
-2
votes
3answers
55 views
How to write Audit methods in Java?
Hi folks,
As my java application increases in complexity i want to write audit methods to make sure that i am doing the right thing.
How can i do it in java?
thx
0
votes
2answers
85 views
Why can’t you cast from IList<IParent> to IList<IChild> where IChild implements IParent [closed]
Possible Duplicate:
IList<Type> to IList<BaseType>
I am programming in C# using .NET 2.0 and I don't understand why the cast below results in a null reference. …
3
votes
4answers
108 views
Can I force an implementing class to return an object of its own type?
I want to make an interface in C# that defines a method that always returns an object of the implementing class, thus:
public interface IParser {
IParser Parse(string s);
}
p …
