/** SpagoBI, the Open Source Business Intelligence suite Copyright (C) 2012 Engineering Ingegneria Informatica S.p.A. - SpagoBI Competency Center This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. **/ package it.eng.spagobi.studio.extchart.model.bo; public class StyleTitle { public static final String COLOR = "color"; public static final String FONT_WEIGHT = "fontWeight"; public static final String FONT_SIZE = "fontSize"; private String color; //combo blue,yellow private String fontWeight; //combo //private Integer fontSize; private String fontSize; public String getColor() { return color; } public void setColor(String color) { this.color = color; } public String getFontWeight() { return fontWeight; } public void setFontWeight(String fontWeight) { this.fontWeight = fontWeight; } public String getFontSize() { return fontSize; } public void setFontSize(String fontSize) { this.fontSize = fontSize; } }