summaryrefslogtreecommitdiffstats
path: root/sd-plugin/src/main/java/org/intellij/sdk/language/psi/SdDeclaration.java
blob: 25ef64b8936b52e156c781b91902d9406a84d5f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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;

/**
 * This interface represents a declaration in the SD language.
 * @author shahariel
 */
public interface SdDeclaration extends PsiElement, PsiNamedElement, NavigationItem {
    String getName();
    
    String getTypeName();
    
    SdDeclarationType getType();

}