aboutsummaryrefslogtreecommitdiffstats
path: root/sd-plugin/src/main/java/org/intellij/sdk/language/psi/SdIdentifier.java
blob: 27009e9369ccd7c60e78a036b448589f217401db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.intellij.sdk.language.psi;

import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiReference;
import org.jetbrains.annotations.NotNull;

public interface SdIdentifier extends PsiElement {
    
    String getName();
    
    boolean isFunctionName(PsiElement file);
    
    @NotNull PsiReference getReference();
    
}