Exemplo n.º 1
0
 /**
  * Default constructor.
  * @param title           Menu title {@link MenuData}.
  * @param content         Menu content {@link MenuData}.
  * @param janetSudoku     Root JanetSudoku class with demo app {@link JanetSudoku}.
  * @see MenuData
  * @see JanetSudoku
  */
 internal Menu(String title, String[] content, JanetSudoku janetSudoku)
 {
     this.title       = title;
     this.itemsNum    = content.Length - 1;
     this.content     = content;
     this.janetSudoku = janetSudoku;
 }
Exemplo n.º 2
0
		/**
		 * Start the Janet-Sudoku Demp app.
		 *
		 * @param    args   Not used
		 */
		public static void Main(String[] args) {
			JanetSudoku js = new JanetSudoku();
			js.startApp();
		}
Exemplo n.º 3
0
		/**
		 * Start the Janet-Sudoku Demp app.
		 */
		public static void Start() {
			JanetSudoku js = new JanetSudoku();
			js.startApp();
		}
Exemplo n.º 4
0
        /**
         * Start the Janet-Sudoku Demp app.
         *
         * @param    args   Not used
         */
        public static void Main(String[] args)
        {
            JanetSudoku js = new JanetSudoku();

            js.startApp();
        }
Exemplo n.º 5
0
        /**
         * Start the Janet-Sudoku Demp app.
         */
        public static void Start()
        {
            JanetSudoku js = new JanetSudoku();

            js.startApp();
        }
Exemplo n.º 6
0
		/**
		 * Default constructor.
		 * @param title           Menu title {@link MenuData}.
		 * @param content         Menu content {@link MenuData}.
		 * @param janetSudoku     Root JanetSudoku class with demo app {@link JanetSudoku}.
		 * @see MenuData
		 * @see JanetSudoku
		 */
		internal Menu(String title, String[] content, JanetSudoku janetSudoku) {
			this.title = title;
			this.itemsNum = content.Length - 1;
			this.content = content;
			this.janetSudoku = janetSudoku;
		}