/* * Copyright (c) 2005-2010 KOM – Multimedia Communications Lab * * This file is part of PeerfactSim.KOM. * * PeerfactSim.KOM is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * PeerfactSim.KOM is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with PeerfactSim.KOM. If not, see . * */ package de.tud.kom.p2psim.impl.topology.movement.modularosm.attraction; import java.util.Random; import de.tud.kom.p2psim.impl.topology.PositionVector; import de.tudarmstadt.maki.simonstrator.api.Randoms; import de.tudarmstadt.maki.simonstrator.api.component.sensor.location.AttractionPoint; /** * In the current implementation, {@link AttractionPoint}s cannot move anymore. * * * @author Christoph Muenker, Bjoern Richerzhagen * @version 1.0, 02.07.2013 */ public class AttractionPointImpl extends PositionVector implements AttractionPoint { protected static Random rnd = Randoms.getRandom(AttractionPoint.class); private String name; public AttractionPointImpl(String name, PositionVector posVec) { super(posVec); this.name = name; } @Override public String getName() { return name; } @Override public AttractionPoint clone(String newName) { return new AttractionPointImpl(name, this); } @Override public int hashCode() { final int prime = 31; int result = prime * ((name == null) ? 0 : name.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (getClass() != obj.getClass()) return false; AttractionPointImpl other = (AttractionPointImpl) obj; if (name == null) { if (other.name != null) return false; } else if (!name.equals(other.name)) return false; return true; } }