001    package org.kuali.maven.plugins.graph.pojo;
002    
003    public class Style {
004        public static final Style DEFAULT_STYLE = new Style();
005    
006        String color;
007        String fontcolor;
008        String fillcolor;
009        String weight;
010        String fontsize;
011        String style;
012    
013        public Style() {
014            this(null, null, null, null, null, null);
015        }
016    
017        public Style(String color, String fontcolor, String fillcolor, String weight, String fontsize, String style) {
018            super();
019            this.color = color;
020            this.fontcolor = fontcolor;
021            this.fillcolor = fillcolor;
022            this.weight = weight;
023            this.fontsize = fontsize;
024            this.style = style;
025        }
026    
027        public String getColor() {
028            return color;
029        }
030    
031        public void setColor(String color) {
032            this.color = color;
033        }
034    
035        public String getFontcolor() {
036            return fontcolor;
037        }
038    
039        public void setFontcolor(String fontcolor) {
040            this.fontcolor = fontcolor;
041        }
042    
043        public String getFillcolor() {
044            return fillcolor;
045        }
046    
047        public void setFillcolor(String fillcolor) {
048            this.fillcolor = fillcolor;
049        }
050    
051        public String getWeight() {
052            return weight;
053        }
054    
055        public void setWeight(String weight) {
056            this.weight = weight;
057        }
058    
059        public String getFontsize() {
060            return fontsize;
061        }
062    
063        public void setFontsize(String fontsize) {
064            this.fontsize = fontsize;
065        }
066    
067        public String getStyle() {
068            return style;
069        }
070    
071        public void setStyle(String style) {
072            this.style = style;
073        }
074    }