Well the thread (that is the object) itself needs some space - it does have a dozen or so variables and objects (and I'm way too lazy to count them correctly) but it should be little more than maybe 200byte (you'd basically have to count all primitives and references [trivial, those have fixed sizes - but references depend on your VM] and then compute the size of all objects that are allocated by the class [the hotspot VM has an overhead of 2 words per object (3 if there are no local variables in the object) and allocates on an 8byte boundary])
What really takes space is the thread local stack and that can be affected by the -Xss flag to the VM (although note that every OS has some limitations to the maximum stackspace, you can influence this with -ulimit in linux and surely somehow in windows as well).
The defaults for hotspot are as follows:
In Java SE 6, the default on Sparc is
512k in the 32-bit VM, and 1024k in
the 64-bit VM. On x86 Solaris/Linux it
is 320k in the 32-bit VM and 1024k in
the 64-bit VM.
On Windows, the default thread stack
size is read from the binary
(java.exe). As of Java SE 6, this
value is 320k in the 32-bit VM and
1024k in the 64-bit VM.