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

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

There is a newer version: 1.3.3
Show newest version
import ceylon.language.meta.declaration{
    Declaration,Package
}
"A model element that has a declaration."
shared sealed interface Declared {
    
    "The declaration model of this model."
    shared formal Declaration declaration;
    
    "The container type of this model, or `null` if this is a toplevel model."
    shared formal Type<>|Package? container;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy