View Javadoc

1   /**
2    * Copyright 2010-2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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  }