Skip to content
Snippets Groups Projects
Commit 7fa751a5 authored by René Schöne's avatar René Schöne
Browse files

Merge branch 'release/1.0.0' into 'master'

Version 1.0.0

See merge request !35
parents 810b5945 3e348c15
No related branches found
No related tags found
1 merge request!35Version 1.0.0
Pipeline #14561 passed
Showing
with 930 additions and 399 deletions
public void {{targetParentTypeName}}.{{dependencyMethod}}({{sourceParentTypeName}} source) { /**
* @deprecated Manual dependency definitions are not fully tested any longer since 1.0.0, see <a href="https://jastadd.pages.st.inf.tu-dresden.de/ragconnect-dev/dsl/#dependency-definitions">https://jastadd.pages.st.inf.tu-dresden.de/ragconnect-dev/dsl/#dependency-definitions</a>
*/
@Deprecated(since = "1.0.0")
public void {{targetParentTypeName}}.{{dependencyMethodName}}({{sourceParentTypeName}} source) {
add{{internalRelationPrefix}}Source(source); add{{internalRelationPrefix}}Source(source);
} }
...@@ -6,18 +6,18 @@ try { ...@@ -6,18 +6,18 @@ try {
host = uri.getHost(); host = uri.getHost();
path = uri.getPath() + (uri.getFragment() != null ? "#" : ""); path = uri.getPath() + (uri.getFragment() != null ? "#" : "");
} catch (java.net.URISyntaxException e) { } catch (java.net.URISyntaxException e) {
System.err.println(e.getMessage()); // Maybe re-throw error? {{logError}}(e.getMessage()); // Maybe re-throw error?
return false; return false;
} }
if (scheme == null || scheme.isBlank()) { if (scheme == null || scheme.isBlank()) {
System.err.println("Missing or empty scheme in " + uri); {{logError}}("Missing or empty scheme in {{log_}}", uri);
return false; return false;
} }
if (host == null || host.isBlank()) { if (host == null || host.isBlank()) {
System.err.println("Missing or empty host in " + uri); {{logError}}("Missing or empty host in {{log_}}", uri);
return false; return false;
} }
if (path == null || path.isBlank()) { if (path == null || path.isBlank()) {
System.err.println("Missing or empty path in " + uri); {{logError}}("Missing or empty path in {{log_}}", uri);
return false; return false;
} }
This diff is collapsed.
aspect MQTT {
public void {{rootNodeName}}.{{mqttSetupWaitUntilReadyMethod}}(long time, java.util.concurrent.TimeUnit unit) {
{{mqttHandlerField}}.setupWaitUntilReady(time, unit);
}
}
#Wed Nov 24 10:32:52 CET 2021
version=0.3.2
This diff is collapsed.
#Tue Sep 06 12:31:39 CEST 2022
version=1.0.0
This diff is collapsed.
...@@ -3,3 +3,4 @@ src/gen-res/ ...@@ -3,3 +3,4 @@ src/gen-res/
src/gen/ src/gen/
out/ out/
*.class *.class
test.log
This diff is collapsed.
# Attribute
Idea: Use send definitions for attributes.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
# ContextFree-Simple
Idea: Use only context-free context, in simple situation (non-recursive)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment