Back to project page BestBoard.
The source code is released under:
MIT License
If you think the Android project BestBoard listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package digitalgarden.bestboard; //from w w w.j a v a 2s . c o m import java.util.ArrayList; import java.util.List; public class Roller { public static final int MAX_ROLLER = 8; public static boolean isValidRegister( int index ) { return ( index >= 0 && index < MAX_ROLLER ); } private List<String> wheels = new ArrayList<String>(); public boolean addCharacterWheel( String characterWheel ) { if ( characterWheel != null && characterWheel.length() > 1 ) { wheels.add( characterWheel ); return true; } return false; } }