Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Quick way to add all @Overrides in a file

Hi Marc,
Alternatively, you may choose to add the @Override annotations automatically on Save. You can set Save Actions in Preferences for Java Editor. This way you would not need to worry to even remember about those. I would suggest to fix them in a separate commit en masse though.

Thanks,
Andrew

On Mon, Jan 16, 2012 at 11:23 AM, Marc Khouzam <marc.khouzam@xxxxxxxxxxxx> wrote:
Hi,

Sorry to those that know this already.

Committers might have noticed that now that we use Java 6 for CDT,
methods that implement an interface method now require an @Override
annotation.  So there are a bunch of new warnings that those annotations
are missing.

As you make changes to files, you may want to add those annotations.
A quick way to do this is to use the quick fix (click on warning icon and
choose the fix that adds the annotation) while pressing the Ctrl key at the
same time.  Thanks the the Ctrl key being pressed, JDT will fix _all_ similar
warnings in that file.  Super quick fix :)

Hope it helps

Marc

_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev


Back to the top