public class Adj { public Vertex vertex; public Construct ns; public Adj(Vertex vertex, Construct ns) { this.vertex = vertex; this.ns = ns; } }