19 строки
387 Б
Java
19 строки
387 Б
Java
package org.insa.graphics.drawing.overlays;
|
|
|
|
import org.insa.graph.Point;
|
|
|
|
public interface MarkerOverlay extends Overlay {
|
|
|
|
/**
|
|
* @return The current position of this marker.
|
|
*/
|
|
public Point getPoint();
|
|
|
|
/**
|
|
* Move this marker to the specified location.
|
|
*
|
|
* @param point New position for the marker.
|
|
*/
|
|
public void moveTo(Point point);
|
|
|
|
}
|