![JAR search and dependency download from the Maven repository](/logo.png)
org.ikasan.designer.builder.PortBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ikasan-designer Show documentation
Show all versions of ikasan-designer Show documentation
Integration of vis.js library for Ikasan platform
package org.ikasan.designer.builder;
import org.ikasan.designer.model.Port;
import java.util.UUID;
public class PortBuilder {
private static final String INPUT_PORT = "draw2d.InputPort";
private static final String OUTPUT_PORT = "draw2d.OutputPort";
private static final String HYBRID_PORT = "draw2d.HybridPort";
protected String type = "draw2d.HybridPort";
protected String id = UUID.randomUUID().toString();
protected int alpha = 1;
protected boolean selectable = true;
protected boolean draggable = true;
protected int angle = 0;
protected String cssClass = "draw2d_HybridPort";
protected String composite;
private int width = 5;
private int height = 5;
private String bgColor = "rgba(79,104,112,1)";
private String color = "rgba(27,27,27,1)";
private int stroke = 1;
private long maxFanOut = 9007199254740991L;
private String name;
private String semanticGroup = "global";
private String port = "draw2d.HybridPort";
private String locator = "draw2d.layout.locator.InputPortLocator";
protected PortBuilder() {
}
public PortBuilder withId(String id) {
this.id = id;
return this;
}
public PortBuilder withAlpha(int alpha) {
this.alpha = alpha;
return this;
}
public PortBuilder withSelectable(boolean selectable) {
this.selectable = selectable;
return this;
}
public PortBuilder withDraggable(boolean draggable) {
this.draggable = draggable;
return this;
}
public PortBuilder withAngle(int angle) {
this.angle = angle;
return this;
}
public PortBuilder withComposite(String composite) {
this.composite = composite;
return this;
}
public PortBuilder withWidth(int width) {
this.width = width;
return this;
}
public PortBuilder withHeight(int height) {
this.height = height;
return this;
}
public PortBuilder withBgColor(String bgColor) {
this.bgColor = bgColor;
return this;
}
public PortBuilder withColor(String color) {
this.color = color;
return this;
}
public PortBuilder withStroke(int stroke) {
this.stroke = stroke;
return this;
}
public PortBuilder withMaxFanOut(long maxFanOut) {
this.maxFanOut = maxFanOut;
return this;
}
public PortBuilder withName(String name) {
this.name = name;
return this;
}
public PortBuilder witLocator(String locator) {
this.locator = locator;
return this;
}
public PortBuilder asInputPort() {
this.type = INPUT_PORT;
return this;
}
public PortBuilder asOutputPort() {
this.type = OUTPUT_PORT;
return this;
}
public PortBuilder asHybridPort() {
this.type = HYBRID_PORT;
return this;
}
public Port build() {
Port port = new Port();
port.setId(this.id);
port.setType(this.type);
port.setAlpha(this.alpha);
port.setSelectable(this.selectable);
port.setDraggable(this.draggable);
port.setAlpha(this.alpha);
port.setCssClass(this.cssClass);
port.setComposite(this.composite);
port.setWidth(this.width);
port.setHeight(this.height);
port.setBgColor(this.bgColor);
port.setColor(this.color);
port.setStroke(this.stroke);
port.setMaxFanOut(this.maxFanOut);
port.setName(this.name);
port.setSemanticGroup(this.semanticGroup);
port.setPort(this.port);
port.setLocator(this.locator);
return port;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy