blob: 1e65e7fe675788050c4fdf95b40cd8b176e20b5a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*******************************************************************************
* Copyright (c) 2012 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 (initial contribution)
*
*******************************************************************************/
ConfigModel trafficlight.example.config {
import trafficlight.example.* from "trafficlight.example.room"
ActorInstanceConfig LSTraffic/main/application/light1{
Attr ipConfig{
//Attr IPAddr="192.168.137.1"
Attr IPAddr="localhost"
Attr TcpPort=4441
}
}
ActorInstanceConfig LSTraffic/main/application/light2 {
Attr ipConfig{
//Attr IPAddr="192.168.137.1"
Attr IPAddr="localhost"
Attr TcpPort=4442
}
}
ActorInstanceConfig LSTraffic/main/application/pedestrianLight {
Attr ipConfig{
Attr IPAddr="localhost"
Attr TcpPort=4443
}
}
}
|