Back to project page MobileDev_beginner.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project MobileDev_beginner 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 org.corruptor; /*from ww w. ja va2 s. co m*/ /****************************************************************************** * Filename : MyScanner.java * Author : * Date : * Description : Function to accept input from the user. ******************************************************************************/ import java.util.Scanner ; public class MyScanner { private Scanner scanner; public Scanner getScanner() { scanner = new Scanner(System.in); return scanner; } } /****************************************************************************** * End of MyScanner.java ******************************************************************************/