changeset 388:cef1e0a46bb9 multicast

add setter
author sugi
date Mon, 16 Jun 2014 20:31:07 +0900
parents 1cbac5818dca
children 4515fe620e3a
files src/main/java/alice/test/topology/aquarium/fx/FishInfo.java
diffstat 1 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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;
+	} 
 }