Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.etrice.tutorials.simulators.trafficlight.example/src-gen/trafficlight/connector/DMqttConfig.java')
-rw-r--r--examples/org.eclipse.etrice.tutorials.simulators.trafficlight.example/src-gen/trafficlight/connector/DMqttConfig.java55
1 files changed, 0 insertions, 55 deletions
diff --git a/examples/org.eclipse.etrice.tutorials.simulators.trafficlight.example/src-gen/trafficlight/connector/DMqttConfig.java b/examples/org.eclipse.etrice.tutorials.simulators.trafficlight.example/src-gen/trafficlight/connector/DMqttConfig.java
deleted file mode 100644
index 937b501b0..000000000
--- a/examples/org.eclipse.etrice.tutorials.simulators.trafficlight.example/src-gen/trafficlight/connector/DMqttConfig.java
+++ /dev/null
@@ -1,55 +0,0 @@
-package trafficlight.connector;
-
-import static org.eclipse.etrice.runtime.java.etunit.EtUnit.*;
-
-
-
-
-public class DMqttConfig {
-
-
- /*--------------------- attributes ---------------------*/
- String url;
- String id;
-
- /* --------------------- attribute setters and getters */
- public void setUrl (String url) {
- this.url = url;
- }
- public String getUrl () {
- return this.url;
- }
- public void setId (String id) {
- this.id = id;
- }
- public String getId () {
- return this.id;
- }
-
- /*--------------------- operations ---------------------*/
-
- // default constructor
- public DMqttConfig() {
- super();
-
- // initialize attributes
- this.setUrl("");
- this.setId("");
- }
-
- // constructor using fields
- public DMqttConfig(String url, String id) {
- super();
-
- this.url = url;
- this.id = id;
- }
-
- // deep copy
- public DMqttConfig deepCopy() {
- DMqttConfig copy = new DMqttConfig();
- copy.url = url;
- copy.id = id;
- return copy;
- }
-};

Back to the top