Boris Pavlović
Boris Pavlović

Reputation: 64622

How to get method count in a type (interface/class/enum) in Eclipse?

I want to know how many methods an interface declares or a class/enum implements. How to get that in Eclipse?

Upvotes: 3

Views: 4631

Answers (1)

VonC
VonC

Reputation: 1323115

A plugin like metrics could give you that:

Metrics View


The eclipse-metrics plugin (another one) provided also a similar metric (Weighted Methods per Class)

Cyclomatic Calculator

Upvotes: 7

Related Questions