|
Thanks ;-)
Try
to hit <ctrl>+<i> inside the class after you have typed
"implements MyInterface".
Select the methods to implement you will have your stubs. (There is a
similar <ctrl>+<o> to get stubs for overrriding methods in super
class.)
/Christian
Can IDEA automatically generate method stubs
when I implement an interface?
eg:
class TestContentHandler implements
ContentHandler {
public void
setDocumentLocator(Locator locator)
{
}
.....
}
Thanks.
Patrick
|