How to run a anonymous method from class .

Like I have 3 different panels which have multiple method but those panel implements from a interface so all have same methods. Now if I want to call those method using generics , how can I do that?

link|improve this question
2  
can you put some code that you wrote ?! – FGraviton Dec 21 '11 at 7:49
feedback

closed as not a real question by Will Dec 21 '11 at 14:23

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

I don't know what it is exactly that you mean (some code might help), but basically you just define the generics on the interface and the concrete type on the panels:

interface MyInterface<T> { ... }

class StringPanel extends JPanel implements MyInterface<String> { ... }

The rest is up to you.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.