1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-07 02:40:52 +00:00
plantuml/src/net/sourceforge/plantuml/skin/ArrowConfiguration.java
2011-01-11 08:42:49 +01:00

117 lines
3.4 KiB
Java

/* ========================================================================
* 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: 5191 $
*
*/
package net.sourceforge.plantuml.skin;
public class ArrowConfiguration {
private final ArrowDirection direction;
private final ArrowBody body;
private final ArrowHead head;
private final ArrowPart part;
private ArrowConfiguration(ArrowDirection direction, ArrowBody body, ArrowHead head, ArrowPart part) {
if (direction == null || body == null || head == null || part == null) {
throw new IllegalArgumentException();
}
this.part = part;
this.direction = direction;
this.body = body;
this.head = head;
}
public String name() {
return direction.name().substring(0, 4) + "-" + body.name() + "-" + head.name() + "-"
+ part.name().substring(0, 3);
}
@Override
public int hashCode() {
return direction.hashCode() + body.hashCode() + head.hashCode() + part.hashCode();
}
@Override
public boolean equals(Object other) {
final ArrowConfiguration this2 = (ArrowConfiguration) other;
return direction == this2.direction && body == this2.body && head == this2.head && part == this2.part;
}
public static ArrowConfiguration withDirection(ArrowDirection direction) {
return new ArrowConfiguration(direction, ArrowBody.NORMAL, ArrowHead.NORMAL, ArrowPart.FULL);
}
public ArrowConfiguration withAsync() {
return new ArrowConfiguration(direction, body, ArrowHead.ASYNC, part);
}
public ArrowConfiguration withDotted() {
return new ArrowConfiguration(direction, ArrowBody.DOTTED, head, part);
}
public ArrowConfiguration withPart(ArrowPart part) {
// if (part != ArrowPart.BOTTOM_PART && part != ArrowPart.TOP_PART) {
// throw new IllegalArgumentException();
// }
return new ArrowConfiguration(direction, body, head, part);
}
public boolean isLeftToRightNormal() {
return this.direction == ArrowDirection.LEFT_TO_RIGHT_NORMAL;
}
public boolean isRightToLeftReverse() {
return this.direction == ArrowDirection.RIGHT_TO_LEFT_REVERSE;
}
public boolean isSelfArrow() {
return this.direction == ArrowDirection.SELF;
}
public boolean isDotted() {
return body == ArrowBody.DOTTED;
}
// public boolean isSync() {
// return this.head == ArrowHead.NORMAL;
// }
public boolean isASync() {
return this.head == ArrowHead.ASYNC;
}
public final ArrowPart getPart() {
return part;
}
}