Subversion Repositories SmartDukaan

Rev

Rev 27884 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

import java.util.List;

public class ScalesModel {
        public List<Axis> xAxes;

        public List<Axis> getxAxes() {
                return xAxes;
        }

        public void setxAxes(List<Axis> xAxes) {
                this.xAxes = xAxes;
        }

        @Override
        public String toString() {
                return "ScalesModel [xAxes=" + xAxes + "]";
        }

        public ScalesModel(List<Axis> xAxes) {
                super();
                this.xAxes = xAxes;
        }

        public ScalesModel() {
                super();
                // TODO Auto-generated constructor stub
        }       
        
        
        

        
        
        
}