forked from redhat-developer/quarkus-ls
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide qute.nativeImages.enabled setting
Fixes redhat-developer#629 Signed-off-by: azerr <azerr@redhat.com>
- Loading branch information
1 parent
f7ef2e8
commit e482850
Showing
20 changed files
with
440 additions
and
116 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
18 changes: 18 additions & 0 deletions
18
qute.jdt/com.redhat.qute.jdt/src/main/java/com/redhat/qute/commons/TemplateDataInfo.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,18 @@ | ||
package com.redhat.qute.commons; | ||
|
||
public class TemplateDataInfo { | ||
|
||
/** | ||
* If set to true do not automatically analyze superclasses. | ||
*/ | ||
private boolean ignoreSuperclasses; | ||
|
||
public boolean isIgnoreSuperclasses() { | ||
return ignoreSuperclasses; | ||
} | ||
|
||
public void setIgnoreSuperclasses(boolean ignoreSuperclasses) { | ||
this.ignoreSuperclasses = ignoreSuperclasses; | ||
} | ||
|
||
} |
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
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
18 changes: 18 additions & 0 deletions
18
qute.ls/com.redhat.qute.ls/src/main/java/com/redhat/qute/commons/TemplateDataInfo.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,18 @@ | ||
package com.redhat.qute.commons; | ||
|
||
public class TemplateDataInfo { | ||
|
||
/** | ||
* If set to true do not automatically analyze superclasses. | ||
*/ | ||
private boolean ignoreSuperclasses; | ||
|
||
public boolean isIgnoreSuperclasses() { | ||
return ignoreSuperclasses; | ||
} | ||
|
||
public void setIgnoreSuperclasses(boolean ignoreSuperclasses) { | ||
this.ignoreSuperclasses = ignoreSuperclasses; | ||
} | ||
|
||
} |
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
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
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
Oops, something went wrong.