I have a public abstract class named EmployeeFileProcessor, which is also what I am trying to instantiate. How would I easily fix this code so that I can instantiate this?
public abstract class EmployeeFileProcessor
{
    public static void main(String[] args) throws Exception
    {   
        EmployeeFileProcessor process = new EmployeeFileProcessor();
        //Non important code here
        process.writeFullTimeEmployee(user_input1, FtCollection[0]);
        //Defined in another class (method writeFullTimeEmployee)
        process.readFulltimeEmployee(user_input1);
        //Defined in another class (method readFullTimeEmployee)
    }
}
How would I be able to use the 'process'?
 
     
     
    