package de.thmundt.particleklo; public class Particle { private double speed; private double distance = 0; private double weight = 0; private double normalizedweight = 0; private int tempweight = 0; private Path path; public double getSpeed() { return speed; } public void setSpeed(double speed) { this.speed = speed; } public double getDistance() { return distance; } public void setDistance(double distance) { this.distance = distance; } public int getTempWeight() { return tempweight; } public void setTempWeight(int tempweight) { this.tempweight = tempweight; } public Path getPath() { return path; } public void setPath(Path path) { this.path = path; } public double getWeight() { return weight; } public void setWeight(double weight) { this.weight = weight; } public double getNormalizedweight() { return normalizedweight; } public void setNormalizedweight(double normalizedweight) { this.normalizedweight = normalizedweight; } }