Note: information on this page refers to Ceylon 1.2, not to the current release.
abstract
annotation
The abstract
annotation marks a class as not being instantiable.
Usage
The annotation is applied to the class definition:
abstract class Foo() {
}
Description
abstract
classes may have formal
members.
See also
- API documentation for
abstract
- Reference for annotations in general