reply to post by cluckerspud
"Stub" is a programming term. When you design a sophisticated piece of software, it is useful that stubs for all of the functions or methods that
will need to be written are automatically generated. For example:
public function doSomething (param1, param2) {
}
public function doSomethingElse (param1, param2) {
}
... would be stubs for two functions, doSomething and doSomethingElse, which have not yet been written. The actual code goes between the curly braces.
As a programmer, I don't have to worry whether I have included all of the necessary functions or whether and which parameters they require, since the
stubs provide that information.