thespeedracer38

WordDocumentHandler

Apr 11th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. /**
  2.  *
  3.  * @author Ranajoy
  4.  */
  5. public class WordDocumentHandler implements FileHandler {
  6.     @Override
  7.     // Provide specific instructions to open Word Files
  8.     public void open(String filename){
  9.         System.out.println(filename + " is displayed by Word Document Handler");
  10.     }
  11. }
Add Comment
Please, Sign In to add comment