See More

package studyjava; public interface Pet { public void play(); public String getName(); public void setName(String name); }