http://docs.oracle.com/javase/specs/jls/se7/html/jls-14.html
14.4.1. Local Variable Declarators and Types
Each declarator in a local variable declaration declares one local variable, whose name is the Identifier that appears in the declarator.
{
int x = 10;
}
Which part of local variable declaration statement is is the declarator?
xwould be the declarator,intwould be the type, and= 10would be the initialization. You could have more than 1 declarator by codingint x, y. - Luiggi Mendoza