Is there a max length for class/method/variable names in Java? the JLS doesn\'t seem to mention that. I know very long names are problematic anyway from code readability and
Sorry, actually found the answer in the JLS: http://java.sun.com/docs/books/jls/third_edition/html/lexical.html#40625 It seems that identifier names are of unlimited length.
Also found similar question (though it didn't appear in my initial search, or when I typed the question title which is weird): Maximum Method Name Length