Skip to content

Commit

Permalink
54
Browse files Browse the repository at this point in the history
  • Loading branch information
codershiyar committed May 16, 2020
1 parent 8f807ae commit 5868c22
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Lesson 54 - الدرس/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"configurations": [
{
"type": "java",
"name": "CodeLens (Launch) - App",
"request": "launch",
"mainClass": "Java.App",
"projectName": "java_c87954b4"
},
{
"type": "java",
"name": "CodeLens (Launch) - App",
"request": "launch",
"mainClass": "App",
"projectName": "java_c87954b4"
}
]
}
11 changes: 11 additions & 0 deletions Lesson 54 - الدرس/Java/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"configurations": [
{
"type": "java",
"name": "CodeLens (Launch) - App",
"request": "launch",
"mainClass": "Java.App",
"projectName": "Java_281ceabd"
}
]
}
8 changes: 8 additions & 0 deletions Lesson 54 - الدرس/Java/Java/App.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package Java;

class App implements AppInterface {

public static void main(String[] args) {
System.out.println(App.package_name);
}
}
5 changes: 5 additions & 0 deletions Lesson 54 - الدرس/Java/Java/App2.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package Java;

public class App2 implements AppInterface {

}
5 changes: 5 additions & 0 deletions Lesson 54 - الدرس/Java/Java/App3.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package Java;

public class App3 implements AppInterface {

}
6 changes: 6 additions & 0 deletions Lesson 54 - الدرس/Java/Java/AppInterface.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package Java;

public interface AppInterface {
String package_name = "com.codershiyar";
String app_name = "Coder Shiyar";
}

0 comments on commit 5868c22

Please sign in to comment.