Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/messaging/IRTObject.java')
-rw-r--r--runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/messaging/IRTObject.java78
1 files changed, 39 insertions, 39 deletions
diff --git a/runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/messaging/IRTObject.java b/runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/messaging/IRTObject.java
index d7390e0d0..4dc06e41d 100644
--- a/runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/messaging/IRTObject.java
+++ b/runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/messaging/IRTObject.java
@@ -1,39 +1,39 @@
-/*******************************************************************************
- * Copyright (c) 2010 protos software gmbh (http://www.protos.de).
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * CONTRIBUTORS:
- * Thomas Schuetz and Henrik Rentz-Reichert (initial contribution)
- *
- *******************************************************************************/
-
-package org.eclipse.etrice.runtime.java.messaging;
-
-import java.util.List;
-
-/**
- * The runtime object interface
- * @author Thomas Schuetz
- * @author Henrik Rentz-Reichert
- *
- */
-public interface IRTObject {
-
- static final char PATH_DELIM = '/';
- static final char PATHNAME_DELIM = '_';
- static final String NO_NAME = "<no name>";
-
- String getName();
- List<IRTObject> getChildren();
- IRTObject getParent();
- IRTObject getRoot();
- IRTObject getChild(String name);
- IRTObject getObject(String path);
-
- String getInstancePath(char delim);
- String getInstancePath();
- String getInstancePathName();
-}
+/*******************************************************************************
+ * Copyright (c) 2010 protos software gmbh (http://www.protos.de).
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * CONTRIBUTORS:
+ * Thomas Schuetz and Henrik Rentz-Reichert (initial contribution)
+ *
+ *******************************************************************************/
+
+package org.eclipse.etrice.runtime.java.messaging;
+
+import java.util.List;
+
+/**
+ * The runtime object interface
+ * @author Thomas Schuetz
+ * @author Henrik Rentz-Reichert
+ *
+ */
+public interface IRTObject {
+
+ static final char PATH_DELIM = '/';
+ static final char PATHNAME_DELIM = '_';
+ static final String NO_NAME = "<no name>";
+
+ String getName();
+ List<IRTObject> getChildren();
+ IRTObject getParent();
+ IRTObject getRoot();
+ IRTObject getChild(String name);
+ IRTObject getObject(String path);
+
+ String getInstancePath(char delim);
+ String getInstancePath();
+ String getInstancePathName();
+}

Back to the top