2010-11-15 20:35:36 +00:00
|
|
|
/* ========================================================================
|
|
|
|
* PlantUML : a free UML diagram generator
|
|
|
|
* ========================================================================
|
|
|
|
*
|
|
|
|
* (C) Copyright 2009, Arnaud Roques
|
|
|
|
*
|
|
|
|
* 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 Lesser 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: 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;
|
2011-08-08 17:48:29 +00:00
|
|
|
import net.sourceforge.plantuml.graphic.HorizontalAlignement;
|
2010-11-15 20:35:36 +00:00
|
|
|
import net.sourceforge.plantuml.graphic.HtmlColor;
|
2011-08-08 17:48:29 +00:00
|
|
|
import net.sourceforge.plantuml.ugraphic.ColorMapper;
|
|
|
|
import net.sourceforge.plantuml.ugraphic.UFont;
|
2010-11-15 20:35:36 +00:00
|
|
|
|
|
|
|
public interface ISkinParam {
|
|
|
|
|
|
|
|
public HtmlColor getBackgroundColor();
|
|
|
|
|
|
|
|
public String getValue(String key);
|
|
|
|
|
2011-01-05 18:23:06 +00:00
|
|
|
public HtmlColor getHtmlColor(ColorParam param, String stereotype);
|
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
|
|
|
|
2011-08-08 17:48:29 +00:00
|
|
|
public UFont getFont(FontParam fontParam, String stereotype);
|
|
|
|
|
|
|
|
public HorizontalAlignement getHorizontalAlignement(AlignParam param);
|
2010-11-15 20:35:36 +00:00
|
|
|
|
|
|
|
public int getCircledCharacterRadius();
|
|
|
|
|
|
|
|
public boolean isClassCollapse();
|
|
|
|
|
|
|
|
public int classAttributeIconSize();
|
|
|
|
|
2011-08-08 17:48:29 +00:00
|
|
|
public ColorMapper getColorMapper();
|
2011-01-05 18:23:06 +00:00
|
|
|
|
|
|
|
public int getDpi();
|
2011-02-23 21:14:39 +00:00
|
|
|
|
|
|
|
public boolean useOctagonForActivity();
|
2011-03-26 12:37:27 +00:00
|
|
|
|
|
|
|
public DotSplines getDotSplines();
|
|
|
|
|
|
|
|
public GraphvizLayoutStrategy getStrategy();
|
2011-09-07 20:41:58 +00:00
|
|
|
|
|
|
|
public boolean isSvek();
|
2011-09-08 10:42:27 +00:00
|
|
|
|
|
|
|
public boolean shadowing();
|
2010-11-15 20:35:36 +00:00
|
|
|
|
|
|
|
}
|