1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-31 23:50:49 +00:00
plantuml/src/net/sourceforge/plantuml/cucadiagram/LinkStyle.java
2022-03-07 20:33:46 +01:00

154 lines
3.5 KiB
Java

/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2023, Arnaud Roques
*
* Project Info: http://plantuml.com
*
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
* 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.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml.cucadiagram;
import net.sourceforge.plantuml.ugraphic.UStroke;
public class LinkStyle {
static enum Type {
NORMAL, DASHED, DOTTED, BOLD, INVISIBLE;
}
private LinkStyle(Type type, Double thickness) {
this.type = type;
this.thickness = thickness;
}
private final Type type;
private final Double thickness;
@Override
public String toString() {
return type.toString() + "(" + thickness + ")";
}
// DOUBLE_tobedone, __toremove_INTERFACE_PROVIDER, __toremove_INTERFACE_USER;
// private UStroke getStroke2() {
// return getStroke2(1);
// }
public boolean isNormal() {
return type == Type.NORMAL;
}
public boolean isInvisible() {
return type == Type.INVISIBLE;
}
public static LinkStyle NORMAL() {
return new LinkStyle(Type.NORMAL, null);
}
public static LinkStyle INVISIBLE() {
return new LinkStyle(Type.INVISIBLE, null);
}
public static LinkStyle BOLD() {
return new LinkStyle(Type.BOLD, null);
}
public static LinkStyle DOTTED() {
return new LinkStyle(Type.DOTTED, null);
}
public static LinkStyle DASHED() {
return new LinkStyle(Type.DASHED, null);
}
public LinkStyle goThickness(double thickness) {
return new LinkStyle(type, thickness);
}
public UStroke getStroke3() {
if (type == Type.DASHED) {
return new UStroke(7, 7, nonZeroThickness());
}
if (type == Type.DOTTED) {
return new UStroke(1, 3, nonZeroThickness());
}
if (type == Type.BOLD) {
return new UStroke(2);
}
return new UStroke(nonZeroThickness());
}
public UStroke muteStroke(UStroke stroke) {
if (type == Type.DASHED || type == Type.DOTTED || type == Type.BOLD) {
return getStroke3();
}
return stroke;
}
private double nonZeroThickness() {
if (thickness == null) {
return 1;
}
return thickness;
}
public static LinkStyle fromString1(String s) {
final LinkStyle result = fromString2(s);
if (result == null) {
return LinkStyle.NORMAL();
}
return result;
}
public static LinkStyle fromString2(String s) {
if ("dashed".equalsIgnoreCase(s)) {
return DASHED();
}
if ("dotted".equalsIgnoreCase(s)) {
return DOTTED();
}
if ("bold".equalsIgnoreCase(s)) {
return BOLD();
}
if ("hidden".equalsIgnoreCase(s)) {
return INVISIBLE();
}
return null;
}
public boolean isThicknessOverrided() {
return thickness != null;
}
}