Skip to content
This repository was archived by the owner on Jan 6, 2022. It is now read-only.

Commit 7b481b5

Browse files
committedMay 20, 2020
Created All the Classes
1 parent fc39057 commit 7b481b5

File tree

10 files changed

+77
-0
lines changed

10 files changed

+77
-0
lines changed
 

‎.classpath

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5+
<classpathentry kind="output" path="bin"/>
6+
</classpath>

‎.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/bin/

‎.project

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>Java-Sudoku</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>

‎src/app/SudokuApp.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package app;
2+
3+
import controller.MasterController;
4+
5+
public class SudokuApp {
6+
public static void main(String[] args)
7+
{
8+
new MasterController();
9+
}
10+
}

‎src/backend/Answer.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package backend;
2+
3+
public class Answer {
4+
5+
}

‎src/controller/MasterController.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package controller;
2+
3+
public class MasterController {
4+
5+
}

‎src/controller/SudokuController.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package controller;
2+
3+
public class SudokuController {
4+
5+
}

‎src/model/Sudoku.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package model;
2+
3+
public class Sudoku {
4+
public Sudoku()
5+
{
6+
7+
}
8+
9+
public int[][] getGrid() {
10+
return grid;
11+
}
12+
13+
public void setGrid(int[][] grid) {
14+
this.grid = grid;
15+
}
16+
17+
private int[][] grid;
18+
}

‎src/view/MasterView.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package view;
2+
3+
public class MasterView {
4+
5+
}

‎src/view/SudokuView.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package view;
2+
3+
public class SudokuView {
4+
5+
}

0 commit comments

Comments
 (0)
This repository has been archived.