mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
22 lines
419 B
Java
22 lines
419 B
Java
// This is a generated file. Not intended for manual editing.
|
|
package com.simpleplugin.psi;
|
|
|
|
import com.intellij.navigation.ItemPresentation;
|
|
import com.intellij.psi.PsiElement;
|
|
|
|
public interface SimpleProperty extends SimpleNamedElement {
|
|
|
|
String getKey();
|
|
|
|
String getValue();
|
|
|
|
String getName();
|
|
|
|
PsiElement setName(String newName);
|
|
|
|
PsiElement getNameIdentifier();
|
|
|
|
ItemPresentation getPresentation();
|
|
|
|
}
|