Commit b3a38865 authored by Julian Zobel's avatar Julian Zobel
Browse files

Moved the current attraction point retrieval from the location sensor to the location actuator

parent e35637dd
......@@ -79,4 +79,12 @@ public interface LocationActuator extends LocationSensor {
throw new UnsupportedOperationException();
}
/**
* Retrieve the targeted {@link IAttractionPoint}, representing the location
* the node is currently approaching.
*
* @return
*/
public IAttractionPoint getCurrentTargetAttractionPoint();
}
......@@ -77,12 +77,5 @@ public interface LocationSensor extends SensorComponent {
*/
public LocationRequest getLocationRequest();
/**
* Retrieve the targeted {@link IAttractionPoint}, representing the location
* the node is currently approaching.
*
* @return
*/
public IAttractionPoint getCurrentTargetAttractionPoint();
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment