Skip to content

[TASK] Reorder things in the class diagram source code #505

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 21 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -629,18 +629,12 @@ classDiagram
class OutputFormatter {
}

OutputFormatter --> "1" OutputFormat : oFormat
OutputFormat --> "1" OutputFormatter : oFormatter
OutputFormat --> "1" OutputFormat : oNextLevelFormat

class Parser {
}

class ParserState {
}

Parser --> "1" ParserState : oParserState

class Renderable {
<<interface>>
}
Expand Down Expand Up @@ -684,11 +678,6 @@ classDiagram
KeyFrame --|> CSSList
KeyFrame ..|> AtRule

CSSList --> "*" Comment : aComments
CSSList --> "*" RuleSet : aContents
CSSList --> "*" CSSList : aContents
CSSList --> "*" Import : aContents
CSSList --> "*" Charset : aContents

%% namespace Parsing

Expand All @@ -709,8 +698,6 @@ classDiagram
UnexpectedEOFException --|> UnexpectedTokenException
UnexpectedTokenException --|> SourceException

Anchor --> "1" ParserState : oParserState
ParserState --> "1" Settings : oParserSettings

%% namespace Property

Expand All @@ -735,11 +722,6 @@ classDiagram
Import ..|> AtRule
KeyframeSelector --|> Selector

Charset --> "1" CSSString : oCharset
Charset --> "*" Comment : aComments
CSSNamespace --> "*" Comment : aComments
Import --> "*" Comment : aComments


%% namespace Rule

Expand All @@ -749,9 +731,6 @@ classDiagram
Rule ..|> Renderable
Rule ..|> Commentable

Rule --> "1" RuleValueList : mValue
Rule --> "*" Comment : aComments


%% namespace RuleSet

Expand All @@ -769,10 +748,6 @@ classDiagram
RuleSet ..|> Renderable
RuleSet ..|> Commentable

DeclarationBlock --> "*" Selector : aSelectors
RuleSet --> "*" Rule : aRules
RuleSet --> "*" Comment : aComments


%% namespace Value

Expand Down Expand Up @@ -817,11 +792,31 @@ classDiagram
Value ..|> Renderable
ValueList --|> Value

Anchor --> "1" ParserState : oParserState
CSSList --> "*" CSSList : aContents
CSSList --> "*" Charset : aContents
CSSList --> "*" Comment : aComments
CSSList --> "*" Import : aContents
CSSList --> "*" RuleSet : aContents
CSSNamespace --> "*" Comment : aComments
Charset --> "*" Comment : aComments
Charset --> "1" CSSString : oCharset
DeclarationBlock --> "*" Selector : aSelectors
Import --> "*" Comment : aComments
OutputFormat --> "1" OutputFormat : oNextLevelFormat
OutputFormat --> "1" OutputFormatter : oFormatter
OutputFormatter --> "1" OutputFormat : oFormat
Parser --> "1" ParserState : oParserState
ParserState --> "1" Settings : oParserSettings
Rule --> "*" Comment : aComments
Rule --> "1" RuleValueList : mValue
RuleSet --> "*" Comment : aComments
RuleSet --> "*" Rule : aRules
URL --> "1" CSSString : oURL
ValueList --> "*" RuleValueList : aComponents
ValueList --> "*" CSSFunction : aComponents
ValueList --> "*" CSSString : aComponents
ValueList --> "*" LineName : aComponents
ValueList --> "*" RuleValueList : aComponents
ValueList --> "*" Size : aComponents
ValueList --> "*" URL : aComponents
```
Expand Down