Change tooltip message for protected static methods from java

This commit is contained in:
Natalia.Ukhorskaya
2013-02-06 12:41:38 +04:00
parent 7f28540e62
commit 2862d13cb1
2 changed files with 5 additions and 2 deletions
@@ -314,7 +314,10 @@ public class DescriptorRendererImpl implements DescriptorRenderer {
if ("package".equals(visibility.toString())) {
builder.append("public/*package*/ ");
}
else {
else if ("protected_static".equals(visibility.toString())) {
builder.append("protected/*protected static*/ ");
}
else{
builder.append(renderKeyword(visibility.toString())).append(" ");
}
}
@@ -3,7 +3,7 @@ package test
public open class ConstructorInProtectedStaticNestedClass : java.lang.Object {
public constructor ConstructorInProtectedStaticNestedClass()
protected_static open class Inner : java.lang.Object {
protected/*protected static*/ open class Inner : java.lang.Object {
protected constructor Inner()
}
}