I'm looking at some code online, and there's this function:
delay(1000 * 4);
It doesn't appear to be associated with an object.
One of the objects in the code extends
Thread, which doesn't have a delay() function.
At any rate, this line is outside of any class code.
I've searched for a
java function index on the internet and haven't been able to
find one. Googling the function itself doesn't bring up anything.
Is this a static method? Where's the documentation on it?