From 6aa8aa8b12039bb75f2d47fba61b0cf509ba3a29 Mon Sep 17 00:00:00 2001 From: peter Date: Thu, 13 Nov 2014 15:22:50 +0100 Subject: [PATCH] fix PsiJavaParserFacade.createClassFromText javadoc --- .../src/com/intellij/psi/PsiJavaParserFacade.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/java-psi-api/src/com/intellij/psi/PsiJavaParserFacade.java b/java/java-psi-api/src/com/intellij/psi/PsiJavaParserFacade.java index c325fa8d51f0..f35883aee5fe 100644 --- a/java/java-psi-api/src/com/intellij/psi/PsiJavaParserFacade.java +++ b/java/java-psi-api/src/com/intellij/psi/PsiJavaParserFacade.java @@ -48,9 +48,9 @@ public interface PsiJavaParserFacade { PsiDocComment createDocCommentFromText(@NotNull String docCommentText) throws IncorrectOperationException; /** - * Creates a Java class from the specified text. + * Creates a Java class with a dummy name from the specified body text (the text between the braces). * - * @param text the text of the class to create. + * @param text the body text of the class to create. * @param context the PSI element used as context for resolving references which cannot be resolved * within the class. * @return the created class instance.