System.out.println( "Roller id not found" );
return;
}
// Estimate position
Letter position;
try {
position = Letter.fromId( Integer.parseInt( args[2] ) );
} catch ( NumberFormatException e ) {
try {
position = Letter.fromChar( args[2].toCharArray()[0] );
} catch ( IllegalArgumentException e1 ) {
System.out.println( "Please enter either an id or the letter itself" );
return;
}
}
// Update object
enigma.getRollers()[rollerId - 1].setPosition( position );
System.out.println( "Position of roller #" + rollerId + " updated to " + position.toString() );
} else if ( args.length == 2 && args[0].equalsIgnoreCase( "rotate" ) ) {
// Estimate roller id
int rollerId;
try {