Skip to content

Commit 9df4baf

Browse files
AdminAdmin
authored andcommitted
adjusted license header, minor internal adjustments
1 parent 0bf5812 commit 9df4baf

24 files changed

+205
-152
lines changed

JSimpleSim/src/org/simplesim/core/messaging/AbstractMessage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* JSimpleSim is a framework to build multi-agent systems in a quick and easy
33
* way.
44
*

JSimpleSim/src/org/simplesim/core/messaging/AbstractPort.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* JSimpleSim is a framework to build multi-agent systems in a quick and easy
33
* way.
44
*
@@ -69,7 +69,7 @@ public AbstractPort(BasicModelEntity model) {
6969
public abstract void connectTo(AbstractPort target);
7070

7171
/**
72-
* Disconnects this port from another on.
72+
* Disconnects this port from another one.
7373
*
7474
* @param target the port to be removed
7575
* @exception PortConnectionException if the port is not connected with the

JSimpleSim/src/org/simplesim/core/messaging/DirectMessageForwarding.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
*
55
* This software is published as open source and licensed under the terms of GNU
66
* GPLv3.
7+
*
8+
* Contributors:
9+
* - Rene Kuhlemann - development and initial implementation
10+
*
711
*/
812
package org.simplesim.core.messaging;
913

JSimpleSim/src/org/simplesim/core/messaging/ForwardingStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* JSimpleSim is a framework to build multi-agent systems in a quick and easy
33
* way.
44
*

JSimpleSim/src/org/simplesim/core/messaging/Message.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* JSimpleSim is a framework to build multi-agent systems in a quick and easy
33
* way.
44
*

JSimpleSim/src/org/simplesim/core/messaging/MultiPort.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/*
22
* JSimpleSim is a framework to build multi-agent systems in a quick and easy
33
* way.
44
*

JSimpleSim/src/org/simplesim/core/messaging/RecursiveMessageForwarding.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
*
55
* This software is published as open source and licensed under the terms of GNU
66
* GPLv3.
7+
*
8+
* Contributors:
9+
* - Rene Kuhlemann - development and initial implementation
10+
*
711
*/
812
package org.simplesim.core.messaging;
913

JSimpleSim/src/org/simplesim/core/messaging/RoutedMessage.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
/*
2-
* JSimpleSim is a framework to build multi-agent systems in a quick and easy way. This software is published as open
3-
* source and licensed under the terms of GNU GPLv3. Contributors: - Rene Kuhlemann - development and initial
4-
* implementation
2+
* JSimpleSim is a framework to build multi-agent systems in a quick and easy
3+
* way.
4+
*
5+
* This software is published as open source and licensed under the terms of GNU
6+
* GPLv3.
7+
*
8+
* Contributors:
9+
* - Rene Kuhlemann - development and initial implementation
10+
*
511
*/
612
package org.simplesim.core.messaging;
713

JSimpleSim/src/org/simplesim/core/messaging/RoutedMessageForwarding.java

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
/**
2-
* JSimpleSim is a framework to build multi-agent systems in a quick and easy way. This software is published as open
3-
* source and licensed under the terms of GNU GPLv3. Contributors: - Rene Kuhlemann - development and initial
4-
* implementation
1+
/*
2+
* JSimpleSim is a framework to build multi-agent systems in a quick and easy
3+
* way.
4+
*
5+
* This software is published as open source and licensed under the terms of GNU
6+
* GPLv3.
7+
*
8+
* Contributors:
9+
* - Rene Kuhlemann - development and initial implementation
10+
*
511
*/
612
package org.simplesim.core.messaging;
713

JSimpleSim/src/org/simplesim/core/messaging/SinglePort.java

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
/**
2-
* JSimpleSim is a framework to build multi-agent systems in a quick and easy way. This software is published as open
3-
* source and licensed under the terms of GNU GPLv3. Contributors: - Rene Kuhlemann - development and initial
4-
* implementation
1+
/*
2+
* JSimpleSim is a framework to build multi-agent systems in a quick and easy
3+
* way.
4+
*
5+
* This software is published as open source and licensed under the terms of GNU
6+
* GPLv3.
7+
*
8+
* Contributors:
9+
* - Rene Kuhlemann - development and initial implementation
10+
*
511
*/
612
package org.simplesim.core.messaging;
713

0 commit comments

Comments
 (0)