All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ceylon.language.meta.model.InterfaceModel.ceylon Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
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