Answered step by step
Verified Expert Solution
Question
1 Approved Answer
public class DMSConverter implements Converter{ DMSCoordinate DMSObj; DecimalCoordinate convertedObj; public DMSConverter() { this.DMSObj = new DMSCoordinate(); } public DMSConverter(DMSCoordinate DMSObj) { this.DMSObj = DMSObj; }
public class DMSConverter implements Converter{ DMSCoordinate DMSObj; DecimalCoordinate convertedObj; public DMSConverter() { this.DMSObj = new DMSCoordinate(); } public DMSConverter(DMSCoordinate DMSObj) { this.DMSObj = DMSObj; } public DMSConverter(String latAndLong) { DMSObj = new DMSCoordinate(latAndLong); } public DecimalCoordinate getConvertedObj() { return convertedObj; } public void convert() { //TODO Student convertedObj = new DecimalCoordinate(); //This line will also be changed. } }Method Details getConvertedObj public DecimalCoordinate getConverted0bj ( ) Returns convertedObj. convert public void convert() Implements the convert() method from the Converter interface. Should take the DMSObj and convert that to a DecimalCoordinate, once converted, set convertedObj to the new DecimalCoordinate. Remember all of the useful getters included with the DMSCoordinate class. When creating and setting the convertedObj, I would recommend to use the DecimalCoordinate(double, double) constructor. A helpful graphic of the formula in action is in the GitHub README, and a link to an explanation is available in the README. Specified by: convert in interface Converter
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started