Package edu.nwmissouri.animalList
Class Dalmatian
java.lang.Object
edu.nwmissouri.animalList.Animal
edu.nwmissouri.animalList.Dalmatian
Dalmatian class (derived subclass of the superclass Animal)
- Author:
- Nikhil Porika
-
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
cal()
This method will initialize the values and calls the addition methodvoid
eat()
Determines the animal eatdouble
getDalmatianaddition
(double number1, double number2) This method will calculate the addition of two numbersvoid
move()
Determines the animal movevoid
speak()
Determines the animal speak
-
Constructor Details
-
Dalmatian
-
-
Method Details
-
speak
public void speak()Determines the animal speak -
move
public void move()Determines the animal move -
eat
public void eat()Determines the animal eat -
cal
public void cal()This method will initialize the values and calls the addition method -
getDalmatianaddition
public double getDalmatianaddition(double number1, double number2) This method will calculate the addition of two numbers- Parameters:
number1
- it will take the first double valuenumber2
- it will take the second double value- Returns:
- it returns the addition of 2 numbers
-