1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-31 15:40:48 +00:00
plantuml/src/net/sourceforge/plantuml/SkinParamDelegator.java

217 lines
5.6 KiB
Java
Raw Normal View History

2013-12-10 19:36:50 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2015-04-07 18:18:37 +00:00
* (C) Copyright 2009-2014, Arnaud Roques
2013-12-10 19:36:50 +00:00
*
* Project Info: http://plantuml.sourceforge.net
*
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* Original Author: Arnaud Roques
*
* Revision $Revision: 4246 $
*
*/
package net.sourceforge.plantuml;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.cucadiagram.Rankdir;
import net.sourceforge.plantuml.cucadiagram.Stereotype;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.cucadiagram.dot.DotSplines;
import net.sourceforge.plantuml.cucadiagram.dot.GraphvizLayoutStrategy;
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
import net.sourceforge.plantuml.graphic.HtmlColor;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.graphic.IHtmlColorSet;
2015-05-03 15:36:36 +00:00
import net.sourceforge.plantuml.graphic.SkinParameter;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.svek.ConditionStyle;
import net.sourceforge.plantuml.svek.PackageStyle;
import net.sourceforge.plantuml.ugraphic.ColorMapper;
import net.sourceforge.plantuml.ugraphic.Sprite;
import net.sourceforge.plantuml.ugraphic.UFont;
import net.sourceforge.plantuml.ugraphic.UStroke;
public class SkinParamDelegator implements ISkinParam {
final private ISkinParam skinParam;
public SkinParamDelegator(ISkinParam skinParam) {
this.skinParam = skinParam;
}
2015-04-07 18:18:37 +00:00
public HtmlColor getHyperlinkColor() {
return skinParam.getHyperlinkColor();
}
2013-12-10 19:36:50 +00:00
public HtmlColor getBackgroundColor() {
return skinParam.getBackgroundColor();
}
public int getCircledCharacterRadius() {
return skinParam.getCircledCharacterRadius();
}
2015-04-07 18:18:37 +00:00
public UFont getFont(FontParam fontParam, Stereotype stereotype, boolean inPackageTitle) {
return skinParam.getFont(fontParam, stereotype, false);
2013-12-10 19:36:50 +00:00
}
2015-04-07 18:18:37 +00:00
public HtmlColor getFontHtmlColor(FontParam param, Stereotype stereotype) {
2013-12-10 19:36:50 +00:00
return skinParam.getFontHtmlColor(param, stereotype);
}
2015-04-07 18:18:37 +00:00
public HtmlColor getHtmlColor(ColorParam param, Stereotype stereotype, boolean clickable) {
2013-12-10 19:36:50 +00:00
return skinParam.getHtmlColor(param, stereotype, clickable);
}
public String getValue(String key) {
return skinParam.getValue(key);
}
public int classAttributeIconSize() {
return skinParam.classAttributeIconSize();
}
public int getDpi() {
return skinParam.getDpi();
}
public DotSplines getDotSplines() {
return skinParam.getDotSplines();
}
public GraphvizLayoutStrategy getStrategy() {
return skinParam.getStrategy();
}
public HorizontalAlignment getHorizontalAlignment(AlignParam param) {
return skinParam.getHorizontalAlignment(param);
}
public ColorMapper getColorMapper() {
return skinParam.getColorMapper();
}
public boolean shadowing() {
return skinParam.shadowing();
2015-05-03 15:36:36 +00:00
}
public boolean shadowing2(SkinParameter skinParameter) {
return skinParam.shadowing2(skinParameter);
2013-12-10 19:36:50 +00:00
}
public PackageStyle getPackageStyle() {
return skinParam.getPackageStyle();
}
public Sprite getSprite(String name) {
return skinParam.getSprite(name);
}
public boolean useUml2ForComponent() {
return skinParam.useUml2ForComponent();
}
public boolean stereotypePositionTop() {
return skinParam.stereotypePositionTop();
}
2015-04-07 18:18:37 +00:00
public boolean useSwimlanes(UmlDiagramType type) {
return skinParam.useSwimlanes(type);
2013-12-10 19:36:50 +00:00
}
public double getNodesep() {
return skinParam.getNodesep();
}
public double getRanksep() {
return skinParam.getRanksep();
}
public double getRoundCorner() {
return skinParam.getRoundCorner();
}
2015-04-07 18:18:37 +00:00
public UStroke getThickness(LineParam param, Stereotype stereotype) {
return skinParam.getThickness(param, stereotype);
2013-12-10 19:36:50 +00:00
}
public double maxMessageSize() {
return skinParam.maxMessageSize();
}
public boolean strictUmlStyle() {
return skinParam.strictUmlStyle();
}
public boolean forceSequenceParticipantUnderlined() {
return skinParam.forceSequenceParticipantUnderlined();
}
public ConditionStyle getConditionStyle() {
return skinParam.getConditionStyle();
}
public double minClassWidth() {
return skinParam.minClassWidth();
}
public boolean sameClassWidth() {
return skinParam.sameClassWidth();
}
2015-04-07 18:18:37 +00:00
public Rankdir getRankdir() {
return skinParam.getRankdir();
}
public boolean useOctagonForActivity(Stereotype stereotype) {
return skinParam.useOctagonForActivity(stereotype);
}
public IHtmlColorSet getIHtmlColorSet() {
return skinParam.getIHtmlColorSet();
}
public boolean useUnderlineForHyperlink() {
return skinParam.useUnderlineForHyperlink();
}
public HorizontalAlignment getDefaultTextAlignment() {
return skinParam.getDefaultTextAlignment();
}
public double getPadding() {
return skinParam.getPadding();
}
public int groupInheritance() {
return skinParam.groupInheritance();
}
public boolean useGuillemet() {
return skinParam.useGuillemet();
}
public boolean handwritten() {
return skinParam.handwritten();
}
2013-12-10 19:36:50 +00:00
}