aboutsummaryrefslogtreecommitdiffstats
path: root/integration/intellij/src/main/java/ai/vespa/intellij/schema/psi/SdNamedElement.java
blob: 0cd7cedc967b8caa5111b51b9dcb4b0df0ae8107 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.intellij.schema.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 Shahar Ariel
 */
public interface SdNamedElement extends PsiNameIdentifierOwner {
    
}