Mercurial > hg > Database > Alice
annotate src/main/java/alice/test/topology/aquarium/fx/AquariumConfig.java @ 544:90019fe596c4 dispose
add AliceDaemon on paramater, add static ods in Aquarium.java
author | Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 03 Aug 2015 20:13:57 +0900 |
parents | b8fe79f0c764 |
children |
rev | line source |
---|---|
421
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
1 package alice.test.topology.aquarium.fx; |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
2 |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
3 import alice.topology.node.TopologyNodeConfig; |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
4 |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
5 public class AquariumConfig extends TopologyNodeConfig { |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
6 |
522 | 7 public String type = "TUNA"; |
467 | 8 |
421
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
9 public AquariumConfig(String[] args) { |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
10 super(args); |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
11 for (int i = 0; i< args.length; i++) { |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
12 if ("-type".equals(args[i])) { |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
13 type = args[++i]; |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
14 } |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
15 } |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
16 } |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
17 |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
18 } |