summaryrefslogtreecommitdiff
path: root/src/net/sourceforge/plantuml/salt/Dictionary.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/sourceforge/plantuml/salt/Dictionary.java')
-rw-r--r--src/net/sourceforge/plantuml/salt/Dictionary.java17
1 files changed, 13 insertions, 4 deletions
diff --git a/src/net/sourceforge/plantuml/salt/Dictionary.java b/src/net/sourceforge/plantuml/salt/Dictionary.java
index 2c12abc..3157d50 100644
--- a/src/net/sourceforge/plantuml/salt/Dictionary.java
+++ b/src/net/sourceforge/plantuml/salt/Dictionary.java
@@ -2,7 +2,7 @@
* PlantUML : a free UML diagram generator
* ========================================================================
*
- * (C) Copyright 2009-2017, Arnaud Roques
+ * (C) Copyright 2009-2020, Arnaud Roques
*
* Project Info: http://plantuml.com
*
@@ -38,6 +38,7 @@ package net.sourceforge.plantuml.salt;
import java.util.HashMap;
import java.util.Map;
+import net.sourceforge.plantuml.Guillemet;
import net.sourceforge.plantuml.ISkinSimple;
import net.sourceforge.plantuml.LineBreakStrategy;
import net.sourceforge.plantuml.SpriteContainer;
@@ -46,9 +47,9 @@ import net.sourceforge.plantuml.graphic.HtmlColorSetSimple;
import net.sourceforge.plantuml.graphic.IHtmlColorSet;
import net.sourceforge.plantuml.salt.element.Element;
import net.sourceforge.plantuml.salt.element.WrappedElement;
+import net.sourceforge.plantuml.sprite.Sprite;
import net.sourceforge.plantuml.ugraphic.ColorMapper;
import net.sourceforge.plantuml.ugraphic.ColorMapperIdentity;
-import net.sourceforge.plantuml.ugraphic.sprite.Sprite;
public class Dictionary implements SpriteContainer, ISkinSimple {
@@ -78,8 +79,8 @@ public class Dictionary implements SpriteContainer, ISkinSimple {
return 0;
}
- public boolean useGuillemet() {
- return true;
+ public Guillemet guillemet() {
+ return Guillemet.GUILLEMET;
}
public String getMonospacedFamily() {
@@ -113,4 +114,12 @@ public class Dictionary implements SpriteContainer, ISkinSimple {
return new ColorMapperIdentity();
}
+ public void copyAllFrom(ISkinSimple other) {
+ throw new UnsupportedOperationException();
+ }
+
+ public Map<String, String> values() {
+ throw new UnsupportedOperationException();
+ }
+
}