Mercurial > hg > Database > Alice
annotate src/main/java/alice/test/topology/aquarium/fx/AquariumConfig.java @ 522:b8fe79f0c764 dispose
add TUNA collada file
author | sugi |
---|---|
date | Fri, 23 Jan 2015 23:53:36 +0900 |
parents | 6e304a7a60e7 |
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 } |