-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
4 changed files
with
89 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
= IDEAsy Design | ||
|
||
[plantuml] | ||
---- | ||
include::images/design.puml[] | ||
---- |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,83 @@ | ||
@startuml | ||
skinparam classFontStyle bold | ||
skinparam classAttributeIconSize 0 | ||
|
||
'''' Attributes and methods ''' | ||
|
||
class Ide { | ||
{static} +main(String []) | ||
} | ||
|
||
class CliArgument | ||
class Property | ||
|
||
interface IdeLogger | ||
interface IdeContext | ||
|
||
interface CommandletManager | ||
interface EnvironmentVariables | ||
interface FileAccess | ||
interface ProcessContext | ||
interface SystemInfo | ||
|
||
interface ToolRepository | ||
interface CustomToolRepository | ||
|
||
class UrlMetadata | ||
interface UrlArtifact | ||
|
||
class Commandlet | ||
class ToolCommandlet | ||
class LocalToolCommandlet | ||
class GlobalToolCommandlet | ||
class PluginBasedToolCommandlet | ||
class IdeToolCommandlet | ||
class IdeaBasedIdeToolCommandlet | ||
|
||
class UpdateInitiator{ | ||
{static} +main(String []) | ||
} | ||
|
||
class UpdateManager | ||
interface UrlUpdater | ||
|
||
|
||
'''' Relations ''' | ||
|
||
Ide ..> CliArgument | ||
Ide ..> Property | ||
Ide ..> Commandlet | ||
Ide ..> IdeContext | ||
|
||
IdeLogger <|-- IdeContext : extends | ||
|
||
IdeContext ..> CommandletManager | ||
IdeContext ..> EnvironmentVariables | ||
IdeContext ..> FileAccess | ||
IdeContext ..> ProcessContext | ||
IdeContext ..> SystemInfo | ||
IdeContext ..> ToolRepository | ||
IdeContext ..> UrlMetadata | ||
IdeContext ..> GitContext | ||
UrlMetadata ..> UrlArtifact | ||
|
||
AbstractIdeContext ..|> IdeContext : implements | ||
IdeContextConsole --|> AbstractIdeContext : extends | ||
IdeLoggerImpl ..|> IdeLogger : implements | ||
|
||
GitContextImpl ..|> GitContext : implements | ||
|
||
CommandletManager ..> Commandlet | ||
Commandlet <|-- ToolCommandlet : extends | ||
ToolCommandlet <|-- LocalToolCommandlet : extends | ||
ToolCommandlet <|-- GlobalToolCommandlet : extends | ||
LocalToolCommandlet <|-- PluginBasedToolCommandlet : extends | ||
PluginBasedToolCommandlet <|-- IdeToolCommandlet : extends | ||
IdeToolCommandlet <|-- IdeaBasedIdeToolCommandlet : extends | ||
|
||
ToolRepository <|-- CustomToolRepository : extends | ||
|
||
UpdateInitiator ..> UpdateManager | ||
UpdateManager ..> UrlUpdater | ||
|
||
@enduml |