ceylon.language.meta.model.InterfaceModel.ceylon Maven / Gradle / Ivy
import ceylon.language.meta.declaration {
InterfaceDeclaration
}
"An interface model represents the model of a Ceylon interface that you can inspect.
An interface model can be either a toplevel [[Interface]] or a member [[MemberInterface]].
"
shared sealed interface InterfaceModel
satisfies ClassOrInterface {
"The declaration model of this class,
which is necessarily an [[InterfaceDeclaration]]."
shared formal actual InterfaceDeclaration declaration;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy