A labeled point has x- and y-coordinates and a string label. Implement a class LabeledPoint that extends the Point class, adding the feature of a label. Your tostring method should invoke the tostring method of the Point class. In the constructor, invoke the superclass constructor. Do not add any instance variables except for the label string, and do not add any methods beyond those specified in the template. Use this template: LabeledPoint.java Example: LabeledPoint p1 = new LabeledPoint (0, 5, "location of buried treasure"); System.out.println (p1); // prints "labs.lab4.LabeledPoint [x=0,y=5] label=location of buried treasure"

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Java. Please use the template in the picture, thank you!

A labeled point has x- and y-coordinates and a string label. Implement a class LabeledPoint that
extends the Point class, adding the feature of a label. Your toString method should invoke the
toString method of the Point class. In the constructor, invoke the superclass constructor. Do not add
any instance variables except for the label string, and do not add any methods beyond those specified in the
template. Use this template: LabeledPoint.java I
Example:
LabeledPoint pl = new LabeledPoint(0, 5, "location of buried treasure");
System.out.println (p1); // prints "labs.lab4. LabeledPoint[x=0,y=5]
label=location of buried treasure"
Transcribed Image Text:A labeled point has x- and y-coordinates and a string label. Implement a class LabeledPoint that extends the Point class, adding the feature of a label. Your toString method should invoke the toString method of the Point class. In the constructor, invoke the superclass constructor. Do not add any instance variables except for the label string, and do not add any methods beyond those specified in the template. Use this template: LabeledPoint.java I Example: LabeledPoint pl = new LabeledPoint(0, 5, "location of buried treasure"); System.out.println (p1); // prints "labs.lab4. LabeledPoint[x=0,y=5] label=location of buried treasure"
3 import java.awt.Point;
4
50 /**
* A class to represent a labeled point.
*/
8 public class LabeledPoint extends Point {
6.
7
9.
10
// ADD YOUR INSTANCE VARIABLES HERE
11
120
/**
* Constructs a labeled point at (x,y) with a given label.
13
14
15
*
* @param x
the x coordinate
*
16
the y coordinate
@param y
* @param label the point label
* /
17
18
190
20
21
public LabeledPoint(int x, int y, String label) {
// HINT: CALL THE SUPERCLASS CONSTRUCTOR AS PART OF YOUR IMPLEMENTATION
// FILL IN
}
22
23
24
250
/**
* Displays the (x,y) and point label
26
27
280
*/
@Override
public String toString() {
// HINT: CALL THE SUPERCLASS TOSTRING AS PART OF YOUR IMPLEMENTATION
return ""; // FIX ME
}
29
30
31
32
33 }
34
Transcribed Image Text:3 import java.awt.Point; 4 50 /** * A class to represent a labeled point. */ 8 public class LabeledPoint extends Point { 6. 7 9. 10 // ADD YOUR INSTANCE VARIABLES HERE 11 120 /** * Constructs a labeled point at (x,y) with a given label. 13 14 15 * * @param x the x coordinate * 16 the y coordinate @param y * @param label the point label * / 17 18 190 20 21 public LabeledPoint(int x, int y, String label) { // HINT: CALL THE SUPERCLASS CONSTRUCTOR AS PART OF YOUR IMPLEMENTATION // FILL IN } 22 23 24 250 /** * Displays the (x,y) and point label 26 27 280 */ @Override public String toString() { // HINT: CALL THE SUPERCLASS TOSTRING AS PART OF YOUR IMPLEMENTATION return ""; // FIX ME } 29 30 31 32 33 } 34
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Knowledge Booster
Math class and its different methods
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education