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