Skip to content

Commit a6a83ef

Browse files
committed
2025.12.0
1 parent aa9a361 commit a6a83ef

File tree

239 files changed

+16602
-10891
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

239 files changed

+16602
-10891
lines changed

cli/.settings/org.eclipse.jdt.core.prefs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
88
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
99
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
1010
org.eclipse.jdt.core.compiler.processAnnotations=disabled
11-
org.eclipse.jdt.core.compiler.release=disabled
11+
org.eclipse.jdt.core.compiler.release=enabled
1212
org.eclipse.jdt.core.compiler.source=21

cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<parent>
55
<groupId>org.nasdanika.models.app</groupId>
6-
<version>2025.10.0</version>
6+
<version>2025.12.0</version>
77
<artifactId>parent</artifactId>
88
<relativePath>..</relativePath>
99
</parent>

cli/src/main/java/org/nasdanika/models/app/cli/DrawioHtmlAppGeneratorCommand.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ public boolean isUseTooltipIfDocIsEmpty() {
9595

9696
@Override
9797
public void filterRepresentationElement(
98-
ModelElement sourceElement,
99-
ModelElement representationElement,
100-
Map<Element, ProcessorInfo<WidgetFactory,WidgetFactory,WidgetFactory>> registry, ProgressMonitor progressMonitor) {
98+
ModelElement<?> sourceElement,
99+
ModelElement<?> representationElement,
100+
Map<Element<?>, ProcessorInfo<WidgetFactory,WidgetFactory,Object,WidgetFactory>> registry, ProgressMonitor progressMonitor) {
101101

102102
for (RepresentationElementFilter ref: representationElementFilters) {
103103
ref.filterRepresentationElement(sourceElement, representationElement, registry, progressMonitor);
@@ -125,7 +125,7 @@ public void filterRepresentationElement(
125125
public boolean test(org.nasdanika.graph.Element element) {
126126
if (predicatePropery != null && element instanceof ModelElement) {
127127
for (Entry<String, String> ppe: predicatePropery.entrySet()) {
128-
String propVal = ((ModelElement) element).getProperty(ppe.getValue());
128+
String propVal = ((ModelElement<?>) element).getProperty(ppe.getValue());
129129
if (!Util.isBlank(propVal)) {
130130
if ("spel".equals(ppe.getKey())) {
131131
Boolean result = element.evaluate(propVal, Boolean.class); // TODO - variables from context?
@@ -291,7 +291,7 @@ protected Collection<Label> getLabels(ProgressMonitor progressMonitor) {
291291
}
292292

293293
DrawioHtmlAppGenerator actionGenerator = createDrawioActionGenerator(actionGeneratorBaseURI, refs);
294-
org.nasdanika.drawio.Element root = document;
294+
org.nasdanika.drawio.Element<?> root = document;
295295
if (!Util.isBlank(pageName)) {
296296
Optional<Page> pageOpt = document.getPages().stream().filter(p -> pageName.equals(p.getName())).findFirst();
297297
if (pageOpt.isEmpty()) {
@@ -315,7 +315,7 @@ protected boolean testElement(org.nasdanika.graph.Element element) {
315315

316316
if (tag != null && !tag.isEmpty()) {
317317
if (element instanceof ModelElement) {
318-
Set<Tag> elementTags = ((ModelElement) element).getTags();
318+
Set<Tag> elementTags = ((ModelElement<?>) element).getTags();
319319
if (elementTags.isEmpty()) {
320320
return true; // No tags
321321
}

docs/circular-layout-graph-with-dependencies-and-subpackages.html

Lines changed: 53 additions & 55 deletions
Large diffs are not rendered by default.

docs/circular-layout-graph.html

Lines changed: 53 additions & 55 deletions
Large diffs are not rendered by default.

docs/classifiers.html

Lines changed: 48 additions & 50 deletions
Large diffs are not rendered by default.

docs/default-graph-with-dependencies-and-subpackages.html

Lines changed: 54 additions & 56 deletions
Large diffs are not rendered by default.

docs/default-graph.html

Lines changed: 54 additions & 56 deletions
Large diffs are not rendered by default.

docs/diagram.html

Lines changed: 78 additions & 80 deletions
Large diffs are not rendered by default.

docs/force-layout-graph-3d-detailed.html

Lines changed: 560 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)