Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/service/shape/AbstractShapeProvider.java')
-rw-r--r--plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/service/shape/AbstractShapeProvider.java17
1 files changed, 7 insertions, 10 deletions
diff --git a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/service/shape/AbstractShapeProvider.java b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/service/shape/AbstractShapeProvider.java
index 4a4af7a6634..555f65cfdd5 100644
--- a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/service/shape/AbstractShapeProvider.java
+++ b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus/infra/gmfdiag/common/service/shape/AbstractShapeProvider.java
@@ -20,7 +20,7 @@ import java.util.HashMap;
import java.util.Map;
import java.util.WeakHashMap;
-import org.apache.batik.anim.dom.SAXSVGDocumentFactory;
+import org.apache.batik.dom.svg.SAXSVGDocumentFactory;
import org.apache.batik.dom.util.DOMUtilities;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.draw2d.PositionConstants;
@@ -165,12 +165,12 @@ public abstract class AbstractShapeProvider extends AbstractProvider implements
*/
protected synchronized SVGDocument getSVGDocument(EObject view, String location) {
if (relativePaths == null) {
- relativePaths = new WeakHashMap<>();
+ relativePaths = new WeakHashMap<Resource, Map<String, String>>();
}
- if (location.contains("/" + POSITION_KEY) || location.contains("." + POSITION_KEY)) { //$NON-NLS-1$//$NON-NLS-2$
+ if (location.contains("/" + POSITION_KEY) || location.contains("." + POSITION_KEY)) { //$NON-NLS-1$//$NON-NLS-2$
// load a specific variant of a symbol (with a different orientation) if the file name
// contains a specific "magic" key. The motivation is that symbols on the border of a parent
- // (e.g. a port symbol) could always point into the parent shape depending on its position
+ // (e.g. a port symbol) could always point into the parent shape depending on its position
try {
IMultiDiagramEditor editor = ServiceUtilsForEObject.getInstance().getService(IMultiDiagramEditor.class, view);
@@ -201,9 +201,7 @@ public abstract class AbstractShapeProvider extends AbstractProvider implements
/**
* Get a position key (enumeration) from the bit-vector representation of the position
- *
- * @param side
- * the binary encoded position
+ * @param side the binary encoded position
* @return the position key
*/
protected PositionEnum getPositionKey(int side) {
@@ -218,7 +216,6 @@ public abstract class AbstractShapeProvider extends AbstractProvider implements
return PositionEnum.SOUTH;
}
}
-
/**
* Loads a SVG document from the given location.
* This method uses a cache so that any given document is only loaded once.
@@ -229,7 +226,7 @@ public abstract class AbstractShapeProvider extends AbstractProvider implements
*/
protected synchronized SVGDocument getSVGDocument(String location) {
if (cache == null) {
- cache = new HashMap<>();
+ cache = new HashMap<String, SVGDocument>();
}
if (cache.containsKey(location)) {
return cache.get(location);
@@ -288,7 +285,7 @@ public abstract class AbstractShapeProvider extends AbstractProvider implements
Map<String, String> resMap = relativePaths.get(model.eResource());
if (resMap == null) {
- resMap = new HashMap<>();
+ resMap = new HashMap<String, String>();
relativePaths.put(model.eResource(), resMap);
}
String canonical = resMap.get(uri);

Back to the top