This commit is contained in:
Alexey Kudravtsev
2011-02-17 14:00:15 +03:00
parent 1f8283df9b
commit e4a7d40de9
@@ -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 <code>type</code> can be assigned to rvalues of this type.
* @return true if values of type <code>type</code> can be assigned to rvalues of this type.
*/
public boolean isAssignableFrom(@NotNull PsiType type) {
return TypeConversionUtil.isAssignable(this, type);