Panthera.java
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package edu.nwmissouri.animalList;
/**
*This Class extends Animal class
* @author Pinninti Harshika
*/
public class Panthera extends Animal {
/**
* This is parameter constructor which initialize the instance variables
* according to parameters passed
*
* @param name is passed to the constructor super constructor is used
*/
public Panthera(String name) {
super(name);
}
/**
* This is speak method which is used to to print the message print the
* statement
*/
@Override
public void speak() {
System.out.println("I am Panthera");
}
/**
* This is move method which is used to to print the message print the
* statement that describes the Panther movements
*/
@Override
public void move() {
System.out.println("I can eat and walk");
}
/**
* This method prints the logarithm value of a number
*prints the logarithm value
*/
public void logarithm(){
double x=Math.log(5);
System.out.println("Logarithm value of two numbers is:"+x);
}
/**
* This method prints the multiplication of two numbers
*prints the Multiplication value
* @param a
* @param b
*/
public void multiplication(int a, int b){
int c=a*b;
System.out.println("The multiplication of two numbers is: " +c);
}
/**
* adds the two numbers
* @return double value
*/
public double getPantheraAddition(double valueOne, int valueTwo) {
return valueOne + valueTwo;
}
/**
* profess calls the two numbers
* calls the function getPantheraAddition
*/
public void profess1() {
double a = 2.5;
int b = 2;
double c = getPantheraAddition(a, b);
System.out.printf("I know PantheraAddition! %4.2f plus %d is %4.2f \n", a, b, c);
}
}