-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
it.unibo.coordination.linda.cli -> it.unibo.coordination.tusow
- Loading branch information
Showing
15 changed files
with
25 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...o/coordination/linda/cli/AbsentCommand.kt → ...unibo/coordination/tusow/AbsentCommand.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ation/linda/cli/AbstractObserveCommand.kt → ...rdination/tusow/AbstractObserveCommand.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...on/linda/cli/AbstractTupleSpaceCommand.kt → ...nation/tusow/AbstractTupleSpaceCommand.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...nation/linda/cli/AbstractUpdateCommand.kt → ...ordination/tusow/AbstractUpdateCommand.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...in/it/unibo/coordination/linda/cli/Cli.kt → ...kotlin/it/unibo/coordination/tusow/Cli.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package it.unibo.coordination.linda.cli | ||
package it.unibo.coordination.tusow | ||
|
||
object Cli { | ||
@JvmStatic | ||
|
2 changes: 1 addition & 1 deletion
2
...bo/coordination/linda/cli/CountCommand.kt → .../unibo/coordination/tusow/CountCommand.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...nibo/coordination/linda/cli/GetCommand.kt → ...it/unibo/coordination/tusow/GetCommand.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ibo/coordination/linda/cli/ReadCommand.kt → ...t/unibo/coordination/tusow/ReadCommand.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ibo/coordination/linda/cli/TakeCommand.kt → ...t/unibo/coordination/tusow/TakeCommand.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...bo/coordination/linda/cli/TupleSpaceID.kt → .../unibo/coordination/tusow/TupleSpaceID.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package it.unibo.coordination.linda.cli | ||
package it.unibo.coordination.tusow | ||
|
||
import java.net.URL | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...coordination/linda/cli/TupleSpaceTypes.kt → ...ibo/coordination/tusow/TupleSpaceTypes.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package it.unibo.coordination.linda.cli | ||
package it.unibo.coordination.tusow | ||
|
||
enum class TupleSpaceTypes { | ||
LOGIC, | ||
|
2 changes: 1 addition & 1 deletion
2
...bo/coordination/linda/cli/TusowCommand.kt → .../unibo/coordination/tusow/TusowCommand.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...bo/coordination/linda/cli/WriteCommand.kt → .../unibo/coordination/tusow/WriteCommand.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
import it.unibo.coordination.tusow.Cli | ||
|
||
object TusowCli { | ||
@JvmStatic | ||
fun main(args: Array<String>) { | ||
it.unibo.coordination.linda.cli.Cli.main(args) | ||
Cli.main(args) | ||
} | ||
} |