![JAR search and dependency download from the Maven repository](/logo.png)
net.sourceforge.plantuml.skin.ArrowConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml Show documentation
Show all versions of plantuml Show documentation
PlantUML is a component that allows to quickly write :
* sequence diagram,
* use case diagram,
* class diagram,
* activity diagram,
* component diagram,
* state diagram
* object diagram
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2024, Arnaud Roques
*
* Project Info: https://plantuml.com
*
* If you like this project or if you find it useful, you can support us at:
*
* https://plantuml.com/patreon (only 1$ per month!)
* https://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.skin;
import java.util.Objects;
import net.sourceforge.plantuml.klimt.UStroke;
import net.sourceforge.plantuml.klimt.color.HColor;
import net.sourceforge.plantuml.klimt.drawing.UGraphic;
public class ArrowConfiguration {
private final ArrowBody body;
private final ArrowDressing dressing1;
private final ArrowDressing dressing2;
private final ArrowDecoration decoration1;
private final ArrowDecoration decoration2;
private final HColor color;
private final boolean isSelf;
private final double thickness;
private final boolean reverseDefine;
private final int inclination;
private ArrowConfiguration(ArrowBody body, ArrowDressing dressing1, ArrowDressing dressing2,
ArrowDecoration decoration1, ArrowDecoration decoration2, HColor color, boolean isSelf, double thickness,
boolean reverseDefine, int inclination) {
this.reverseDefine = reverseDefine;
this.thickness = thickness;
this.body = Objects.requireNonNull(body);
this.dressing1 = Objects.requireNonNull(dressing1);
this.dressing2 = Objects.requireNonNull(dressing2);
this.decoration1 = decoration1;
this.decoration2 = decoration2;
this.color = color;
this.isSelf = isSelf;
this.inclination = inclination;
}
@Override
public String toString() {
return name();
}
public String name() {
return body.name() + "(" + dressing1.name() + " " + decoration1 + ")(" + dressing2.name() + " " + decoration2
+ ")" + isSelf + " " + color;
}
public static ArrowConfiguration withDirectionNormal() {
return new ArrowConfiguration(ArrowBody.NORMAL, ArrowDressing.create(),
ArrowDressing.create().withHead(ArrowHead.NORMAL), ArrowDecoration.NONE, ArrowDecoration.NONE, null,
false, 1, false, 0);
}
public static ArrowConfiguration withDirectionBoth() {
return new ArrowConfiguration(ArrowBody.NORMAL, ArrowDressing.create().withHead(ArrowHead.NORMAL),
ArrowDressing.create().withHead(ArrowHead.NORMAL), ArrowDecoration.NONE, ArrowDecoration.NONE, null,
false, 1, false, 0);
}
public static ArrowConfiguration withDirectionSelf(boolean reverseDefine) {
return new ArrowConfiguration(ArrowBody.NORMAL, ArrowDressing.create(),
ArrowDressing.create().withHead(ArrowHead.NORMAL), ArrowDecoration.NONE, ArrowDecoration.NONE, null,
true, 1, reverseDefine, 0);
}
public static ArrowConfiguration withDirectionReverse() {
return withDirectionNormal().reverse();
}
public ArrowConfiguration reverse() {
return new ArrowConfiguration(body, dressing2, dressing1, decoration2, decoration1, color, isSelf, thickness,
reverseDefine, inclination);
}
public ArrowConfiguration self() {
return new ArrowConfiguration(body, dressing1, dressing2, decoration1, decoration2, color, true, thickness,
reverseDefine, inclination);
}
public ArrowConfiguration withBody(ArrowBody type) {
return new ArrowConfiguration(type, dressing1, dressing2, decoration1, decoration2, color, isSelf, thickness,
reverseDefine, inclination);
}
public ArrowConfiguration withHead(ArrowHead head) {
final ArrowDressing newDressing1 = addHead(dressing1, head);
final ArrowDressing newDressing2 = addHead(dressing2, head);
return new ArrowConfiguration(body, newDressing1, newDressing2, decoration1, decoration2, color, isSelf,
thickness, reverseDefine, inclination);
}
private static ArrowDressing addHead(ArrowDressing dressing, ArrowHead head) {
if (dressing.getHead() == ArrowHead.NONE)
return dressing;
return dressing.withHead(head);
}
public ArrowConfiguration withHead1(ArrowHead head) {
return new ArrowConfiguration(body, dressing1.withHead(head), dressing2, decoration1, decoration2, color,
isSelf, thickness, reverseDefine, inclination);
}
public ArrowConfiguration withHead2(ArrowHead head) {
return new ArrowConfiguration(body, dressing1, dressing2.withHead(head), decoration1, decoration2, color,
isSelf, thickness, reverseDefine, inclination);
}
public ArrowConfiguration withPart(ArrowPart part) {
if (dressing2.getHead() != ArrowHead.NONE)
return new ArrowConfiguration(body, dressing1, dressing2.withPart(part), decoration1, decoration2, color,
isSelf, thickness, reverseDefine, inclination);
return new ArrowConfiguration(body, dressing1.withPart(part), dressing2, decoration1, decoration2, color,
isSelf, thickness, reverseDefine, inclination);
}
public ArrowConfiguration withDecoration1(ArrowDecoration decoration1) {
return new ArrowConfiguration(body, dressing1, dressing2, decoration1, decoration2, color, isSelf, thickness,
reverseDefine, inclination);
}
public ArrowConfiguration withDecoration2(ArrowDecoration decoration2) {
return new ArrowConfiguration(body, dressing1, dressing2, decoration1, decoration2, color, isSelf, thickness,
reverseDefine, inclination);
}
public ArrowConfiguration withColor(HColor color) {
return new ArrowConfiguration(body, dressing1, dressing2, decoration1, decoration2, color, isSelf, thickness,
reverseDefine, inclination);
}
public final ArrowDecoration getDecoration1() {
return this.decoration1;
}
public final ArrowDecoration getDecoration2() {
return this.decoration2;
}
public final ArrowDirection getArrowDirection() {
if (isSelf)
return ArrowDirection.SELF;
if (this.dressing1.getHead() == ArrowHead.NONE && this.dressing2.getHead() != ArrowHead.NONE)
return ArrowDirection.LEFT_TO_RIGHT_NORMAL;
if (this.dressing1.getHead() != ArrowHead.NONE && this.dressing2.getHead() == ArrowHead.NONE)
return ArrowDirection.RIGHT_TO_LEFT_REVERSE;
return ArrowDirection.BOTH_DIRECTION;
}
public boolean isSelfArrow() {
return getArrowDirection() == ArrowDirection.SELF;
}
public boolean isDotted() {
return body == ArrowBody.DOTTED;
}
public boolean isHidden() {
return body == ArrowBody.HIDDEN;
}
public ArrowHead getHead() {
if (dressing2 != null && dressing2.getHead() != ArrowHead.NONE)
return dressing2.getHead();
return dressing1.getHead();
}
public boolean isAsync1() {
return dressing1.getHead() == ArrowHead.ASYNC;
}
public boolean isAsync2() {
return dressing2.getHead() == ArrowHead.ASYNC;
}
public final ArrowPart getPart() {
if (dressing2.getHead() != ArrowHead.NONE)
return dressing2.getPart();
return dressing1.getPart();
}
public HColor getColor() {
return color;
}
public ArrowDressing getDressing1() {
return dressing1;
}
public ArrowDressing getDressing2() {
return dressing2;
}
public static UGraphic stroke(UGraphic ug, double dashVisible, double dashSpace, double thickness) {
return ug.apply(new UStroke(dashVisible, dashSpace, thickness));
}
public UGraphic applyStroke(UGraphic ug) {
if (isDotted())
return ug.apply(new UStroke(2, 2, thickness));
return ug.apply(UStroke.withThickness(thickness));
}
public UGraphic applyThicknessOnly(UGraphic ug) {
return ug.apply(UStroke.withThickness(thickness));
}
public ArrowConfiguration withThickness(double thickness) {
return new ArrowConfiguration(body, dressing1, dressing2, decoration1, decoration2, color, isSelf, thickness,
reverseDefine, inclination);
}
public ArrowConfiguration reverseDefine() {
return new ArrowConfiguration(body, dressing1, dressing2, decoration1, decoration2, color, isSelf, thickness,
!reverseDefine, inclination);
}
public final boolean isReverseDefine() {
return reverseDefine;
}
public ArrowConfiguration withInclination(int inclination) {
return new ArrowConfiguration(body, dressing1, dressing2, decoration1, decoration2, color, isSelf, thickness,
reverseDefine, inclination);
}
public final int getInclination1() {
if (dressing2.getHead() == ArrowHead.NONE || dressing2.getHead() == ArrowHead.CROSSX)
return inclination;
return 0;
}
public final int getInclination2() {
if (dressing1.getHead() == ArrowHead.NONE || dressing1.getHead() == ArrowHead.CROSSX)
return inclination;
if (dressing1.getHead() == ArrowHead.NORMAL || dressing1.getHead() == ArrowHead.NORMAL)
return inclination;
return 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy