Source code: com/port80/graph/dot/impl/DotPathEnd.java
1 //
2 // Copyright(c) 2002, Chris Leung
3 //
4
5 package com.port80.graph.dot.impl;
6
7 import com.port80.util.msg;
8
9 public class DotPathEnd extends DotBoxList {
10
11 ////////////////////////////////////////////////////////////////////////
12
13 private static final String NAME="DotPathEnd";
14
15 ////////////////////////////////////////////////////////////////////////
16
17 IntPoint port; /* node port attach location. */
18 int sidemask;
19
20 ////////////////////////////////////////////////////////////////////////
21
22 public DotPathEnd(int n) {
23 super(n);
24 port = new IntPoint();
25 }
26
27 ////////////////////////////////////////////////////////////////////////
28
29 }