/* All Java variables must be identified with unique names. * These unique names are called identifiers. * Identifiers can be short names or more descriptive names int minutesPerHour = 60; // Instead ...
The Java mode currently uses a qualified_id regex to scope identifiers. This has two problems. First, it doesn't allow fully-qualified identifiers to split across lines (which is valid in Java).