Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

I need some help with a Raptor flow chart program.This is the assignment: Pet Cl

ID: 3768283 • Letter: I

Question

I need some help with a Raptor flow chart program.This is the assignment: Pet Class Design a class named Pet, which should have the following fields: • Name – The name field holds the name of a pet. • Type – The type field holds the type of animal that is the pet. Example values are “Dog”, “Cat”, and “Bird”. • Age – The age field holds the pet’s age. The Pet class should also have the following methods: • setName – The setName method stores a value in the name field. • setType – The setType method stores a value in the type field. • setAge – The setAge method stores a value in the age field. • getName – The getName method returns the value of the name field. • getType – The getType method returns the value of the type field. • getAge – The getAge method returns the value of the age field. Once you have designed the class, design a program that creates an object of the class and prompts the user to enter the name, type, and age of his pet. This data should be stored in the object. Use the object’s accessor methods to retrieve the pet’s name, type, and age and display this data on the screen.

Explanation / Answer

package com.emr;

import java.util.Scanner;

/**
* @author Srinivas Palli
*
*/
public class Pet {

   String name, type;
   int age;

   /**
   * @return the name
   */
   public String getName() {
       return name;
   }

   /**
   * @param name
   * the name to set
   */
   public void setName(String name) {
       this.name = name;
   }

   /**
   * @return the type
   */
   public String getType() {
       return type;
   }

   /**
   * @param type
   * the type to set
   */
   public void setType(String type) {
       this.type = type;
   }

   /**
   * @return the age
   */
   public int getAge() {
       return age;
   }

   /**
   * @param age
   * the age to set
   */
   public void setAge(int age) {
       this.age = age;
   }

   /*
   * (non-Javadoc)
   *
   * @see java.lang.Object#toString()
   */
   @Override
   public String toString() {
       return "Pet [name=" + name + ", type=" + type + ", age=" + age + "]";
   }

   public static void main(String[] args) {
       Pet pet = new Pet();
       Scanner scanner = new Scanner(System.in);

       System.out.print("Enter Pet Name:");
       String petName = scanner.nextLine();
       pet.setName(petName);

       System.out.print("Enter Pet Type:");
       String petType = scanner.nextLine();
       pet.setType(petType);

       System.out.print("Enter Pet Age:");
       int petAge = scanner.nextInt();
       pet.setAge(petAge);

       System.out.println(pet);

   }

}

OUTPUT:

Enter Pet Name:Dog
Enter Pet Type:type
Enter Pet Age:5
Pet [name=Dog, type=type, age=5]