Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Le Menez2018-06-01 13:15:29 +0000
committerQuentin Le Menez2018-06-01 14:39:48 +0000
commit2ce4f4503472de9c339367fd0e384e9d19a3c75b (patch)
tree2f982c4cc49230690095d46ac94ebf52b2ce4de0 /plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus
parent8b0b693d70f629acd8a0acb39e79d644eafccf3a (diff)
downloadorg.eclipse.papyrus-2ce4f4503472de9c339367fd0e384e9d19a3c75b.tar.gz
org.eclipse.papyrus-2ce4f4503472de9c339367fd0e384e9d19a3c75b.tar.xz
org.eclipse.papyrus-2ce4f4503472de9c339367fd0e384e9d19a3c75b.zip
Revert "Bug 533804 - [Diagram] Update batik dependencies for 1.9.1"
- This reverts the migration to Batik 1.9.1 as the problems encountered warrant to postpone it This reverts commit aea9db22620bbc8b466b48ea7dd958bd004c91e4. Change-Id: I15546c71d6a1868773a78459e604fe0babefbf6b Signed-off-by: Quentin Le Menez <quentin.lemenez@cea.fr>
Diffstat (limited to 'plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src/org/eclipse/papyrus')
-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