why is this not working? it is showing make sure it has getAge and getName and i do, so it should work right?
package com.codegym.task.task05.task0503;
/*
Getters and setters for the Dog class
*/
public class Dog {
//write your code here
String name;
int age;
public void setName(String x)
{
this.name = x;
}
public static String getName(Dog o)
{
return o.name;
}
public void setAge(int y)
{
this.age = y;
}
public static int getAge(Dog o)
{
return o.age;
}
public static void main(String[] args) {
}
}