ApplicationManager.getApplication().assertReadAccessAllowed();
if (text == null) return false;
Lexer lexer = new ClojureFlexLexer();
lexer.start(text, 0, text.length(), 0);
if (lexer.getTokenType() != ClojureTokenTypes.symATOM) return false;
lexer.advance();
return lexer.getTokenType() == null;
}
}