summaryrefslogtreecommitdiffstats
path: root/sd-plugin/src/main/java/org/intellij/sdk/language/psi/SdNamedElement.java
blob: bd74a87b551fb7113cc5fd1b3f8049b6e504c232 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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.psi.PsiNameIdentifierOwner;

/**
 * This interface is used to wrap a Psi Element with SdNamedElement interface, which enables the element to be a
 * "name owner" (like an identifier). It allows the element to take a part in references, find usages and more.
 * @author shahariel
 */
public interface SdNamedElement extends PsiNameIdentifierOwner {
    
}