-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNode.java
47 lines (41 loc) · 1.13 KB
/
Node.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import java.awt.*;
import java.awt.geom.*;
import java.io.*;
/**
A node in a graph.
*/
public interface Node extends Serializable, Cloneable
{
/**
Draw the node.
@param g2 the graphics context
*/
void draw(Graphics2D g2);
/**
Translates the node by a given amount.
@param dx the amount to translate in the x-direction
@param dy the amount to translate in the y-direction
*/
void translate(double dx, double dy);
/**
Tests whether the node contains a point.
@param aPoint the point to test
@return true if this node contains aPoint
*/
boolean contains(Point2D aPoint);
/**
Get the best connection point to connect this node
with another node. This should be a point on the boundary
of the shape of this node.
@param aPoint an exterior point that is to be joined
with this node
@return the recommended connection point
*/
Point2D getConnectionPoint(Point2D aPoint);
/**
Get the bounding rectangle of the shape of this node
@return the bounding rectangle
*/
Rectangle2D getBounds();
Object clone();
}