Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
fgreco55 committed Jul 11, 2021
0 parents commit 8883df0
Show file tree
Hide file tree
Showing 45 changed files with 726 additions and 0 deletions.
Binary file not shown.
Empty file.
Binary file added .gradle/7.0/executionHistory/executionHistory.bin
Binary file not shown.
Binary file added .gradle/7.0/executionHistory/executionHistory.lock
Binary file not shown.
Binary file added .gradle/7.0/fileChanges/last-build.bin
Binary file not shown.
Binary file added .gradle/7.0/fileHashes/fileHashes.bin
Binary file not shown.
Binary file added .gradle/7.0/fileHashes/fileHashes.lock
Binary file not shown.
Empty file added .gradle/7.0/gc.properties
Empty file.
Binary file added .gradle/7.0/javaCompile/classAnalysis.bin
Binary file not shown.
Binary file added .gradle/7.0/javaCompile/javaCompile.lock
Binary file not shown.
Binary file added .gradle/7.0/javaCompile/taskHistory.bin
Binary file not shown.
Binary file added .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 2 additions & 0 deletions .gradle/buildOutputCleanup/cache.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Sun Jun 20 15:57:02 EDT 2021
gradle.version=7.0
Binary file added .gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
Binary file added .gradle/checksums/checksums.lock
Binary file not shown.
Binary file added .gradle/checksums/md5-checksums.bin
Binary file not shown.
Binary file added .gradle/checksums/sha1-checksums.bin
Binary file not shown.
Empty file.
Empty file added .gradle/vcs-1/gc.properties
Empty file.
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 32 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

124 changes: 124 additions & 0 deletions .idea/uiDesigner.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
This solution uses an application (RetrieverApp) to get simple commands (Zip, Music and Television) to call
the respective classes.

Note that it separates the userinput into a method within the app using a method called getUserInput().
We can then use that method again to get the "subcommand", eg, the particular artist, television show or zipcode.

Frank
20 changes: 20 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
plugins {
id 'java'
}

group 'org.example'
version '1.0-SNAPSHOT'

repositories {
mavenCentral()
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
implementation group: 'org.json', name: 'json', version: '20210307'
}

test {
useJUnitPlatform()
}
Binary file added build/classes/java/main/RetrieverApp.class
Binary file not shown.
Binary file added build/classes/java/main/ServiceCommunicator.class
Binary file not shown.
Binary file added build/classes/java/main/Tv.class
Binary file not shown.
Binary file added build/classes/java/main/Zip.class
Binary file not shown.
Binary file added build/classes/java/main/iTunes.class
Binary file not shown.
10 changes: 10 additions & 0 deletions build/tmp/compileJava/source-classes-mapping.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Tv.java
Tv
Zip.java
Zip
ServiceCommunicator.java
ServiceCommunicator
iTunes.java
iTunes
RetrieverApp.java
RetrieverApp
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 8883df0

Please sign in to comment.