org.opalj.fpcf.properties
NotInstantiable should be used for not instantiable classes.
public class Foo { private Foo(){} }
Foo is not instantiable because it can not be instantiated except by Foo itself which does never call the private constructor.
NotInstantiable should be used for not instantiable classes.
Foo is not instantiable because it can not be instantiated except by Foo itself which does never call the private constructor.