I want to be able to instantiate an employee class (so this can not be abstract) and have an abstract salary attribute that will be static for each employee type.
I can do (in the official class):
private abstract int salario;
and its subclasses:
private static int salario = x,
where x is the value that I want to be for each subclass?