All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ikasan.designer.model.Group Maven / Gradle / Ivy

The newest version!
package org.ikasan.designer.model;

import java.util.List;

public class Group extends PositionedItem {
    private List ports;
    private String bgColor;
    private String color;
    private int stroke;
    private int radius;
    private String dasharray;

    public List getPorts() {
        return ports;
    }

    public void setPorts(List ports) {
        this.ports = ports;
    }

    public String getBgColor() {
        return bgColor;
    }

    public void setBgColor(String bgColor) {
        this.bgColor = bgColor;
    }

    public String getColor() {
        return color;
    }

    public void setColor(String color) {
        this.color = color;
    }

    public int getStroke() {
        return stroke;
    }

    public void setStroke(int stroke) {
        this.stroke = stroke;
    }

    public int getRadius() {
        return radius;
    }

    public void setRadius(int radius) {
        this.radius = radius;
    }

    public String getDasharray() {
        return dasharray;
    }

    public void setDasharray(String dasharray) {
        this.dasharray = dasharray;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy