A class model represents the model of a Ceylon class that you can instantiate and inspect.
A class is a toplevel type, declared on a package.
This is a ClassModel that you can also invoke to instantiate new instances of the class:
shared class Foo(String name){
shared String hello => "Hello "+name;
}
void test(){
Class<Foo,[String]> c = `Foo`;
// This will print: Hello Stef
print(c("Stef").hello);
}
no type hierarchy
no subtypes hierarchy
| Attributes | |
defaultConstructor | Source Codeshared formal CallableConstructor<Type,Arguments>? defaultConstructorA model of the default constructor (for a class with constructors) or class initializer (for a class with a parameter list), or null if the class has constructors, but lacks a default constructor. Refines ClassModel.defaultConstructor |
| Inherited Attributes |
Attributes inherited from: Object |
Attributes inherited from: ClassModel<Type,Arguments> |
Attributes inherited from: ClassOrInterface<Type> |
Attributes inherited from: Declared |
Attributes inherited from: Generic |
Attributes inherited from: Model |
| Methods | |
getConstructor | Source Codeshared formal CallableConstructor<Type,Arguments>|ValueConstructor<Type>? getConstructor<Arguments>(String name)The constructor with the given name, or null if this class lacks a constructor of the given name. Refines ClassModel.getConstructor |
| Inherited Methods |
Methods inherited from: Object |
Methods inherited from: Applicable<Type,Arguments> |
Methods inherited from: ClassModel<Type,Arguments> |
Methods inherited from: ClassOrInterface<Type>getAttribute(), getAttributes(), getClass(), getClassOrInterface(), getClasses(), getDeclaredAttribute(), getDeclaredAttributes(), getDeclaredClass(), getDeclaredClassOrInterface(), getDeclaredClasses(), getDeclaredInterface(), getDeclaredInterfaces(), getDeclaredMethod(), getDeclaredMethods(), getInterface(), getInterfaces(), getMethod(), getMethods() |
Methods inherited from: Type<Target> |