From e4a7d40de9602d28184425023a93947686820c53 Mon Sep 17 00:00:00 2001 From: Alexey Kudravtsev Date: Wed, 16 Feb 2011 16:47:51 +0300 Subject: [PATCH] javadoc --- java/openapi/src/com/intellij/psi/PsiType.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/openapi/src/com/intellij/psi/PsiType.java b/java/openapi/src/com/intellij/psi/PsiType.java index 5c70c8a21576..d52949c5f6d6 100644 --- a/java/openapi/src/com/intellij/psi/PsiType.java +++ b/java/openapi/src/com/intellij/psi/PsiType.java @@ -61,7 +61,7 @@ public abstract class PsiType implements PsiAnnotationOwner { } /** - * Returns text of this type that can be presented to user. + * @return text of this type that can be presented to user. */ public abstract String getPresentableText(); @@ -79,7 +79,7 @@ public abstract class PsiType implements PsiAnnotationOwner { public abstract boolean isValid(); /** - * Checks whether values of type type can be assigned to rvalues of this type. + * @return true if values of type type can be assigned to rvalues of this type. */ public boolean isAssignableFrom(@NotNull PsiType type) { return TypeConversionUtil.isAssignable(this, type);