]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.diagram.connection/src/org/simantics/diagram/connection/DegeneratedRoutePoint.java
Avoid crashes with fully direct-routed connections
[simantics/platform.git] / bundles / org.simantics.diagram.connection / src / org / simantics / diagram / connection / DegeneratedRoutePoint.java
1 /*******************************************************************************
2  * Copyright (c) 2022 Association for Decentralized Information Management in
3  * Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     Semantum Oy - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.diagram.connection;
13
14 import gnu.trove.map.hash.THashMap;
15
16 /**
17  * Route point that is connected to two direct terminals.
18  * 
19  * @author Hannu Niemisto
20  */
21 public class DegeneratedRoutePoint extends RoutePoint {
22
23     public DegeneratedRoutePoint() {
24         super();
25     }
26
27     public DegeneratedRoutePoint(double x, double y) {
28         super(x, y);
29     }
30
31     @Override
32     DegeneratedRoutePoint copy(THashMap<Object, Object> map) {
33         DegeneratedRoutePoint copy = (DegeneratedRoutePoint) map.get(this);
34         if (copy == null) {
35             copy = new DegeneratedRoutePoint(x, y);
36             map.put(this, copy);
37         }
38         return copy;
39     }
40
41 }