/* * 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. */ /** * * @author Jenn Joss */ public interface ChessItems { public void setItem(String name); public void setPosition(int x, int y); public void setSize(int size); public int returnPosition(); public String toString(); }