views:

163

answers:

1

I'd like to have a shortcut to create an implementation of an interface. Example: right click on an interface file, choose "implement", insert class name. Is there something like this in NetBeans (6.8)?

+1  A: 

There is not that i know of, any function exactly like you want.

Have you tried using alt + ins and choose "Implement method", this allows you to select the methods to implement.

Or click the lightbulb on the class definition line and choose "Implement all methods"

Peter Lindqvist