summaryrefslogtreecommitdiffstats
path: root/sd-plugin/src/main/java/org/intellij/sdk/language/psi/SdDeclaration.java
blob: 32c943909a2571a5d31ff8420c689ca086c69221 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package org.intellij.sdk.language.psi;

import com.intellij.navigation.NavigationItem;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiNamedElement;

public interface SdDeclaration extends PsiElement, PsiNamedElement, NavigationItem {
    String getName();
    
    String getTypeName();
    
    SdDeclarationType getType();

}