mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
stubs for annotation parameters
This commit is contained in:
@@ -36,7 +36,7 @@ public interface PsiNameValuePair extends PsiElement {
|
||||
ArrayFactory<PsiNameValuePair> ARRAY_FACTORY = new ArrayFactory<PsiNameValuePair>() {
|
||||
@Override
|
||||
public PsiNameValuePair[] create(final int count) {
|
||||
return count == 0 ? PsiNameValuePair.EMPTY_ARRAY : new PsiNameValuePair[count];
|
||||
return count == 0 ? EMPTY_ARRAY : new PsiNameValuePair[count];
|
||||
}
|
||||
};
|
||||
|
||||
@@ -56,6 +56,9 @@ public interface PsiNameValuePair extends PsiElement {
|
||||
@Nullable @NonNls
|
||||
String getName();
|
||||
|
||||
@Nullable
|
||||
String getLiteralValue();
|
||||
|
||||
/**
|
||||
* Returns the value for the element.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user