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/*ww w .j a v a 2 s . c o m*/ * */ package de.devisnik.sliding.impl; import de.devisnik.sliding.IHole; public class Hole extends Piece implements IHole { public Hole(int posX, int posY, String label) { super(posX, posY, label); } }