-
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.
- Loading branch information
Showing
69 changed files
with
1,443 additions
and
1,200 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
106 changes: 0 additions & 106 deletions
106
fx2j-parser/src/main/java/io/github/sheikah45/fx2j/parser/FxmlAttribute.java
This file was deleted.
Oops, something went wrong.
8 changes: 5 additions & 3 deletions
8
fx2j-parser/src/main/java/io/github/sheikah45/fx2j/parser/FxmlComponents.java
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,12 +1,14 @@ | ||
package io.github.sheikah45.fx2j.parser; | ||
|
||
import io.github.sheikah45.fx2j.parser.element.DeclarationElement; | ||
|
||
import java.util.List; | ||
import java.util.Objects; | ||
|
||
public record FxmlComponents(FxmlNode rootNode, List<FxmlProcessingInstruction> processingInstructions) { | ||
public record FxmlComponents(DeclarationElement rootNode, List<FxmlProcessingInstruction> rootProcessingInstructions) { | ||
public FxmlComponents { | ||
Objects.requireNonNull(rootNode, "rootNode cannot be null"); | ||
Objects.requireNonNull(processingInstructions, "processingInstructions cannot be null"); | ||
processingInstructions = List.copyOf(processingInstructions); | ||
Objects.requireNonNull(rootProcessingInstructions, "rootProcessingInstructions cannot be null"); | ||
rootProcessingInstructions = List.copyOf(rootProcessingInstructions); | ||
} | ||
} |
102 changes: 0 additions & 102 deletions
102
fx2j-parser/src/main/java/io/github/sheikah45/fx2j/parser/FxmlElement.java
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
fx2j-parser/src/main/java/io/github/sheikah45/fx2j/parser/FxmlNode.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.