Back to project page slider.
The source code is released under:
Apache License
If you think the Android project slider listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Created on 21.07.2006 by leck// www . j av a2 s. co m * */ package de.devisnik.sliding; /** * A movable piece of the sliding puzzle. * */ public interface IPiece { String getLabel(); Point getPosition(); Point getHomePosition(); boolean isAtHome(); }