When someone is learning about your framework or library, they will often do so via API documentation. In the API documentation, you will document the public types that make up your API. If you have a lot of API, like we do in the Spring Framework, you will end up with a lot of documentation.

But not all the documentated types are equally important for people just getting started; new users typically only care about one or two central classes or interfaces. And within the API documentation of those types, there will be one or two methods or constructors that form the main entry point to that class. These central types and methods are the doorway into your API. The rest of the classes are typically related to these doorway types, in so far that they might customize their behaviorsomehow, so you will only need to know about them later, if at all.

Many doors

But how do you make these special doorways stand out among their peers?

In Spring Framework, we solve this problem quite simply, by making the doorways bold in Javadoc. This, for instance, is the package description of org.springframework.jdbc.core. It is an old package, containing arguably too many types, and yet it remains quite easy to find the central class that 99% of the people care about: JdbcTemplate. We do this in other places too, for instance in Spring Web Services.



Published

24 May 2016

Tags