live.document.mavenplugin.networkgraph.EdgeStrokeStyle Maven / Gradle / Ivy
package live.document.mavenplugin.networkgraph;
class EdgeStrokeStyle {
private String color;
private String dash;
public EdgeStrokeStyle() {
}
public EdgeStrokeStyle(String color) {
this.color = color;
}
public EdgeStrokeStyle(String color, String dash) {
this.color = color;
this.dash = dash;
}
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
public String getDash() {
return dash;
}
public void setDash(String dash) {
this.dash = dash;
}
}