1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-05 01:50:49 +00:00
plantuml/src/net/sourceforge/plantuml/ISkinParam.java

102 lines
2.9 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2013-12-10 19:36:50 +00:00
* (C) Copyright 2009-2013, Arnaud Roques
2010-11-15 20:35:36 +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
2013-12-10 19:36:50 +00:00
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
2010-11-15 20:35:36 +00:00
* 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: 4236 $
*
*/
package net.sourceforge.plantuml;
2011-03-26 12:37:27 +00:00
import net.sourceforge.plantuml.cucadiagram.dot.DotSplines;
import net.sourceforge.plantuml.cucadiagram.dot.GraphvizLayoutStrategy;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.graphic.HtmlColor;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.svek.ConditionStyle;
import net.sourceforge.plantuml.svek.PackageStyle;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.ugraphic.ColorMapper;
import net.sourceforge.plantuml.ugraphic.UFont;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.ugraphic.UStroke;
2010-11-15 20:35:36 +00:00
2013-12-10 19:36:50 +00:00
public interface ISkinParam extends SpriteContainer {
2010-11-15 20:35:36 +00:00
public HtmlColor getBackgroundColor();
public String getValue(String key);
2013-12-10 19:36:50 +00:00
public HtmlColor getHtmlColor(ColorParam param, String stereotype, boolean clickable);
2010-11-15 20:35:36 +00:00
2011-01-05 18:23:06 +00:00
public HtmlColor getFontHtmlColor(FontParam param, String stereotype);
2010-11-15 20:35:36 +00:00
2013-12-10 19:36:50 +00:00
public UStroke getThickness(LineParam param);
2011-08-08 17:48:29 +00:00
public UFont getFont(FontParam fontParam, String stereotype);
2013-12-10 19:36:50 +00:00
public HorizontalAlignment getHorizontalAlignment(AlignParam param);
2010-11-15 20:35:36 +00:00
public int getCircledCharacterRadius();
public int classAttributeIconSize();
2013-12-10 19:36:50 +00:00
2011-08-08 17:48:29 +00:00
public ColorMapper getColorMapper();
2013-12-10 19:36:50 +00:00
2011-01-05 18:23:06 +00:00
public int getDpi();
2013-12-10 19:36:50 +00:00
2011-03-26 12:37:27 +00:00
public DotSplines getDotSplines();
2013-12-10 19:36:50 +00:00
2011-03-26 12:37:27 +00:00
public GraphvizLayoutStrategy getStrategy();
2013-12-10 19:36:50 +00:00
public boolean shadowing();
public PackageStyle getPackageStyle();
public boolean useUml2ForComponent();
public boolean stereotypePositionTop();
public boolean useSwimlanes();
public double getNodesep();
public double getRanksep();
public double getRoundCorner();
public double maxMessageSize();
public boolean strictUmlStyle();
public boolean forceSequenceParticipantUnderlined();
public ConditionStyle getConditionStyle();
2011-09-07 20:41:58 +00:00
2013-12-10 19:36:50 +00:00
public double minClassWidth();
2011-09-08 10:42:27 +00:00
2013-12-10 19:36:50 +00:00
public boolean sameClassWidth();
2010-11-15 20:35:36 +00:00
}