Question: Write a class Lines containing a static method dashedLine to draw dashed lines, so it can write:
Lines,dashedLine(g, xA, yA, xB, yB, dashLength);
Where g is a variable of type Graphics, xA, yA, xB, yB are the device coordinates of the endpoints A and B, anddashLength is the desired length (in device coordinated) of a single dash.
There should be a dash, not a gap, at each endpoint of a dashed line.
Make this program using java programming. Make this application in simple way.