public class Dog{ public String name; Dog(String name){ this.name = name; } public void mark(){ System.out.println(this.name + " is marking"); } }