Repository where I mostly put random python scripts.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
320 B

  1. /**
  2. * Simple method to be used by the task manager to do
  3. * file io.
  4. *
  5. * @author Jeffery Russell
  6. */
  7. public class ReadTask
  8. {
  9. private String fileName;
  10. public ReadTask(String fileName)
  11. {
  12. this.fileName = fileName;
  13. }
  14. public void runTask()
  15. {
  16. FileReader.readFile(fileName);
  17. }
  18. }