Mercurial > hg > Database > Alice
annotate src/main/java/alice/test/topology/aquarium/fx/AquariumConfig.java @ 467:6e304a7a60e7 dispose
remove white space
author | sugi |
---|---|
date | Sat, 22 Nov 2014 12:08:24 +0900 |
parents | fdac53a9101f |
children | b8fe79f0c764 |
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 |
fdac53a9101f
could assign FIsh Object type. but occur ArrayIndexOutOfBoundsException in importer
sugi
parents:
diff
changeset
|
7 public String type = "DEFAULT"; |
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 } |