1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.maven.plugins.graph.pojo;
17
18 public class Style {
19 public static final Style DEFAULT_STYLE = new Style();
20
21 String color;
22 String fontcolor;
23 String fillcolor;
24 String weight;
25 String fontsize;
26 String style;
27
28 public Style() {
29 this(null, null, null, null, null, null);
30 }
31
32 public Style(String color, String fontcolor, String fillcolor, String weight, String fontsize, String style) {
33 super();
34 this.color = color;
35 this.fontcolor = fontcolor;
36 this.fillcolor = fillcolor;
37 this.weight = weight;
38 this.fontsize = fontsize;
39 this.style = style;
40 }
41
42 public String getColor() {
43 return color;
44 }
45
46 public void setColor(String color) {
47 this.color = color;
48 }
49
50 public String getFontcolor() {
51 return fontcolor;
52 }
53
54 public void setFontcolor(String fontcolor) {
55 this.fontcolor = fontcolor;
56 }
57
58 public String getFillcolor() {
59 return fillcolor;
60 }
61
62 public void setFillcolor(String fillcolor) {
63 this.fillcolor = fillcolor;
64 }
65
66 public String getWeight() {
67 return weight;
68 }
69
70 public void setWeight(String weight) {
71 this.weight = weight;
72 }
73
74 public String getFontsize() {
75 return fontsize;
76 }
77
78 public void setFontsize(String fontsize) {
79 this.fontsize = fontsize;
80 }
81
82 public String getStyle() {
83 return style;
84 }
85
86 public void setStyle(String style) {
87 this.style = style;
88 }
89 }