4546474849505152
private TreeSet registrations = new TreeSet(); private AgentXRegion region; public AgentXNode(AgentXRegion region, AgentXRegEntry registration) { this.region = new AgentXRegion(region); this.registrations.add(registration); }
5051525354555657
this.region = new AgentXRegion(region); this.registrations.add(registration); } protected AgentXNode(AgentXRegion region, TreeSet registrations) { this.region = new AgentXRegion(region); this.registrations = registrations; }
5556575859606162
this.region = new AgentXRegion(region); this.registrations = registrations; } public AgentXNode getClone(AgentXRegion region) { return new AgentXNode(new AgentXRegion(region), (TreeSet)registrations.clone()); }