java programming
You will be given two interfaces and two abstract classes,
FileTextReader, FileTextWriter,
AbstractFileMonitor, and AbstractDictionary. Your job is
to create two classes the first class should be named
FileManager, the second class should be named
Dictionary. The FileManager will implement the
interfaces FileTextReader and FileTextWriter and
extend the clas AbstractFileMonitor. Your class signature
would look something like the following:
public class FileManager extends AbstractFileMonitor implements FileTextReader, FileTextWriter{...
The constructor signature of the FileManager should
look like the following:...