What is a method interface stub?

I’m reading the user guide on adding classes with a shared library (p. 277) and it states that LinkDef.h “tells rootcint for which classes to generate the method interface stubs.” What is a method interface stub?

The stub is a piece of code automatically generated by rootcint that will allow you to call the methods of the class from the interpreter.

Rene