Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Le Menez2018-04-22 09:47:54 +0000
committerQuentin Le Menez2018-04-22 13:43:28 +0000
commitaea9db22620bbc8b466b48ea7dd958bd004c91e4 (patch)
treed2f1994c8a9b97247accfa8b198a47a7a500d108 /plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src
parent583f3e40fbbd646a5e13b3db29bbba77fb9efb0a (diff)
downloadorg.eclipse.papyrus-aea9db22620bbc8b466b48ea7dd958bd004c91e4.tar.gz
org.eclipse.papyrus-aea9db22620bbc8b466b48ea7dd958bd004c91e4.tar.xz
org.eclipse.papyrus-aea9db22620bbc8b466b48ea7dd958bd004c91e4.zip
Bug 533804 - [Diagram] Update batik dependencies for 1.9.1
- Update the targetplatforms to set the required dependency to 1.9.1 from the latest M6 Orbit repository - Rebase the platforms on the latest integration builds Change-Id: Ib57fb5c3b322fcd880ec4f7a7d1ba06b9bfea2a2 Signed-off-by: Quentin Le Menez <quentin.lemenez@cea.fr>
Diffstat (limited to 'plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.common/src')
-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, 10 insertions, 7 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 555f65cfdd5..4a4af7a6634 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.dom.svg.SAXSVGDocumentFactory;
+import org.apache.batik.anim.dom.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<Resource, Map<String, String>>();
+ relativePaths = new WeakHashMap<>();
}
- 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,7 +201,9 @@ 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) {
@@ -216,6 +218,7 @@ 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.
@@ -226,7 +229,7 @@ public abstract class AbstractShapeProvider extends AbstractProvider implements
*/
protected synchronized SVGDocument getSVGDocument(String location) {
if (cache == null) {
- cache = new HashMap<String, SVGDocument>();
+ cache = new HashMap<>();
}
if (cache.containsKey(location)) {
return cache.get(location);
@@ -285,7 +288,7 @@ public abstract class AbstractShapeProvider extends AbstractProvider implements
Map<String, String> resMap = relativePaths.get(model.eResource());
if (resMap == null) {
- resMap = new HashMap<String, String>();
+ resMap = new HashMap<>();
relativePaths.put(model.eResource(), resMap);
}
String canonical = resMap.get(uri);

Back to the top