/** 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 MarkerConfig { public static final String TYPE = "type"; public static final String SIZE = "size"; public static final String RADIUS = "radius"; private String type; //combo private Integer size; private Integer radius; public String getType() { return type; } public void setTyp(String type) { this.type = type; } public Integer getSize() { return size; } public void setSize(Integer size) { this.size = size; } public Integer getRadius() { return radius; } public void setRadius(Integer radius) { this.radius = radius; } }