Skip to content

Commit

Permalink
Created files file structure for MVC
Browse files Browse the repository at this point in the history
  • Loading branch information
Johan Larsson Hörkén authored and Johan Larsson Hörkén committed Sep 14, 2016
1 parent e8bfbea commit d03ed5b
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/bin/
17 changes: 17 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>random-password-generator</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
9 changes: 9 additions & 0 deletions src/Controller.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

public class Controller {

public static void main(String[] args) {
// TODO Auto-generated method stub

}

}
4 changes: 4 additions & 0 deletions src/Model.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

public class Model {

}
4 changes: 4 additions & 0 deletions src/View.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

public class View {

}

0 comments on commit d03ed5b

Please sign in to comment.