Go to most recent revision | 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> yAxes;public ScalesModel(List<Axis> xAxes, List<Axis> yAxes) {super();this.xAxes = xAxes;this.yAxes = yAxes;}@Overridepublic String toString() {return "ScalesModel [xAxes=" + xAxes + ", yAxes=" + yAxes + "]";}public ScalesModel() {super();// TODO Auto-generated constructor stub}public List<Axis> getxAxes() {return xAxes;}public void setxAxes(List<Axis> xAxes) {this.xAxes = xAxes;}public List<Axis> getyAxes() {return yAxes;}public void setyAxes(List<Axis> yAxes) {this.yAxes = yAxes;}}