001 package com.croftsoft.core.animation.painter;
002
003 import com.croftsoft.core.animation.ComponentPainter;
004
005 /*********************************************************************
006 * A ComponentPainter with (x,y) coordinate accessor/mutator methods.
007 *
008 * @version
009 * 2003-07-05
010 * @since
011 * 2002-03-05
012 * @author
013 * <a href="http://www.CroftSoft.com/">David Wallace Croft</a>
014 *********************************************************************/
015
016 public interface XYPainter
017 extends ComponentPainter
018 //////////////////////////////////////////////////////////////////////
019 //////////////////////////////////////////////////////////////////////
020 {
021
022 public int getX ( );
023
024 public int getY ( );
025
026 public void setX ( int x );
027
028 public void setY ( int y );
029
030 //////////////////////////////////////////////////////////////////////
031 //////////////////////////////////////////////////////////////////////
032 }