Subversion Repositories SmartDukaan

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

public class PieLables {
        
        private String  fontColor;
        private int   fontSize;
        public String getFontColor() {
                return fontColor;
        }
        public void setFontColor(String fontColor) {
                this.fontColor = fontColor;
        }
        public int getFontSize() {
                return fontSize;
        }
        public void setFontSize(int fontSize) {
                this.fontSize = fontSize;
        }
        
        public PieLables() {
                super();
                // TODO Auto-generated constructor stub
        }
        @Override
        public String toString() {
                return "Pielables [fontColor=" + fontColor + ", fontSize=" + fontSize + "]";
        }
        
        

}