Java Code
Write a program that asks the user to enter a string and then converts that string to Morsecode. Morse code is a code where each letter of the English alphabet, each digit, and variouspunctuation characters are represented by a series of dots and dashes. Table 8-15 showspart of the code.
MOST IMPORTANT ( Note: use a parallel array of char[] and String[] to keep the mapping between ASCII and Morse codes )
Additional requirements:
1. Need to have proper design ( UML with Flowchart) via Dia app. Flowchart should be drawn for each method in UML.
2. Proper comments.
3.Proper doc-string describing each method in code.
4.Proper Documentation should be for the code.