• public boolean validCommand(CommandStack stack) o Returns whether this Command is valid and can be added to the given CommandStack. Specific behavior will be outlined in the followi • public String toString() o Returns the String representation of this Command in long form (for current screen display) • public String toShortString() o Returns the String representation of this Command in short form (for stack display)

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
Command
Write a fully-documented interface named Command to represent each command entered on the phone app. The Command interface will require the following
methods:
public boolean validCommand(CommandStack stack)
o Returns whether this Command is valid and can be added to the given CommandStack. Specific behavior will be outlined in the following classes.
• public String toString()
o Returns the String representation of this Command in long form (for current screen display)
• public String toShortString()
o Returns the String representation of this Command in short form (for stack display)
Map Commands
• FindPlace implements Command
o Write a fully-documented class named FindPlace to represent the "F: Find a place" command for the Maps app. This class requires the following
properties (with NO mutators, However, accessors are allowed) and methods:
1 private String destination
public FindPlace(Scanner scanner)
• Constructs this FindPlace instance accordingly using the Scanner.
- public boolean validCommand(CommandStack stack)
• Returns whether or not pushing this FindPlace command will be valid for the given stack.
- public String toString()
• Returns the String representation of this Command in long form (for current screen display)
- public String toShortString()
• Returns the String representation of this Command in short form (for stack display)
• PlanRoute implements Command
o Write a fully-documented class named PlanRoute to represent the "P: Plan a route" command for the Maps app. This class requires the following
properties (with NO mutators, However, accessors are allowed) and methods:
1 private String source
- private String destination
- public PlanRoute(Scanner scanner)
• Constructs this PlanRoute instance accordingly after reading input from the scanner.
i public boolean validCommand(CommandStack stack)
• Returns whether or not pushing this PlanRoute command will be valid for the given stack.
- public String toString()
• Returns the String representation of this Command in long form (for current screen display)
- public String toShortString()
• Returns the String representation of this Command in short form (for stack display)
Transcribed Image Text:Command Write a fully-documented interface named Command to represent each command entered on the phone app. The Command interface will require the following methods: public boolean validCommand(CommandStack stack) o Returns whether this Command is valid and can be added to the given CommandStack. Specific behavior will be outlined in the following classes. • public String toString() o Returns the String representation of this Command in long form (for current screen display) • public String toShortString() o Returns the String representation of this Command in short form (for stack display) Map Commands • FindPlace implements Command o Write a fully-documented class named FindPlace to represent the "F: Find a place" command for the Maps app. This class requires the following properties (with NO mutators, However, accessors are allowed) and methods: 1 private String destination public FindPlace(Scanner scanner) • Constructs this FindPlace instance accordingly using the Scanner. - public boolean validCommand(CommandStack stack) • Returns whether or not pushing this FindPlace command will be valid for the given stack. - public String toString() • Returns the String representation of this Command in long form (for current screen display) - public String toShortString() • Returns the String representation of this Command in short form (for stack display) • PlanRoute implements Command o Write a fully-documented class named PlanRoute to represent the "P: Plan a route" command for the Maps app. This class requires the following properties (with NO mutators, However, accessors are allowed) and methods: 1 private String source - private String destination - public PlanRoute(Scanner scanner) • Constructs this PlanRoute instance accordingly after reading input from the scanner. i public boolean validCommand(CommandStack stack) • Returns whether or not pushing this PlanRoute command will be valid for the given stack. - public String toString() • Returns the String representation of this Command in long form (for current screen display) - public String toShortString() • Returns the String representation of this Command in short form (for stack display)
o Write a fully-documented class named StartNavigation to represent the "N: Start Navigation" command for the Maps app. This class requires the
following properties (with NO mutators, However, accessors are allowed) and methods:
1 private String source
1 private String destination
public StartNavigation (CommandStack commandStack)
• Constructs this StartNavigation instance accordingly after grabbing navigation information from the last instruction
- public boolean validCommand(CommandStack stack)
• Returns whether or not pushing this StartNavigation command will be valid for the given stack.
• This cannot be placed on top of another StartNavigation command or an empty stack
public String toString()
• Returns the String representation of this Command in long form (for current screen display)
- public String toShortString()
• Returns the String representation of this Command in short form (for stack display)
Safari Commands
• GoogleSomething implements Command
o Write a fully-documented class named GoogleSomething to represent the "G: Google something" command for the Safari app. This class requires
the following properties (with NO mutators, However, accessors are allowed) and methods:
1 private String query
- public GoogleSomething (Scanner scanner)
• Constructs this GoogleSomething instance accordingly after reading input from the scanner.
i public boolean validCommand(CommandStack stack)
• Returns whether or not pushing this GoogleSomething command will be valid for the given stack.
1 public String toString()
• Returns the String representation of this Command in long form (for current screen display)
1 public String toShortString()
• Returns the String representation of this Command in short form (for stack display)
GoToBookmark implements Command
o Write a fully-documented class named GoToBookmark to represent the "F: Go to favorite/bookmark" command for the Safari app. This class requires
the following properties (with NO mutators, However, accessors are allowed) and methods:
private String bookmark
i public GoToBookmark (Scanner scanner)
• Constructs this GoToBookmark instance accordingly after reading input from the scanner.
i public boolean validCommand(CommandStack stack)
• Returns whether or not pushing this GoToBookmark command will be valid for the given stack.
- public String toString()
• Returns the String representation of this Command in long form (for current screen display)
i public String toShortString()
Transcribed Image Text:o Write a fully-documented class named StartNavigation to represent the "N: Start Navigation" command for the Maps app. This class requires the following properties (with NO mutators, However, accessors are allowed) and methods: 1 private String source 1 private String destination public StartNavigation (CommandStack commandStack) • Constructs this StartNavigation instance accordingly after grabbing navigation information from the last instruction - public boolean validCommand(CommandStack stack) • Returns whether or not pushing this StartNavigation command will be valid for the given stack. • This cannot be placed on top of another StartNavigation command or an empty stack public String toString() • Returns the String representation of this Command in long form (for current screen display) - public String toShortString() • Returns the String representation of this Command in short form (for stack display) Safari Commands • GoogleSomething implements Command o Write a fully-documented class named GoogleSomething to represent the "G: Google something" command for the Safari app. This class requires the following properties (with NO mutators, However, accessors are allowed) and methods: 1 private String query - public GoogleSomething (Scanner scanner) • Constructs this GoogleSomething instance accordingly after reading input from the scanner. i public boolean validCommand(CommandStack stack) • Returns whether or not pushing this GoogleSomething command will be valid for the given stack. 1 public String toString() • Returns the String representation of this Command in long form (for current screen display) 1 public String toShortString() • Returns the String representation of this Command in short form (for stack display) GoToBookmark implements Command o Write a fully-documented class named GoToBookmark to represent the "F: Go to favorite/bookmark" command for the Safari app. This class requires the following properties (with NO mutators, However, accessors are allowed) and methods: private String bookmark i public GoToBookmark (Scanner scanner) • Constructs this GoToBookmark instance accordingly after reading input from the scanner. i public boolean validCommand(CommandStack stack) • Returns whether or not pushing this GoToBookmark command will be valid for the given stack. - public String toString() • Returns the String representation of this Command in long form (for current screen display) i public String toShortString()
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY