# HG changeset patch # User sugi # Date 1402918267 -32400 # Node ID cef1e0a46bb9394eb35b7cea7960be37b59e8d4e # Parent 1cbac5818dca3daf4f6568a9d45c40a77763a60d add setter diff -r 1cbac5818dca -r cef1e0a46bb9 src/main/java/alice/test/topology/aquarium/fx/FishInfo.java --- a/src/main/java/alice/test/topology/aquarium/fx/FishInfo.java Mon Jun 16 16:59:39 2014 +0900 +++ b/src/main/java/alice/test/topology/aquarium/fx/FishInfo.java Mon Jun 16 20:31:07 2014 +0900 @@ -34,12 +34,23 @@ return this.x; } + public void setX(double x){ + this.x = x; + } + public double getY(){ return this.y; } + public void setY(double y){ + this.y = y; + } + public double getZ(){ return this.z; } + public void setZ(double z){ + this.z = z; + } }