-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22861 from mkouba/issue-21853
Qute - support global variables
- Loading branch information
Showing
26 changed files
with
978 additions
and
21 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
17 changes: 17 additions & 0 deletions
17
...yment/src/main/java/io/quarkus/qute/deployment/GeneratedTemplateInitializerBuildItem.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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package io.quarkus.qute.deployment; | ||
|
||
import io.quarkus.builder.item.MultiBuildItem; | ||
|
||
public final class GeneratedTemplateInitializerBuildItem extends MultiBuildItem { | ||
|
||
private final String className; | ||
|
||
public GeneratedTemplateInitializerBuildItem(String className) { | ||
this.className = className; | ||
} | ||
|
||
public String getClassName() { | ||
return className; | ||
} | ||
|
||
} |
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
Oops, something went wrong.