source: src/main/java/agents/anac/y2013/MetaAgent/parser/nn/Arrow.java

Last change on this file was 127, checked in by Wouter Pasman, 6 years ago

#41 ROLL BACK of rev.126 . So this version is equal to rev. 125

File size: 403 bytes
Line 
1package agents.anac.y2013.MetaAgent.parser.nn;
2
3public class Arrow {
4 int sourceId;
5 int destId;
6 double value;
7 public Arrow(int sourceId, int destId, double value) {
8 this.sourceId = sourceId;
9 this.destId = destId;
10 this.value = value;
11 }
12 @Override
13 public String toString() {
14 return "Arrow [sourceId=" + sourceId + ", destId=" + destId
15 + ", value=" + value + "]";
16 }
17
18}
Note: See TracBrowser for help on using the repository browser.